blob: 8b4684a405161f94ff4cf6ac815d24c37ef95655 [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
1073 return OK;
1074}
1075
1076/*
1077 * Get the position of the top left corner of the window.
1078 */
1079 int
1080gui_mch_get_winpos(int *x, int *y)
1081{
1082 RECT rect;
1083
1084 GetWindowRect(s_hwnd, &rect);
1085 *x = rect.left;
1086 *y = rect.top;
1087 return OK;
1088}
1089
1090/*
1091 * Set the position of the top left corner of the window to the given
1092 * coordinates.
1093 */
1094 void
1095gui_mch_set_winpos(int x, int y)
1096{
1097 SetWindowPos(s_hwnd, NULL, x, y, 0, 0,
1098 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
1099}
1100 void
1101gui_mch_set_text_area_pos(int x, int y, int w, int h)
1102{
1103 static int oldx = 0;
1104 static int oldy = 0;
1105
1106 SetWindowPos(s_textArea, NULL, x, y, w, h, SWP_NOZORDER | SWP_NOACTIVATE);
1107
1108#ifdef FEAT_TOOLBAR
1109 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1110 SendMessage(s_toolbarhwnd, WM_SIZE,
1111 (WPARAM)0, (LPARAM)(w + ((long)(TOOLBAR_BUTTON_HEIGHT+8)<<16)));
1112#endif
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001113#if defined(FEAT_GUI_TABLINE)
1114 if (showing_tabline)
1115 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001116 int top = 0;
1117 RECT rect;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001118
1119#ifdef FEAT_TOOLBAR
1120 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1121 top = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1122#endif
1123
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00001124 SetRect(&rect, 0, top, w, TABLINE_HEIGHT);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001125 TabCtrl_AdjustRect(s_tabhwnd, TRUE, &rect);
1126 MoveWindow(s_tabhwnd, 0, top, rect.right, rect.bottom, TRUE);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001127 }
1128#endif
1129
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 /* When side scroll bar is unshown, the size of window will change.
1131 * then, the text area move left or right. thus client rect should be
1132 * forcely redraw. (Yasuhiro Matsumoto) */
1133 if (oldx != x || oldy != y)
1134 {
1135 InvalidateRect(s_hwnd, NULL, FALSE);
1136 oldx = x;
1137 oldy = y;
1138 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139}
1140
1141
1142/*
1143 * Scrollbar stuff:
1144 */
1145
1146 void
1147gui_mch_enable_scrollbar(
1148 scrollbar_T *sb,
1149 int flag)
1150{
1151 ShowScrollBar(sb->id, SB_CTL, flag);
1152
1153 /* TODO: When the window is maximized, the size of the window stays the
1154 * same, thus the size of the text area changes. On Win98 it's OK, on Win
1155 * NT 4.0 it's not... */
1156}
1157
1158 void
1159gui_mch_set_scrollbar_pos(
1160 scrollbar_T *sb,
1161 int x,
1162 int y,
1163 int w,
1164 int h)
1165{
Bram Moolenaar02743632005-07-25 20:42:36 +00001166 SetWindowPos(sb->id, NULL, x, y, w, h,
1167 SWP_NOZORDER | SWP_NOACTIVATE | SWP_SHOWWINDOW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168}
1169
1170 void
1171gui_mch_create_scrollbar(
1172 scrollbar_T *sb,
1173 int orient) /* SBAR_VERT or SBAR_HORIZ */
1174{
1175 sb->id = CreateWindow(
1176 "SCROLLBAR", "Scrollbar",
1177 WS_CHILD | ((orient == SBAR_VERT) ? SBS_VERT : SBS_HORZ), 0, 0,
1178 10, /* Any value will do for now */
1179 10, /* Any value will do for now */
1180 s_hwnd, NULL,
1181 s_hinst, NULL);
1182}
1183
1184/*
1185 * Find the scrollbar with the given hwnd.
1186 */
1187 static scrollbar_T *
1188gui_mswin_find_scrollbar(HWND hwnd)
1189{
1190 win_T *wp;
1191
1192 if (gui.bottom_sbar.id == hwnd)
1193 return &gui.bottom_sbar;
1194 FOR_ALL_WINDOWS(wp)
1195 {
1196 if (wp->w_scrollbars[SBAR_LEFT].id == hwnd)
1197 return &wp->w_scrollbars[SBAR_LEFT];
1198 if (wp->w_scrollbars[SBAR_RIGHT].id == hwnd)
1199 return &wp->w_scrollbars[SBAR_RIGHT];
1200 }
1201 return NULL;
1202}
1203
1204/*
1205 * Get the character size of a font.
1206 */
1207 static void
1208GetFontSize(GuiFont font)
1209{
1210 HWND hwnd = GetDesktopWindow();
1211 HDC hdc = GetWindowDC(hwnd);
1212 HFONT hfntOld = SelectFont(hdc, (HFONT)font);
1213 TEXTMETRIC tm;
1214
1215 GetTextMetrics(hdc, &tm);
1216 gui.char_width = tm.tmAveCharWidth + tm.tmOverhang;
1217
1218 gui.char_height = tm.tmHeight
1219#ifndef MSWIN16_FASTTEXT
Bram Moolenaar02743632005-07-25 20:42:36 +00001220 + p_linespace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221#endif
Bram Moolenaar02743632005-07-25 20:42:36 +00001222 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223
1224 SelectFont(hdc, hfntOld);
1225
1226 ReleaseDC(hwnd, hdc);
1227}
1228
Bram Moolenaar02743632005-07-25 20:42:36 +00001229/*
1230 * Adjust gui.char_height (after 'linespace' was changed).
1231 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 int
Bram Moolenaar02743632005-07-25 20:42:36 +00001233gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234{
1235 GetFontSize(gui.norm_font);
1236 return OK;
1237}
1238
1239 static GuiFont
1240get_font_handle(LOGFONT *lf)
1241{
1242 HFONT font = NULL;
1243
1244 /* Load the font */
1245 font = CreateFontIndirect(lf);
1246
1247 if (font == NULL)
1248 return NOFONT;
1249
1250 return (GuiFont)font;
1251}
1252
1253 static int
1254pixels_to_points(int pixels, int vertical)
1255{
1256 int points;
1257 HWND hwnd;
1258 HDC hdc;
1259
1260 hwnd = GetDesktopWindow();
1261 hdc = GetWindowDC(hwnd);
1262
1263 points = MulDiv(pixels, 72,
1264 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX));
1265
1266 ReleaseDC(hwnd, hdc);
1267
1268 return points;
1269}
1270
1271 GuiFont
1272gui_mch_get_font(
1273 char_u *name,
1274 int giveErrorIfMissing)
1275{
1276 LOGFONT lf;
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001277 GuiFont font = NOFONT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001279 if (get_logfont(&lf, name, NULL, giveErrorIfMissing) == OK)
1280 font = get_font_handle(&lf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 if (font == NOFONT && giveErrorIfMissing)
1282 EMSG2(_(e_font), name);
1283 return font;
1284}
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001285
Bram Moolenaardfccaf02004-12-31 20:56:11 +00001286#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001287/*
1288 * Return the name of font "font" in allocated memory.
1289 * Don't know how to get the actual name, thus use the provided name.
1290 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001291/*ARGSUSED*/
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001292 char_u *
1293gui_mch_get_fontname(font, name)
1294 GuiFont font;
1295 char_u *name;
1296{
1297 if (name == NULL)
1298 return NULL;
1299 return vim_strsave(name);
1300}
Bram Moolenaardfccaf02004-12-31 20:56:11 +00001301#endif
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001302
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 void
1304gui_mch_free_font(GuiFont font)
1305{
1306 if (font)
1307 DeleteObject((HFONT)font);
1308}
1309
1310 static int
1311hex_digit(int c)
1312{
1313 if (VIM_ISDIGIT(c))
1314 return c - '0';
1315 c = TOLOWER_ASC(c);
1316 if (c >= 'a' && c <= 'f')
1317 return c - 'a' + 10;
1318 return -1000;
1319}
1320/*
1321 * Return the Pixel value (color) for the given color name.
1322 * Return INVALCOLOR for error.
1323 */
1324 guicolor_T
1325gui_mch_get_color(char_u *name)
1326{
1327 typedef struct guicolor_tTable
1328 {
1329 char *name;
1330 COLORREF color;
1331 } guicolor_tTable;
1332
1333 static guicolor_tTable table[] =
1334 {
1335 {"Black", RGB(0x00, 0x00, 0x00)},
1336 {"DarkGray", RGB(0x80, 0x80, 0x80)},
1337 {"DarkGrey", RGB(0x80, 0x80, 0x80)},
1338 {"Gray", RGB(0xC0, 0xC0, 0xC0)},
1339 {"Grey", RGB(0xC0, 0xC0, 0xC0)},
1340 {"LightGray", RGB(0xE0, 0xE0, 0xE0)},
1341 {"LightGrey", RGB(0xE0, 0xE0, 0xE0)},
1342 {"White", RGB(0xFF, 0xFF, 0xFF)},
1343 {"DarkRed", RGB(0x80, 0x00, 0x00)},
1344 {"Red", RGB(0xFF, 0x00, 0x00)},
1345 {"LightRed", RGB(0xFF, 0xA0, 0xA0)},
1346 {"DarkBlue", RGB(0x00, 0x00, 0x80)},
1347 {"Blue", RGB(0x00, 0x00, 0xFF)},
1348 {"LightBlue", RGB(0xA0, 0xA0, 0xFF)},
1349 {"DarkGreen", RGB(0x00, 0x80, 0x00)},
1350 {"Green", RGB(0x00, 0xFF, 0x00)},
1351 {"LightGreen", RGB(0xA0, 0xFF, 0xA0)},
1352 {"DarkCyan", RGB(0x00, 0x80, 0x80)},
1353 {"Cyan", RGB(0x00, 0xFF, 0xFF)},
1354 {"LightCyan", RGB(0xA0, 0xFF, 0xFF)},
1355 {"DarkMagenta", RGB(0x80, 0x00, 0x80)},
1356 {"Magenta", RGB(0xFF, 0x00, 0xFF)},
1357 {"LightMagenta", RGB(0xFF, 0xA0, 0xFF)},
1358 {"Brown", RGB(0x80, 0x40, 0x40)},
1359 {"Yellow", RGB(0xFF, 0xFF, 0x00)},
1360 {"LightYellow", RGB(0xFF, 0xFF, 0xA0)},
1361 {"DarkYellow", RGB(0xBB, 0xBB, 0x00)},
1362 {"SeaGreen", RGB(0x2E, 0x8B, 0x57)},
1363 {"Orange", RGB(0xFF, 0xA5, 0x00)},
1364 {"Purple", RGB(0xA0, 0x20, 0xF0)},
1365 {"SlateBlue", RGB(0x6A, 0x5A, 0xCD)},
1366 {"Violet", RGB(0xEE, 0x82, 0xEE)},
1367 };
1368
1369 typedef struct SysColorTable
1370 {
1371 char *name;
1372 int color;
1373 } SysColorTable;
1374
1375 static SysColorTable sys_table[] =
1376 {
1377#ifdef WIN3264
1378 {"SYS_3DDKSHADOW", COLOR_3DDKSHADOW},
1379 {"SYS_3DHILIGHT", COLOR_3DHILIGHT},
1380#ifndef __MINGW32__
1381 {"SYS_3DHIGHLIGHT", COLOR_3DHIGHLIGHT},
1382#endif
1383 {"SYS_BTNHILIGHT", COLOR_BTNHILIGHT},
1384 {"SYS_BTNHIGHLIGHT", COLOR_BTNHIGHLIGHT},
1385 {"SYS_3DLIGHT", COLOR_3DLIGHT},
1386 {"SYS_3DSHADOW", COLOR_3DSHADOW},
1387 {"SYS_DESKTOP", COLOR_DESKTOP},
1388 {"SYS_INFOBK", COLOR_INFOBK},
1389 {"SYS_INFOTEXT", COLOR_INFOTEXT},
1390 {"SYS_3DFACE", COLOR_3DFACE},
1391#endif
1392 {"SYS_BTNFACE", COLOR_BTNFACE},
1393 {"SYS_BTNSHADOW", COLOR_BTNSHADOW},
1394 {"SYS_ACTIVEBORDER", COLOR_ACTIVEBORDER},
1395 {"SYS_ACTIVECAPTION", COLOR_ACTIVECAPTION},
1396 {"SYS_APPWORKSPACE", COLOR_APPWORKSPACE},
1397 {"SYS_BACKGROUND", COLOR_BACKGROUND},
1398 {"SYS_BTNTEXT", COLOR_BTNTEXT},
1399 {"SYS_CAPTIONTEXT", COLOR_CAPTIONTEXT},
1400 {"SYS_GRAYTEXT", COLOR_GRAYTEXT},
1401 {"SYS_HIGHLIGHT", COLOR_HIGHLIGHT},
1402 {"SYS_HIGHLIGHTTEXT", COLOR_HIGHLIGHTTEXT},
1403 {"SYS_INACTIVEBORDER", COLOR_INACTIVEBORDER},
1404 {"SYS_INACTIVECAPTION", COLOR_INACTIVECAPTION},
1405 {"SYS_INACTIVECAPTIONTEXT", COLOR_INACTIVECAPTIONTEXT},
1406 {"SYS_MENU", COLOR_MENU},
1407 {"SYS_MENUTEXT", COLOR_MENUTEXT},
1408 {"SYS_SCROLLBAR", COLOR_SCROLLBAR},
1409 {"SYS_WINDOW", COLOR_WINDOW},
1410 {"SYS_WINDOWFRAME", COLOR_WINDOWFRAME},
1411 {"SYS_WINDOWTEXT", COLOR_WINDOWTEXT}
1412 };
1413
1414 int r, g, b;
1415 int i;
1416
1417 if (name[0] == '#' && strlen(name) == 7)
1418 {
1419 /* Name is in "#rrggbb" format */
1420 r = hex_digit(name[1]) * 16 + hex_digit(name[2]);
1421 g = hex_digit(name[3]) * 16 + hex_digit(name[4]);
1422 b = hex_digit(name[5]) * 16 + hex_digit(name[6]);
1423 if (r < 0 || g < 0 || b < 0)
1424 return INVALCOLOR;
1425 return RGB(r, g, b);
1426 }
1427 else
1428 {
1429 /* Check if the name is one of the colors we know */
1430 for (i = 0; i < sizeof(table) / sizeof(table[0]); i++)
1431 if (STRICMP(name, table[i].name) == 0)
1432 return table[i].color;
1433 }
1434
1435 /*
1436 * Try to look up a system colour.
1437 */
1438 for (i = 0; i < sizeof(sys_table) / sizeof(sys_table[0]); i++)
1439 if (STRICMP(name, sys_table[i].name) == 0)
1440 return GetSysColor(sys_table[i].color);
1441
1442 /*
1443 * Last attempt. Look in the file "$VIMRUNTIME/rgb.txt".
1444 */
1445 {
1446#define LINE_LEN 100
1447 FILE *fd;
1448 char line[LINE_LEN];
1449 char_u *fname;
1450
1451 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt");
1452 if (fname == NULL)
1453 return INVALCOLOR;
1454
1455 fd = fopen((char *)fname, "rt");
1456 vim_free(fname);
1457 if (fd == NULL)
1458 return INVALCOLOR;
1459
1460 while (!feof(fd))
1461 {
1462 int len;
1463 int pos;
1464 char *color;
1465
1466 fgets(line, LINE_LEN, fd);
1467 len = (int)STRLEN(line);
1468
1469 if (len <= 1 || line[len-1] != '\n')
1470 continue;
1471
1472 line[len-1] = '\0';
1473
1474 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
1475 if (i != 3)
1476 continue;
1477
1478 color = line + pos;
1479
1480 if (STRICMP(color, name) == 0)
1481 {
1482 fclose(fd);
1483 return (guicolor_T) RGB(r, g, b);
1484 }
1485 }
1486
1487 fclose(fd);
1488 }
1489
1490 return INVALCOLOR;
1491}
1492/*
1493 * Return OK if the key with the termcap name "name" is supported.
1494 */
1495 int
1496gui_mch_haskey(char_u *name)
1497{
1498 int i;
1499
1500 for (i = 0; special_keys[i].vim_code1 != NUL; i++)
1501 if (name[0] == special_keys[i].vim_code0 &&
1502 name[1] == special_keys[i].vim_code1)
1503 return OK;
1504 return FAIL;
1505}
1506
1507 void
1508gui_mch_beep(void)
1509{
1510 MessageBeep(MB_OK);
1511}
1512/*
1513 * Invert a rectangle from row r, column c, for nr rows and nc columns.
1514 */
1515 void
1516gui_mch_invert_rectangle(
1517 int r,
1518 int c,
1519 int nr,
1520 int nc)
1521{
1522 RECT rc;
1523
1524 /*
1525 * Note: InvertRect() excludes right and bottom of rectangle.
1526 */
1527 rc.left = FILL_X(c);
1528 rc.top = FILL_Y(r);
1529 rc.right = rc.left + nc * gui.char_width;
1530 rc.bottom = rc.top + nr * gui.char_height;
1531 InvertRect(s_hdc, &rc);
1532}
1533
1534/*
1535 * Iconify the GUI window.
1536 */
1537 void
1538gui_mch_iconify(void)
1539{
1540 ShowWindow(s_hwnd, SW_MINIMIZE);
1541}
1542
1543/*
1544 * Draw a cursor without focus.
1545 */
1546 void
1547gui_mch_draw_hollow_cursor(guicolor_T color)
1548{
1549 HBRUSH hbr;
1550 RECT rc;
1551
1552 /*
1553 * Note: FrameRect() excludes right and bottom of rectangle.
1554 */
1555 rc.left = FILL_X(gui.col);
1556 rc.top = FILL_Y(gui.row);
1557 rc.right = rc.left + gui.char_width;
1558#ifdef FEAT_MBYTE
1559 if (mb_lefthalve(gui.row, gui.col))
1560 rc.right += gui.char_width;
1561#endif
1562 rc.bottom = rc.top + gui.char_height;
1563 hbr = CreateSolidBrush(color);
1564 FrameRect(s_hdc, &rc, hbr);
1565 DeleteBrush(hbr);
1566}
1567/*
1568 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
1569 * color "color".
1570 */
1571 void
1572gui_mch_draw_part_cursor(
1573 int w,
1574 int h,
1575 guicolor_T color)
1576{
1577 HBRUSH hbr;
1578 RECT rc;
1579
1580 /*
1581 * Note: FillRect() excludes right and bottom of rectangle.
1582 */
1583 rc.left =
1584#ifdef FEAT_RIGHTLEFT
1585 /* vertical line should be on the right of current point */
1586 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
1587#endif
1588 FILL_X(gui.col);
1589 rc.top = FILL_Y(gui.row) + gui.char_height - h;
1590 rc.right = rc.left + w;
1591 rc.bottom = rc.top + h;
1592 hbr = CreateSolidBrush(color);
1593 FillRect(s_hdc, &rc, hbr);
1594 DeleteBrush(hbr);
1595}
1596
1597/*
1598 * Process a single Windows message.
1599 * If one is not available we hang until one is.
1600 */
1601 static void
1602process_message(void)
1603{
1604 MSG msg;
1605 UINT vk = 0; /* Virtual key */
1606 char_u string[40];
1607 int i;
1608 int modifiers = 0;
1609 int key;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001610#ifdef FEAT_MENU
1611 static char_u k10[] = {K_SPECIAL, 'k', ';', 0};
1612#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613
1614 GetMessage(&msg, NULL, 0, 0);
1615
1616#ifdef FEAT_OLE
1617 /* Look after OLE Automation commands */
1618 if (msg.message == WM_OLE)
1619 {
1620 char_u *str = (char_u *)msg.lParam;
1621 add_to_input_buf(str, (int)STRLEN(str));
1622 vim_free(str);
1623 return;
1624 }
1625#endif
1626
1627#ifdef FEAT_NETBEANS_INTG
1628 if (msg.message == WM_NETBEANS)
1629 {
1630 messageFromNetbeansW32();
1631 return;
1632 }
1633#endif
1634
1635#ifdef FEAT_SNIFF
1636 if (sniff_request_waiting && want_sniff_request)
1637 {
1638 static char_u bytes[3] = {CSI, (char_u)KS_EXTRA, (char_u)KE_SNIFF};
1639 add_to_input_buf(bytes, 3); /* K_SNIFF */
1640 sniff_request_waiting = 0;
1641 want_sniff_request = 0;
1642 /* request is handled in normal.c */
1643 }
1644 if (msg.message == WM_USER)
1645 return;
1646#endif
1647
1648#ifdef MSWIN_FIND_REPLACE
1649 /* Don't process messages used by the dialog */
1650 if (s_findrep_hwnd != NULL && IsDialogMessage(s_findrep_hwnd, &msg))
1651 {
1652 HandleMouseHide(msg.message, msg.lParam);
1653 return;
1654 }
1655#endif
1656
1657 /*
1658 * Check if it's a special key that we recognise. If not, call
1659 * TranslateMessage().
1660 */
1661 if (msg.message == WM_KEYDOWN || msg.message == WM_SYSKEYDOWN)
1662 {
1663 vk = (int) msg.wParam;
1664 /* handle key after dead key, but ignore shift, alt and control */
1665 if (dead_key && vk != VK_SHIFT && vk != VK_MENU && vk != VK_CONTROL)
1666 {
1667 dead_key = 0;
1668 /* handle non-alphabetic keys (ones that hopefully cannot generate
1669 * umlaut-characters), unless when control is down */
1670 if (vk < 'A' || vk > 'Z' || (GetKeyState(VK_CONTROL) & 0x8000))
1671 {
1672 MSG dm;
1673
1674 dm.message = msg.message;
1675 dm.hwnd = msg.hwnd;
1676 dm.wParam = VK_SPACE;
1677 MyTranslateMessage(&dm); /* generate dead character */
1678 if (vk != VK_SPACE) /* and send current character once more */
1679 PostMessage(msg.hwnd, msg.message, msg.wParam, msg.lParam);
1680 return;
1681 }
1682 }
1683
1684 /* Check for CTRL-BREAK */
1685 if (vk == VK_CANCEL)
1686 {
1687 trash_input_buf();
1688 got_int = TRUE;
1689 string[0] = Ctrl_C;
1690 add_to_input_buf(string, 1);
1691 }
1692
1693 for (i = 0; special_keys[i].key_sym != 0; i++)
1694 {
1695 /* ignore VK_SPACE when ALT key pressed: system menu */
1696 if (special_keys[i].key_sym == vk
1697 && (vk != VK_SPACE || !(GetKeyState(VK_MENU) & 0x8000)))
1698 {
1699#ifdef FEAT_MENU
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001700 /* Check for <F10>: Windows selects the menu. When <F10> is
1701 * mapped we want to use the mapping instead. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 if (vk == VK_F10
1703 && gui.menu_is_active
Bram Moolenaar8d6ea5e2006-03-18 21:31:46 +00001704 && check_map(k10, State, FALSE, TRUE, FALSE) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705 break;
1706#endif
1707 if (GetKeyState(VK_SHIFT) & 0x8000)
1708 modifiers |= MOD_MASK_SHIFT;
1709 /*
1710 * Don't use caps-lock as shift, because these are special keys
1711 * being considered here, and we only want letters to get
1712 * shifted -- webb
1713 */
1714 /*
1715 if (GetKeyState(VK_CAPITAL) & 0x0001)
1716 modifiers ^= MOD_MASK_SHIFT;
1717 */
1718 if (GetKeyState(VK_CONTROL) & 0x8000)
1719 modifiers |= MOD_MASK_CTRL;
1720 if (GetKeyState(VK_MENU) & 0x8000)
1721 modifiers |= MOD_MASK_ALT;
1722
1723 if (special_keys[i].vim_code1 == NUL)
1724 key = special_keys[i].vim_code0;
1725 else
1726 key = TO_SPECIAL(special_keys[i].vim_code0,
1727 special_keys[i].vim_code1);
1728 key = simplify_key(key, &modifiers);
1729 if (key == CSI)
1730 key = K_CSI;
1731
1732 if (modifiers)
1733 {
1734 string[0] = CSI;
1735 string[1] = KS_MODIFIER;
1736 string[2] = modifiers;
1737 add_to_input_buf(string, 3);
1738 }
1739
1740 if (IS_SPECIAL(key))
1741 {
1742 string[0] = CSI;
1743 string[1] = K_SECOND(key);
1744 string[2] = K_THIRD(key);
1745 add_to_input_buf(string, 3);
1746 }
1747 else
1748 {
1749 int len;
1750
1751 /* Handle "key" as a Unicode character. */
1752 len = char_to_string(key, string, 40);
1753 add_to_input_buf(string, len);
1754 }
1755 break;
1756 }
1757 }
1758 if (special_keys[i].key_sym == 0)
1759 {
1760 /* Some keys need C-S- where they should only need C-.
1761 * Ignore 0xff, Windows XP sends it when NUMLOCK has changed since
1762 * system startup (Helmut Stiegler, 2003 Oct 3). */
1763 if (vk != 0xff
1764 && (GetKeyState(VK_CONTROL) & 0x8000)
1765 && !(GetKeyState(VK_SHIFT) & 0x8000)
1766 && !(GetKeyState(VK_MENU) & 0x8000))
1767 {
1768 /* CTRL-6 is '^'; Japanese keyboard maps '^' to vk == 0xDE */
1769 if (vk == '6' || MapVirtualKey(vk, 2) == (UINT)'^')
1770 {
1771 string[0] = Ctrl_HAT;
1772 add_to_input_buf(string, 1);
1773 }
1774 /* vk == 0xBD AZERTY for CTRL-'-', but CTRL-[ for * QWERTY! */
1775 else if (vk == 0xBD) /* QWERTY for CTRL-'-' */
1776 {
1777 string[0] = Ctrl__;
1778 add_to_input_buf(string, 1);
1779 }
1780 /* CTRL-2 is '@'; Japanese keyboard maps '@' to vk == 0xC0 */
1781 else if (vk == '2' || MapVirtualKey(vk, 2) == (UINT)'@')
1782 {
1783 string[0] = Ctrl_AT;
1784 add_to_input_buf(string, 1);
1785 }
1786 else
1787 MyTranslateMessage(&msg);
1788 }
1789 else
1790 MyTranslateMessage(&msg);
1791 }
1792 }
1793#ifdef FEAT_MBYTE_IME
1794 else if (msg.message == WM_IME_NOTIFY)
1795 _OnImeNotify(msg.hwnd, (DWORD)msg.wParam, (DWORD)msg.lParam);
1796 else if (msg.message == WM_KEYUP && im_get_status())
1797 /* added for non-MS IME (Yasuhiro Matsumoto) */
1798 MyTranslateMessage(&msg);
1799#endif
1800#if !defined(FEAT_MBYTE_IME) && defined(GLOBAL_IME)
1801/* GIME_TEST */
1802 else if (msg.message == WM_IME_STARTCOMPOSITION)
1803 {
1804 POINT point;
1805
1806 global_ime_set_font(&norm_logfont);
1807 point.x = FILL_X(gui.col);
1808 point.y = FILL_Y(gui.row);
1809 MapWindowPoints(s_textArea, s_hwnd, &point, 1);
1810 global_ime_set_position(&point);
1811 }
1812#endif
1813
1814#ifdef FEAT_MENU
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001815 /* Check for <F10>: Default effect is to select the menu. When <F10> is
1816 * mapped we need to stop it here to avoid strange effects (e.g., for the
1817 * key-up event) */
Bram Moolenaar8d6ea5e2006-03-18 21:31:46 +00001818 if (vk != VK_F10 || check_map(k10, State, FALSE, TRUE, FALSE) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819#endif
1820 DispatchMessage(&msg);
1821}
1822
1823/*
1824 * Catch up with any queued events. This may put keyboard input into the
1825 * input buffer, call resize call-backs, trigger timers etc. If there is
1826 * nothing in the event queue (& no timers pending), then we return
1827 * immediately.
1828 */
1829 void
1830gui_mch_update(void)
1831{
1832 MSG msg;
1833
1834 if (!s_busy_processing)
1835 while (PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE)
1836 && !vim_is_input_buf_full())
1837 process_message();
1838}
1839
1840/*
1841 * GUI input routine called by gui_wait_for_chars(). Waits for a character
1842 * from the keyboard.
1843 * wtime == -1 Wait forever.
1844 * wtime == 0 This should never happen.
1845 * wtime > 0 Wait wtime milliseconds for a character.
1846 * Returns OK if a character was found to be available within the given time,
1847 * or FAIL otherwise.
1848 */
1849 int
1850gui_mch_wait_for_chars(int wtime)
1851{
1852 MSG msg;
1853 int focus;
1854
1855 s_timed_out = FALSE;
1856
1857 if (wtime > 0)
1858 {
1859 /* Don't do anything while processing a (scroll) message. */
1860 if (s_busy_processing)
1861 return FAIL;
1862 s_wait_timer = (UINT)SetTimer(NULL, 0, (UINT)wtime,
1863 (TIMERPROC)_OnTimer);
1864 }
1865
1866 allow_scrollbar = TRUE;
1867
1868 focus = gui.in_focus;
1869 while (!s_timed_out)
1870 {
1871 /* Stop or start blinking when focus changes */
1872 if (gui.in_focus != focus)
1873 {
1874 if (gui.in_focus)
1875 gui_mch_start_blink();
1876 else
1877 gui_mch_stop_blink();
1878 focus = gui.in_focus;
1879 }
1880
1881 if (s_need_activate)
1882 {
1883#ifdef WIN32
1884 (void)SetForegroundWindow(s_hwnd);
1885#else
1886 (void)SetActiveWindow(s_hwnd);
1887#endif
1888 s_need_activate = FALSE;
1889 }
1890
1891 /*
1892 * Don't use gui_mch_update() because then we will spin-lock until a
1893 * char arrives, instead we use GetMessage() to hang until an
1894 * event arrives. No need to check for input_buf_full because we are
1895 * returning as soon as it contains a single char -- webb
1896 */
1897 process_message();
1898
1899 if (input_available())
1900 {
1901 if (s_wait_timer != 0 && !s_timed_out)
1902 {
1903 KillTimer(NULL, s_wait_timer);
1904
1905 /* Eat spurious WM_TIMER messages */
1906 while (PeekMessage(&msg, s_hwnd, WM_TIMER, WM_TIMER, PM_REMOVE))
1907 ;
1908 s_wait_timer = 0;
1909 }
1910 allow_scrollbar = FALSE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001911
1912 /* Clear pending mouse button, the release event may have been
1913 * taken by the dialog window. */
1914 s_button_pending = -1;
1915
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 return OK;
1917 }
1918 }
1919 allow_scrollbar = FALSE;
1920 return FAIL;
1921}
1922
1923/*
1924 * Clear a rectangular region of the screen from text pos (row1, col1) to
1925 * (row2, col2) inclusive.
1926 */
1927 void
1928gui_mch_clear_block(
1929 int row1,
1930 int col1,
1931 int row2,
1932 int col2)
1933{
1934 RECT rc;
1935
1936 /*
1937 * Clear one extra pixel at the far right, for when bold characters have
1938 * spilled over to the window border.
1939 * Note: FillRect() excludes right and bottom of rectangle.
1940 */
1941 rc.left = FILL_X(col1);
1942 rc.top = FILL_Y(row1);
1943 rc.right = FILL_X(col2 + 1) + (col2 == Columns - 1);
1944 rc.bottom = FILL_Y(row2 + 1);
1945 clear_rect(&rc);
1946}
1947
1948/*
1949 * Clear the whole text window.
1950 */
1951 void
1952gui_mch_clear_all(void)
1953{
1954 RECT rc;
1955
1956 rc.left = 0;
1957 rc.top = 0;
1958 rc.right = Columns * gui.char_width + 2 * gui.border_width;
1959 rc.bottom = Rows * gui.char_height + 2 * gui.border_width;
1960 clear_rect(&rc);
1961}
1962/*
1963 * Menu stuff.
1964 */
1965
1966 void
1967gui_mch_enable_menu(int flag)
1968{
1969#ifdef FEAT_MENU
1970 SetMenu(s_hwnd, flag ? s_menuBar : NULL);
1971#endif
1972}
1973
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001974/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 void
1976gui_mch_set_menu_pos(
1977 int x,
1978 int y,
1979 int w,
1980 int h)
1981{
1982 /* It will be in the right place anyway */
1983}
1984
1985#if defined(FEAT_MENU) || defined(PROTO)
1986/*
1987 * Make menu item hidden or not hidden
1988 */
1989 void
1990gui_mch_menu_hidden(
1991 vimmenu_T *menu,
1992 int hidden)
1993{
1994 /*
1995 * This doesn't do what we want. Hmm, just grey the menu items for now.
1996 */
1997 /*
1998 if (hidden)
1999 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_DISABLED);
2000 else
2001 EnableMenuItem(s_menuBar, menu->id, MF_BYCOMMAND | MF_ENABLED);
2002 */
2003 gui_mch_menu_grey(menu, hidden);
2004}
2005
2006/*
2007 * This is called after setting all the menus to grey/hidden or not.
2008 */
2009 void
2010gui_mch_draw_menubar(void)
2011{
2012 DrawMenuBar(s_hwnd);
2013}
2014#endif /*FEAT_MENU*/
2015
2016#ifndef PROTO
2017void
2018#ifdef VIMDLL
2019_export
2020#endif
2021_cdecl
2022SaveInst(HINSTANCE hInst)
2023{
2024 s_hinst = hInst;
2025}
2026#endif
2027
2028/*
2029 * Return the RGB value of a pixel as a long.
2030 */
2031 long_u
2032gui_mch_get_rgb(guicolor_T pixel)
2033{
2034 return (GetRValue(pixel) << 16) + (GetGValue(pixel) << 8)
2035 + GetBValue(pixel);
2036}
2037
2038#if defined(FEAT_GUI_DIALOG) || defined(PROTO)
2039/* Convert pixels in X to dialog units */
2040 static WORD
2041PixelToDialogX(int numPixels)
2042{
2043 return (WORD)((numPixels * 4) / s_dlgfntwidth);
2044}
2045
2046/* Convert pixels in Y to dialog units */
2047 static WORD
2048PixelToDialogY(int numPixels)
2049{
2050 return (WORD)((numPixels * 8) / s_dlgfntheight);
2051}
2052
2053/* Return the width in pixels of the given text in the given DC. */
2054 static int
2055GetTextWidth(HDC hdc, char_u *str, int len)
2056{
2057 SIZE size;
2058
2059 GetTextExtentPoint(hdc, str, len, &size);
2060 return size.cx;
2061}
2062
2063#ifdef FEAT_MBYTE
2064/*
2065 * Return the width in pixels of the given text in the given DC, taking care
2066 * of 'encoding' to active codepage conversion.
2067 */
2068 static int
2069GetTextWidthEnc(HDC hdc, char_u *str, int len)
2070{
2071 SIZE size;
2072 WCHAR *wstr;
2073 int n;
2074 int wlen = len;
2075
2076 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2077 {
2078 /* 'encoding' differs from active codepage: convert text and use wide
2079 * function */
2080 wstr = enc_to_ucs2(str, &wlen);
2081 if (wstr != NULL)
2082 {
2083 n = GetTextExtentPointW(hdc, wstr, wlen, &size);
2084 vim_free(wstr);
2085 if (n)
2086 return size.cx;
2087 }
2088 }
2089
2090 return GetTextWidth(hdc, str, len);
2091}
2092#else
2093# define GetTextWidthEnc(h, s, l) GetTextWidth((h), (s), (l))
2094#endif
2095
2096/*
2097 * A quick little routine that will center one window over another, handy for
2098 * dialog boxes. Taken from the Win32SDK samples.
2099 */
2100 static BOOL
2101CenterWindow(
2102 HWND hwndChild,
2103 HWND hwndParent)
2104{
2105 RECT rChild, rParent;
2106 int wChild, hChild, wParent, hParent;
2107 int wScreen, hScreen, xNew, yNew;
2108 HDC hdc;
2109
2110 GetWindowRect(hwndChild, &rChild);
2111 wChild = rChild.right - rChild.left;
2112 hChild = rChild.bottom - rChild.top;
2113
2114 /* If Vim is minimized put the window in the middle of the screen. */
2115 if (IsMinimized(hwndParent))
2116 {
2117#ifdef WIN16
2118 rParent.left = 0;
2119 rParent.top = 0;
2120 rParent.right = GetSystemMetrics(SM_CXSCREEN);
2121 rParent.bottom = GetSystemMetrics(SM_CYFULLSCREEN);
2122#else
2123 SystemParametersInfo(SPI_GETWORKAREA, 0, &rParent, 0);
2124#endif
2125 }
2126 else
2127 GetWindowRect(hwndParent, &rParent);
2128 wParent = rParent.right - rParent.left;
2129 hParent = rParent.bottom - rParent.top;
2130
2131 hdc = GetDC(hwndChild);
2132 wScreen = GetDeviceCaps (hdc, HORZRES);
2133 hScreen = GetDeviceCaps (hdc, VERTRES);
2134 ReleaseDC(hwndChild, hdc);
2135
2136 xNew = rParent.left + ((wParent - wChild) /2);
2137 if (xNew < 0)
2138 {
2139 xNew = 0;
2140 }
2141 else if ((xNew+wChild) > wScreen)
2142 {
2143 xNew = wScreen - wChild;
2144 }
2145
2146 yNew = rParent.top + ((hParent - hChild) /2);
2147 if (yNew < 0)
2148 yNew = 0;
2149 else if ((yNew+hChild) > hScreen)
2150 yNew = hScreen - hChild;
2151
2152 return SetWindowPos(hwndChild, NULL, xNew, yNew, 0, 0,
2153 SWP_NOSIZE | SWP_NOZORDER);
2154}
2155#endif /* FEAT_GUI_DIALOG */
2156
2157void
2158gui_mch_activate_window(void)
2159{
2160 (void)SetActiveWindow(s_hwnd);
2161}
2162
2163#if defined(FEAT_TOOLBAR) || defined(PROTO)
2164 void
2165gui_mch_show_toolbar(int showit)
2166{
2167 if (s_toolbarhwnd == NULL)
2168 return;
2169
2170 if (showit)
2171 ShowWindow(s_toolbarhwnd, SW_SHOW);
2172 else
2173 ShowWindow(s_toolbarhwnd, SW_HIDE);
2174}
2175
2176/* Then number of bitmaps is fixed. Exit is missing! */
2177#define TOOLBAR_BITMAP_COUNT 31
2178
2179#endif
2180
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002181#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00002182 static void
2183show_tabline_popup_menu(void)
2184{
2185 HMENU tab_pmenu;
2186 MENUITEMINFO minfo;
2187 long rval;
2188 POINT pt;
2189 char_u string[3];
2190
2191 tab_pmenu = CreatePopupMenu();
2192 if (tab_pmenu == NULL)
2193 return;
2194
2195 minfo.cbSize = sizeof(MENUITEMINFO);
2196 minfo.fMask = MIIM_TYPE|MIIM_ID;
2197 minfo.fType = MFT_STRING;
2198
2199 minfo.dwTypeData = _("Close tab");
2200 minfo.wID = TABLINE_MENU_CLOSE;
2201 InsertMenuItem(tab_pmenu, TABLINE_MENU_CLOSE, FALSE, &minfo);
2202
2203 minfo.dwTypeData = _("New tab");
2204 minfo.wID = TABLINE_MENU_NEW;
2205 InsertMenuItem(tab_pmenu, TABLINE_MENU_NEW, FALSE, &minfo);
2206
2207 minfo.dwTypeData = _("Open tab...");
2208 minfo.wID = TABLINE_MENU_OPEN;
2209 InsertMenuItem(tab_pmenu, TABLINE_MENU_OPEN, FALSE, &minfo);
2210
2211 GetCursorPos(&pt);
2212 rval = TrackPopupMenuEx(tab_pmenu, TPM_RETURNCMD, pt.x, pt.y, s_tabhwnd,
2213 NULL);
2214
2215 DestroyMenu(tab_pmenu);
2216
2217 /* Add the string cmd into input buffer */
2218 if (rval > 0)
2219 {
2220 TCHITTESTINFO htinfo;
2221 int idx;
2222
2223 if (ScreenToClient(s_tabhwnd, &pt) == 0)
2224 return;
2225
2226 htinfo.pt.x = pt.x;
2227 htinfo.pt.y = pt.y;
2228 idx = TabCtrl_HitTest(s_tabhwnd, &htinfo);
2229 if (idx == -1)
2230 idx = 0;
2231 else
2232 idx += 1;
2233
2234 string[0] = CSI;
2235 string[1] = KS_TABMENU;
2236 string[2] = KE_FILLER;
2237 add_to_input_buf(string, 3);
2238 string[0] = idx;
2239 string[1] = (char_u)(long)rval;
2240 add_to_input_buf_csi(string, 2);
2241 }
2242}
2243
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002244/*
2245 * Show or hide the tabline.
2246 */
2247 void
2248gui_mch_show_tabline(int showit)
2249{
2250 if (s_tabhwnd == NULL)
2251 return;
2252
2253 if (!showit != !showing_tabline)
2254 {
2255 if (showit)
2256 ShowWindow(s_tabhwnd, SW_SHOW);
2257 else
2258 ShowWindow(s_tabhwnd, SW_HIDE);
2259 showing_tabline = showit;
2260 }
2261}
2262
2263/*
2264 * Return TRUE when tabline is displayed.
2265 */
2266 int
2267gui_mch_showing_tabline(void)
2268{
2269 return s_tabhwnd != NULL && showing_tabline;
2270}
2271
2272/*
2273 * Update the labels of the tabline.
2274 */
2275 void
2276gui_mch_update_tabline(void)
2277{
2278 tabpage_T *tp;
2279 TCITEM tie;
2280 int nr = 0;
2281 int curtabidx = 0;
2282 RECT rc;
2283
2284 if (s_tabhwnd == NULL)
2285 return;
2286
2287 tie.mask = TCIF_TEXT;
2288 tie.iImage = -1;
2289
2290 /* Add a label for each tab page. They all contain the same text area. */
2291 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
2292 {
2293 if (tp == curtab)
2294 curtabidx = nr;
2295
2296 if (!TabCtrl_GetItemRect(s_tabhwnd, nr, &rc))
2297 {
2298 /* Add the tab */
2299 tie.pszText = "-Empty-";
2300 TabCtrl_InsertItem(s_tabhwnd, nr, &tie);
2301 }
2302
2303 get_tabline_label(tp);
2304 tie.pszText = NameBuff;
2305 TabCtrl_SetItem(s_tabhwnd, nr, &tie);
2306 }
2307
2308 /* Remove any old labels. */
2309 while (TabCtrl_GetItemRect(s_tabhwnd, nr, &rc))
2310 TabCtrl_DeleteItem(s_tabhwnd, nr);
2311
2312 if (TabCtrl_GetCurSel(s_tabhwnd) != curtabidx)
2313 TabCtrl_SetCurSel(s_tabhwnd, curtabidx);
2314}
2315
2316/*
2317 * Set the current tab to "nr". First tab is 1.
2318 */
2319 void
2320gui_mch_set_curtab(nr)
2321 int nr;
2322{
2323 if (s_tabhwnd == NULL)
2324 return;
2325
2326 if (TabCtrl_GetCurSel(s_tabhwnd) != nr)
2327 TabCtrl_SetCurSel(s_tabhwnd, nr);
2328}
2329
2330#endif
2331
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332/*
2333 * ":simalt" command.
2334 */
2335 void
2336ex_simalt(exarg_T *eap)
2337{
2338 char_u *keys = eap->arg;
2339
2340 PostMessage(s_hwnd, WM_SYSCOMMAND, (WPARAM)SC_KEYMENU, (LPARAM)0);
2341 while (*keys)
2342 {
2343 if (*keys == '~')
2344 *keys = ' '; /* for showing system menu */
2345 PostMessage(s_hwnd, WM_CHAR, (WPARAM)*keys, (LPARAM)0);
2346 keys++;
2347 }
2348}
2349
2350/*
2351 * Create the find & replace dialogs.
2352 * You can't have both at once: ":find" when replace is showing, destroys
2353 * the replace dialog first, and the other way around.
2354 */
2355#ifdef MSWIN_FIND_REPLACE
2356 static void
2357initialise_findrep(char_u *initial_string)
2358{
2359 int wword = FALSE;
2360 int mcase = !p_ic;
2361 char_u *entry_text;
2362
2363 /* Get the search string to use. */
2364 entry_text = get_find_dialog_text(initial_string, &wword, &mcase);
2365
2366 s_findrep_struct.hwndOwner = s_hwnd;
2367 s_findrep_struct.Flags = FR_DOWN;
2368 if (mcase)
2369 s_findrep_struct.Flags |= FR_MATCHCASE;
2370 if (wword)
2371 s_findrep_struct.Flags |= FR_WHOLEWORD;
2372 if (entry_text != NULL && *entry_text != NUL)
2373 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002374 vim_strncpy(s_findrep_struct.lpstrFindWhat, entry_text,
2375 s_findrep_struct.wFindWhatLen - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 s_findrep_struct.lpstrReplaceWith[0] = NUL;
2377 }
2378 vim_free(entry_text);
2379}
2380#endif
2381
2382 void
2383gui_mch_find_dialog(exarg_T *eap)
2384{
2385#ifdef MSWIN_FIND_REPLACE
2386 if (s_findrep_msg != 0)
2387 {
2388 if (IsWindow(s_findrep_hwnd) && !s_findrep_is_find)
2389 DestroyWindow(s_findrep_hwnd);
2390
2391 if (!IsWindow(s_findrep_hwnd))
2392 {
2393 initialise_findrep(eap->arg);
2394 s_findrep_hwnd = FindText((LPFINDREPLACE) &s_findrep_struct);
2395 }
2396
2397 (void)SetWindowText(s_findrep_hwnd,
2398 (LPCSTR)_("Find string (use '\\\\' to find a '\\')"));
2399 (void)SetFocus(s_findrep_hwnd);
2400
2401 s_findrep_is_find = TRUE;
2402 }
2403#endif
2404}
2405
2406
2407 void
2408gui_mch_replace_dialog(exarg_T *eap)
2409{
2410#ifdef MSWIN_FIND_REPLACE
2411 if (s_findrep_msg != 0)
2412 {
2413 if (IsWindow(s_findrep_hwnd) && s_findrep_is_find)
2414 DestroyWindow(s_findrep_hwnd);
2415
2416 if (!IsWindow(s_findrep_hwnd))
2417 {
2418 initialise_findrep(eap->arg);
2419 s_findrep_hwnd = ReplaceText((LPFINDREPLACE) &s_findrep_struct);
2420 }
2421
2422 (void)SetWindowText(s_findrep_hwnd,
2423 (LPCSTR)_("Find & Replace (use '\\\\' to find a '\\')"));
2424 (void)SetFocus(s_findrep_hwnd);
2425
2426 s_findrep_is_find = FALSE;
2427 }
2428#endif
2429}
2430
2431
2432/*
2433 * Set visibility of the pointer.
2434 */
2435 void
2436gui_mch_mousehide(int hide)
2437{
2438 if (hide != gui.pointer_hidden)
2439 {
2440 ShowCursor(!hide);
2441 gui.pointer_hidden = hide;
2442 }
2443}
2444
2445#ifdef FEAT_MENU
2446 static void
2447gui_mch_show_popupmenu_at(vimmenu_T *menu, int x, int y)
2448{
2449 /* Unhide the mouse, we don't get move events here. */
2450 gui_mch_mousehide(FALSE);
2451
2452 (void)TrackPopupMenu(
2453 (HMENU)menu->submenu_id,
2454 TPM_LEFTALIGN | TPM_LEFTBUTTON,
2455 x, y,
2456 (int)0, /*reserved param*/
2457 s_hwnd,
2458 NULL);
2459 /*
2460 * NOTE: The pop-up menu can eat the mouse up event.
2461 * We deal with this in normal.c.
2462 */
2463}
2464#endif
2465
2466/*
2467 * Got a message when the system will go down.
2468 */
2469 static void
2470_OnEndSession(void)
2471{
2472 getout_preserve_modified(1);
2473}
2474
2475/*
2476 * Get this message when the user clicks on the cross in the top right corner
2477 * of a Windows95 window.
2478 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002479/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 static void
2481_OnClose(
2482 HWND hwnd)
2483{
2484 gui_shell_closed();
2485}
2486
2487/*
2488 * Get a message when the window is being destroyed.
2489 */
2490 static void
2491_OnDestroy(
2492 HWND hwnd)
2493{
2494#ifdef WIN16_3DLOOK
2495 Ctl3dUnregister(s_hinst);
2496#endif
2497 if (!destroying)
2498 _OnClose(hwnd);
2499}
2500
2501 static void
2502_OnPaint(
2503 HWND hwnd)
2504{
2505 if (!IsMinimized(hwnd))
2506 {
2507 PAINTSTRUCT ps;
2508
2509 out_flush(); /* make sure all output has been processed */
2510 (void)BeginPaint(hwnd, &ps);
2511
2512#ifdef FEAT_MBYTE
2513 /* prevent multi-byte characters from misprinting on an invalid
2514 * rectangle */
2515 if (has_mbyte)
2516 {
2517 RECT rect;
2518
2519 GetClientRect(hwnd, &rect);
2520 ps.rcPaint.left = rect.left;
2521 ps.rcPaint.right = rect.right;
2522 }
2523#endif
2524
2525 if (!IsRectEmpty(&ps.rcPaint))
2526 gui_redraw(ps.rcPaint.left, ps.rcPaint.top,
2527 ps.rcPaint.right - ps.rcPaint.left + 1,
2528 ps.rcPaint.bottom - ps.rcPaint.top + 1);
2529 EndPaint(hwnd, &ps);
2530 }
2531}
2532
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002533/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534 static void
2535_OnSize(
2536 HWND hwnd,
2537 UINT state,
2538 int cx,
2539 int cy)
2540{
2541 if (!IsMinimized(hwnd))
2542 {
2543 gui_resize_shell(cx, cy);
2544
2545#ifdef FEAT_MENU
2546 /* Menu bar may wrap differently now */
2547 gui_mswin_get_menu_height(TRUE);
2548#endif
2549 }
2550}
2551
2552 static void
2553_OnSetFocus(
2554 HWND hwnd,
2555 HWND hwndOldFocus)
2556{
2557 gui_focus_change(TRUE);
2558 (void)MyWindowProc(hwnd, WM_SETFOCUS, (WPARAM)hwndOldFocus, 0);
2559}
2560
2561 static void
2562_OnKillFocus(
2563 HWND hwnd,
2564 HWND hwndNewFocus)
2565{
2566 gui_focus_change(FALSE);
2567 (void)MyWindowProc(hwnd, WM_KILLFOCUS, (WPARAM)hwndNewFocus, 0);
2568}
2569
2570/*
2571 * Get a message when the user switches back to vim
2572 */
2573#ifdef WIN16
2574 static BOOL
2575#else
2576 static LRESULT
2577#endif
2578_OnActivateApp(
2579 HWND hwnd,
2580 BOOL fActivate,
2581#ifdef WIN16
2582 HTASK dwThreadId
2583#else
2584 DWORD dwThreadId
2585#endif
2586 )
2587{
2588 /* we call gui_focus_change() in _OnSetFocus() */
2589 /* gui_focus_change((int)fActivate); */
2590 return MyWindowProc(hwnd, WM_ACTIVATEAPP, fActivate, (DWORD)dwThreadId);
2591}
2592
2593#if defined(FEAT_WINDOWS) || defined(PROTO)
2594 void
2595gui_mch_destroy_scrollbar(scrollbar_T *sb)
2596{
2597 DestroyWindow(sb->id);
2598}
2599#endif
2600
2601/*
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002602 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 */
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002604 void
Bram Moolenaara40c5002005-01-09 21:16:21 +00002605gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606{
2607 RECT rct;
2608 POINT mp;
2609
2610 (void)GetWindowRect(s_textArea, &rct);
2611 (void)GetCursorPos((LPPOINT)&mp);
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002612 *x = (int)(mp.x - rct.left);
2613 *y = (int)(mp.y - rct.top);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614}
2615
2616/*
2617 * Move mouse pointer to character at (x, y).
2618 */
2619 void
2620gui_mch_setmouse(int x, int y)
2621{
2622 RECT rct;
2623
2624 (void)GetWindowRect(s_textArea, &rct);
2625 (void)SetCursorPos(x + gui.border_offset + rct.left,
2626 y + gui.border_offset + rct.top);
2627}
2628
2629 static void
2630gui_mswin_get_valid_dimensions(
2631 int w,
2632 int h,
2633 int *valid_w,
2634 int *valid_h)
2635{
2636 int base_width, base_height;
2637
2638 base_width = gui_get_base_width()
2639 + GetSystemMetrics(SM_CXFRAME) * 2;
2640 base_height = gui_get_base_height()
2641 + GetSystemMetrics(SM_CYFRAME) * 2
2642 + GetSystemMetrics(SM_CYCAPTION)
2643#ifdef FEAT_MENU
2644 + gui_mswin_get_menu_height(FALSE)
2645#endif
2646 ;
2647 *valid_w = base_width +
2648 ((w - base_width) / gui.char_width) * gui.char_width;
2649 *valid_h = base_height +
2650 ((h - base_height) / gui.char_height) * gui.char_height;
2651}
2652
2653 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654gui_mch_flash(int msec)
2655{
2656 RECT rc;
2657
2658 /*
2659 * Note: InvertRect() excludes right and bottom of rectangle.
2660 */
2661 rc.left = 0;
2662 rc.top = 0;
2663 rc.right = gui.num_cols * gui.char_width;
2664 rc.bottom = gui.num_rows * gui.char_height;
2665 InvertRect(s_hdc, &rc);
2666 gui_mch_flush(); /* make sure it's displayed */
2667
2668 ui_delay((long)msec, TRUE); /* wait for a few msec */
2669
2670 InvertRect(s_hdc, &rc);
2671}
2672
2673/*
2674 * Return flags used for scrolling.
2675 * The SW_INVALIDATE is required when part of the window is covered or
2676 * off-screen. Refer to MS KB Q75236.
2677 */
2678 static int
2679get_scroll_flags(void)
2680{
2681 HWND hwnd;
2682 RECT rcVim, rcOther, rcDest;
2683
2684 GetWindowRect(s_hwnd, &rcVim);
Bram Moolenaar0d406992005-05-22 22:03:39 +00002685
2686 /* Check if the window is partly above or below the screen. We don't care
2687 * about partly left or right of the screen, it is not relevant when
2688 * scrolling up or down. */
2689 if (rcVim.top < 0 || rcVim.bottom > GetSystemMetrics(SM_CYFULLSCREEN))
2690 return SW_INVALIDATE;
2691
2692 /* Check if there is an window (partly) on top of us. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 for (hwnd = s_hwnd; (hwnd = GetWindow(hwnd, GW_HWNDPREV)) != (HWND)0; )
2694 if (IsWindowVisible(hwnd))
2695 {
2696 GetWindowRect(hwnd, &rcOther);
2697 if (IntersectRect(&rcDest, &rcVim, &rcOther))
2698 return SW_INVALIDATE;
2699 }
2700 return 0;
2701}
2702
2703/*
2704 * Delete the given number of lines from the given row, scrolling up any
2705 * text further down within the scroll region.
2706 */
2707 void
2708gui_mch_delete_lines(
2709 int row,
2710 int num_lines)
2711{
2712 RECT rc;
2713
2714 rc.left = FILL_X(gui.scroll_region_left);
2715 rc.right = FILL_X(gui.scroll_region_right + 1);
2716 rc.top = FILL_Y(row);
2717 rc.bottom = FILL_Y(gui.scroll_region_bot + 1);
2718
2719 ScrollWindowEx(s_textArea, 0, -num_lines * gui.char_height,
2720 &rc, &rc, NULL, NULL, get_scroll_flags());
2721
2722 UpdateWindow(s_textArea);
2723 /* This seems to be required to avoid the cursor disappearing when
2724 * scrolling such that the cursor ends up in the top-left character on
2725 * the screen... But why? (Webb) */
2726 /* It's probably fixed by disabling drawing the cursor while scrolling. */
2727 /* gui.cursor_is_valid = FALSE; */
2728
2729 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
2730 gui.scroll_region_left,
2731 gui.scroll_region_bot, gui.scroll_region_right);
2732}
2733
2734/*
2735 * Insert the given number of lines before the given row, scrolling down any
2736 * following text within the scroll region.
2737 */
2738 void
2739gui_mch_insert_lines(
2740 int row,
2741 int num_lines)
2742{
2743 RECT rc;
2744
2745 rc.left = FILL_X(gui.scroll_region_left);
2746 rc.right = FILL_X(gui.scroll_region_right + 1);
2747 rc.top = FILL_Y(row);
2748 rc.bottom = FILL_Y(gui.scroll_region_bot + 1);
2749 /* The SW_INVALIDATE is required when part of the window is covered or
2750 * off-screen. How do we avoid it when it's not needed? */
2751 ScrollWindowEx(s_textArea, 0, num_lines * gui.char_height,
2752 &rc, &rc, NULL, NULL, get_scroll_flags());
2753
2754 UpdateWindow(s_textArea);
2755
2756 gui_clear_block(row, gui.scroll_region_left,
2757 row + num_lines - 1, gui.scroll_region_right);
2758}
2759
2760
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002761/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 void
2763gui_mch_exit(int rc)
2764{
2765 ReleaseDC(s_textArea, s_hdc);
2766 DeleteObject(s_brush);
2767
2768#ifdef FEAT_TEAROFF
2769 /* Unload the tearoff bitmap */
2770 (void)DeleteObject((HGDIOBJ)s_htearbitmap);
2771#endif
2772
2773 /* Destroy our window (if we have one). */
2774 if (s_hwnd != NULL)
2775 {
2776 destroying = TRUE; /* ignore WM_DESTROY message now */
2777 DestroyWindow(s_hwnd);
2778 }
2779
2780#ifdef GLOBAL_IME
2781 global_ime_end();
2782#endif
2783}
2784
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002785 static char_u *
2786logfont2name(LOGFONT lf)
2787{
2788 char *p;
2789 char *res;
2790 char *charset_name;
2791
2792 charset_name = charset_id2name((int)lf.lfCharSet);
2793 res = alloc((unsigned)(strlen(lf.lfFaceName) + 20
2794 + (charset_name == NULL ? 0 : strlen(charset_name) + 2)));
2795 if (res != NULL)
2796 {
2797 p = res;
2798 /* make a normal font string out of the lf thing:*/
2799 sprintf((char *)p, "%s:h%d", lf.lfFaceName, pixels_to_points(
2800 lf.lfHeight < 0 ? -lf.lfHeight : lf.lfHeight, TRUE));
2801 while (*p)
2802 {
2803 if (*p == ' ')
2804 *p = '_';
2805 ++p;
2806 }
2807#ifndef MSWIN16_FASTTEXT
2808 if (lf.lfItalic)
2809 STRCAT(p, ":i");
2810 if (lf.lfWeight >= FW_BOLD)
2811 STRCAT(p, ":b");
2812#endif
2813 if (lf.lfUnderline)
2814 STRCAT(p, ":u");
2815 if (lf.lfStrikeOut)
2816 STRCAT(p, ":s");
2817 if (charset_name != NULL)
2818 {
2819 STRCAT(p, ":c");
2820 STRCAT(p, charset_name);
2821 }
2822 }
2823
2824 return res;
2825}
2826
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002828 * Initialise vim to use the font with the given name.
2829 * Return FAIL if the font could not be loaded, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002831/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 int
2833gui_mch_init_font(char_u *font_name, int fontset)
2834{
2835 LOGFONT lf;
2836 GuiFont font = NOFONT;
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002837 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838
2839 /* Load the font */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002840 if (get_logfont(&lf, font_name, NULL, TRUE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 font = get_font_handle(&lf);
2842 if (font == NOFONT)
2843 return FAIL;
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002844
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 if (font_name == NULL)
2846 font_name = lf.lfFaceName;
2847#if defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)
2848 norm_logfont = lf;
2849#endif
2850#ifdef FEAT_MBYTE_IME
2851 im_set_font(&lf);
2852#endif
2853 gui_mch_free_font(gui.norm_font);
2854 gui.norm_font = font;
2855 current_font_height = lf.lfHeight;
2856 GetFontSize(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002858 p = logfont2name(lf);
2859 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002861 hl_set_font_name(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002863 /* When setting 'guifont' to "*" replace it with the actual font name.
2864 * */
2865 if (STRCMP(font_name, "*") == 0 && STRCMP(p_guifont, "*") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 vim_free(p_guifont);
2868 p_guifont = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 }
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002870 else
2871 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 }
2873
2874#ifndef MSWIN16_FASTTEXT
2875 gui_mch_free_font(gui.ital_font);
2876 gui.ital_font = NOFONT;
2877 gui_mch_free_font(gui.bold_font);
2878 gui.bold_font = NOFONT;
2879 gui_mch_free_font(gui.boldital_font);
2880 gui.boldital_font = NOFONT;
2881
2882 if (!lf.lfItalic)
2883 {
2884 lf.lfItalic = TRUE;
2885 gui.ital_font = get_font_handle(&lf);
2886 lf.lfItalic = FALSE;
2887 }
2888 if (lf.lfWeight < FW_BOLD)
2889 {
2890 lf.lfWeight = FW_BOLD;
2891 gui.bold_font = get_font_handle(&lf);
2892 if (!lf.lfItalic)
2893 {
2894 lf.lfItalic = TRUE;
2895 gui.boldital_font = get_font_handle(&lf);
2896 }
2897 }
2898#endif
2899
2900 return OK;
2901}
2902
2903/*
2904 * Return TRUE if the GUI window is maximized, filling the whole screen.
2905 */
2906 int
2907gui_mch_maximized()
2908{
2909 return IsZoomed(s_hwnd);
2910}
2911
2912/*
2913 * Called when the font changed while the window is maximized. Compute the
2914 * new Rows and Columns. This is like resizing the window.
2915 */
2916 void
2917gui_mch_newfont()
2918{
2919 RECT rect;
2920
2921 GetWindowRect(s_hwnd, &rect);
2922 gui_resize_shell(rect.right - rect.left
2923 - GetSystemMetrics(SM_CXFRAME) * 2,
2924 rect.bottom - rect.top
2925 - GetSystemMetrics(SM_CYFRAME) * 2
2926 - GetSystemMetrics(SM_CYCAPTION)
2927#ifdef FEAT_MENU
2928 - gui_mswin_get_menu_height(FALSE)
2929#endif
2930 );
2931}
2932
2933/*
2934 * Set the window title
2935 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002936/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 void
2938gui_mch_settitle(
2939 char_u *title,
2940 char_u *icon)
2941{
2942#ifdef FEAT_MBYTE
2943 if (title != NULL && enc_codepage >= 0 && enc_codepage != (int)GetACP())
2944 {
2945 WCHAR *wbuf;
2946 int n;
2947
2948 /* Convert the title from 'encoding' to ucs2. */
2949 wbuf = (WCHAR *)enc_to_ucs2(title, NULL);
2950 if (wbuf != NULL)
2951 {
2952 n = SetWindowTextW(s_hwnd, wbuf);
2953 vim_free(wbuf);
2954 if (n != 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2955 return;
2956 /* Retry with non-wide function (for Windows 98). */
2957 }
2958 }
2959#endif
2960 SetWindowText(s_hwnd, (LPCSTR)(title == NULL ? "VIM" : (char *)title));
2961}
2962
2963#ifdef FEAT_MOUSESHAPE
2964/* Table for shape IDCs. Keep in sync with the mshape_names[] table in
2965 * misc2.c! */
2966static LPCSTR mshape_idcs[] =
2967{
2968 MAKEINTRESOURCE(IDC_ARROW), /* arrow */
2969 MAKEINTRESOURCE(0), /* blank */
2970 MAKEINTRESOURCE(IDC_IBEAM), /* beam */
2971 MAKEINTRESOURCE(IDC_SIZENS), /* updown */
2972 MAKEINTRESOURCE(IDC_SIZENS), /* udsizing */
2973 MAKEINTRESOURCE(IDC_SIZEWE), /* leftright */
2974 MAKEINTRESOURCE(IDC_SIZEWE), /* lrsizing */
2975 MAKEINTRESOURCE(IDC_WAIT), /* busy */
2976#ifdef WIN3264
2977 MAKEINTRESOURCE(IDC_NO), /* no */
2978#else
2979 MAKEINTRESOURCE(IDC_ICON), /* no */
2980#endif
2981 MAKEINTRESOURCE(IDC_ARROW), /* crosshair */
2982 MAKEINTRESOURCE(IDC_ARROW), /* hand1 */
2983 MAKEINTRESOURCE(IDC_ARROW), /* hand2 */
2984 MAKEINTRESOURCE(IDC_ARROW), /* pencil */
2985 MAKEINTRESOURCE(IDC_ARROW), /* question */
2986 MAKEINTRESOURCE(IDC_ARROW), /* right-arrow */
2987 MAKEINTRESOURCE(IDC_UPARROW), /* up-arrow */
2988 MAKEINTRESOURCE(IDC_ARROW) /* last one */
2989};
2990
2991 void
2992mch_set_mouse_shape(int shape)
2993{
2994 LPCSTR idc;
2995
2996 if (shape == MSHAPE_HIDE)
2997 ShowCursor(FALSE);
2998 else
2999 {
3000 if (shape >= MSHAPE_NUMBERED)
3001 idc = MAKEINTRESOURCE(IDC_ARROW);
3002 else
3003 idc = mshape_idcs[shape];
3004#ifdef _WIN64
3005 SetClassLongPtr(s_textArea, GCLP_HCURSOR, (LONG_PTR)LoadCursor(NULL, idc));
3006#else
3007# ifdef WIN32
3008 SetClassLong(s_textArea, GCL_HCURSOR, (LONG)LoadCursor(NULL, idc));
3009# else
3010 SetClassWord(s_textArea, GCW_HCURSOR, (WORD)LoadCursor(NULL, idc));
3011# endif
3012#endif
3013 if (!p_mh)
3014 {
3015 POINT mp;
3016
3017 /* Set the position to make it redrawn with the new shape. */
3018 (void)GetCursorPos((LPPOINT)&mp);
3019 (void)SetCursorPos(mp.x, mp.y);
3020 ShowCursor(TRUE);
3021 }
3022 }
3023}
3024#endif
3025
3026#ifdef FEAT_BROWSE
3027/*
3028 * The file browser exists in two versions: with "W" uses wide characters,
3029 * without "W" the current codepage. When FEAT_MBYTE is defined and on
3030 * Windows NT/2000/XP the "W" functions are used.
3031 */
3032
3033# if defined(FEAT_MBYTE) && defined(WIN3264)
3034/*
3035 * Wide version of convert_filter(). Keep in sync!
3036 */
3037 static WCHAR *
3038convert_filterW(char_u *s)
3039{
3040 WCHAR *res;
3041 unsigned s_len = (unsigned)STRLEN(s);
3042 unsigned i;
3043
3044 res = (WCHAR *)alloc((s_len + 3) * sizeof(WCHAR));
3045 if (res != NULL)
3046 {
3047 for (i = 0; i < s_len; ++i)
3048 if (s[i] == '\t' || s[i] == '\n')
3049 res[i] = '\0';
3050 else
3051 res[i] = s[i];
3052 res[s_len] = NUL;
3053 /* Add two extra NULs to make sure it's properly terminated. */
3054 res[s_len + 1] = NUL;
3055 res[s_len + 2] = NUL;
3056 }
3057 return res;
3058}
3059
3060/*
3061 * Wide version of gui_mch_browse(). Keep in sync!
3062 */
3063 static char_u *
3064gui_mch_browseW(
3065 int saving,
3066 char_u *title,
3067 char_u *dflt,
3068 char_u *ext,
3069 char_u *initdir,
3070 char_u *filter)
3071{
3072 /* We always use the wide function. This means enc_to_ucs2() must work,
3073 * otherwise it fails miserably! */
3074 OPENFILENAMEW fileStruct;
3075 WCHAR fileBuf[MAXPATHL];
3076 WCHAR *wp;
3077 int i;
3078 WCHAR *titlep = NULL;
3079 WCHAR *extp = NULL;
3080 WCHAR *initdirp = NULL;
3081 WCHAR *filterp;
3082 char_u *p;
3083
3084 if (dflt == NULL)
3085 fileBuf[0] = NUL;
3086 else
3087 {
3088 wp = enc_to_ucs2(dflt, NULL);
3089 if (wp == NULL)
3090 fileBuf[0] = NUL;
3091 else
3092 {
3093 for (i = 0; wp[i] != NUL && i < MAXPATHL - 1; ++i)
3094 fileBuf[i] = wp[i];
3095 fileBuf[i] = NUL;
3096 vim_free(wp);
3097 }
3098 }
3099
3100 /* Convert the filter to Windows format. */
3101 filterp = convert_filterW(filter);
3102
3103 memset(&fileStruct, 0, sizeof(OPENFILENAMEW));
3104#ifdef OPENFILENAME_SIZE_VERSION_400
3105 /* be compatible with Windows NT 4.0 */
3106 /* TODO: what to use for OPENFILENAMEW??? */
3107 fileStruct.lStructSize = sizeof(OPENFILENAME_SIZE_VERSION_400);
3108#else
3109 fileStruct.lStructSize = sizeof(fileStruct);
3110#endif
3111
3112 if (title != NULL)
3113 titlep = enc_to_ucs2(title, NULL);
3114 fileStruct.lpstrTitle = titlep;
3115
3116 if (ext != NULL)
3117 extp = enc_to_ucs2(ext, NULL);
3118 fileStruct.lpstrDefExt = extp;
3119
3120 fileStruct.lpstrFile = fileBuf;
3121 fileStruct.nMaxFile = MAXPATHL;
3122 fileStruct.lpstrFilter = filterp;
3123 fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/
3124 /* has an initial dir been specified? */
3125 if (initdir != NULL && *initdir != NUL)
3126 {
3127 /* Must have backslashes here, no matter what 'shellslash' says */
3128 initdirp = enc_to_ucs2(initdir, NULL);
3129 if (initdirp != NULL)
3130 {
3131 for (wp = initdirp; *wp != NUL; ++wp)
3132 if (*wp == '/')
3133 *wp = '\\';
3134 }
3135 fileStruct.lpstrInitialDir = initdirp;
3136 }
3137
3138 /*
3139 * TODO: Allow selection of multiple files. Needs another arg to this
3140 * function to ask for it, and need to use OFN_ALLOWMULTISELECT below.
3141 * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on
3142 * files that don't exist yet, so I haven't put it in. What about
3143 * OFN_PATHMUSTEXIST?
3144 * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog.
3145 */
3146 fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY);
3147#ifdef FEAT_SHORTCUT
3148 if (curbuf->b_p_bin)
3149 fileStruct.Flags |= OFN_NODEREFERENCELINKS;
3150#endif
3151 if (saving)
3152 {
3153 if (!GetSaveFileNameW(&fileStruct))
3154 return NULL;
3155 }
3156 else
3157 {
3158 if (!GetOpenFileNameW(&fileStruct))
3159 return NULL;
3160 }
3161
3162 vim_free(filterp);
3163 vim_free(initdirp);
3164 vim_free(titlep);
3165 vim_free(extp);
3166
3167 /* Convert from UCS2 to 'encoding'. */
3168 p = ucs2_to_enc(fileBuf, NULL);
3169 if (p != NULL)
3170 /* when out of memory we get garbage for non-ASCII chars */
3171 STRCPY(fileBuf, p);
3172 vim_free(p);
3173
3174 /* Give focus back to main window (when using MDI). */
3175 SetFocus(s_hwnd);
3176
3177 /* Shorten the file name if possible */
3178 mch_dirname(IObuff, IOSIZE);
3179 p = shorten_fname((char_u *)fileBuf, IObuff);
3180 if (p == NULL)
3181 p = (char_u *)fileBuf;
3182 return vim_strsave(p);
3183}
3184# endif /* FEAT_MBYTE */
3185
3186
3187/*
3188 * Convert the string s to the proper format for a filter string by replacing
3189 * the \t and \n delimeters with \0.
3190 * Returns the converted string in allocated memory.
3191 *
3192 * Keep in sync with convert_filterW() above!
3193 */
3194 static char_u *
3195convert_filter(char_u *s)
3196{
3197 char_u *res;
3198 unsigned s_len = (unsigned)STRLEN(s);
3199 unsigned i;
3200
3201 res = alloc(s_len + 3);
3202 if (res != NULL)
3203 {
3204 for (i = 0; i < s_len; ++i)
3205 if (s[i] == '\t' || s[i] == '\n')
3206 res[i] = '\0';
3207 else
3208 res[i] = s[i];
3209 res[s_len] = NUL;
3210 /* Add two extra NULs to make sure it's properly terminated. */
3211 res[s_len + 1] = NUL;
3212 res[s_len + 2] = NUL;
3213 }
3214 return res;
3215}
3216
3217/*
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003218 * Select a directory.
3219 */
3220 char_u *
3221gui_mch_browsedir(char_u *title, char_u *initdir)
3222{
3223 /* We fake this: Use a filter that doesn't select anything and a default
3224 * file name that won't be used. */
3225 return gui_mch_browse(0, title, (char_u *)_("Not Used"), NULL,
3226 initdir, (char_u *)_("Directory\t*.nothing\n"));
3227}
3228
3229/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 * Pop open a file browser and return the file selected, in allocated memory,
3231 * or NULL if Cancel is hit.
3232 * saving - TRUE if the file will be saved to, FALSE if it will be opened.
3233 * title - Title message for the file browser dialog.
3234 * dflt - Default name of file.
3235 * ext - Default extension to be added to files without extensions.
3236 * initdir - directory in which to open the browser (NULL = current dir)
3237 * filter - Filter for matched files to choose from.
3238 *
3239 * Keep in sync with gui_mch_browseW() above!
3240 */
3241 char_u *
3242gui_mch_browse(
3243 int saving,
3244 char_u *title,
3245 char_u *dflt,
3246 char_u *ext,
3247 char_u *initdir,
3248 char_u *filter)
3249{
3250 OPENFILENAME fileStruct;
3251 char_u fileBuf[MAXPATHL];
3252 char_u *initdirp = NULL;
3253 char_u *filterp;
3254 char_u *p;
3255
3256# if defined(FEAT_MBYTE) && defined(WIN3264)
3257 if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT)
3258 return gui_mch_browseW(saving, title, dflt, ext, initdir, filter);
3259# endif
3260
3261 if (dflt == NULL)
3262 fileBuf[0] = NUL;
3263 else
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003264 vim_strncpy(fileBuf, dflt, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265
3266 /* Convert the filter to Windows format. */
3267 filterp = convert_filter(filter);
3268
3269 memset(&fileStruct, 0, sizeof(OPENFILENAME));
3270#ifdef OPENFILENAME_SIZE_VERSION_400
3271 /* be compatible with Windows NT 4.0 */
3272 fileStruct.lStructSize = sizeof(OPENFILENAME_SIZE_VERSION_400);
3273#else
3274 fileStruct.lStructSize = sizeof(fileStruct);
3275#endif
3276
3277 fileStruct.lpstrTitle = title;
3278 fileStruct.lpstrDefExt = ext;
3279
3280 fileStruct.lpstrFile = fileBuf;
3281 fileStruct.nMaxFile = MAXPATHL;
3282 fileStruct.lpstrFilter = filterp;
3283 fileStruct.hwndOwner = s_hwnd; /* main Vim window is owner*/
3284 /* has an initial dir been specified? */
3285 if (initdir != NULL && *initdir != NUL)
3286 {
3287 /* Must have backslashes here, no matter what 'shellslash' says */
3288 initdirp = vim_strsave(initdir);
3289 if (initdirp != NULL)
3290 for (p = initdirp; *p != NUL; ++p)
3291 if (*p == '/')
3292 *p = '\\';
3293 fileStruct.lpstrInitialDir = initdirp;
3294 }
3295
3296 /*
3297 * TODO: Allow selection of multiple files. Needs another arg to this
3298 * function to ask for it, and need to use OFN_ALLOWMULTISELECT below.
3299 * Also, should we use OFN_FILEMUSTEXIST when opening? Vim can edit on
3300 * files that don't exist yet, so I haven't put it in. What about
3301 * OFN_PATHMUSTEXIST?
3302 * Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog.
3303 */
3304 fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY);
3305#ifdef FEAT_SHORTCUT
3306 if (curbuf->b_p_bin)
3307 fileStruct.Flags |= OFN_NODEREFERENCELINKS;
3308#endif
3309 if (saving)
3310 {
3311 if (!GetSaveFileName(&fileStruct))
3312 return NULL;
3313 }
3314 else
3315 {
3316 if (!GetOpenFileName(&fileStruct))
3317 return NULL;
3318 }
3319
3320 vim_free(filterp);
3321 vim_free(initdirp);
3322
3323 /* Give focus back to main window (when using MDI). */
3324 SetFocus(s_hwnd);
3325
3326 /* Shorten the file name if possible */
3327 mch_dirname(IObuff, IOSIZE);
3328 p = shorten_fname((char_u *)fileBuf, IObuff);
3329 if (p == NULL)
3330 p = (char_u *)fileBuf;
3331 return vim_strsave(p);
3332}
3333#endif /* FEAT_BROWSE */
3334
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003335/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 static void
3337_OnDropFiles(
3338 HWND hwnd,
3339 HDROP hDrop)
3340{
3341#ifdef FEAT_WINDOWS
3342#ifdef WIN3264
3343# define BUFPATHLEN _MAX_PATH
3344# define DRAGQVAL 0xFFFFFFFF
3345#else
3346# define BUFPATHLEN MAXPATHL
3347# define DRAGQVAL 0xFFFF
3348#endif
3349#ifdef FEAT_MBYTE
3350 WCHAR wszFile[BUFPATHLEN];
3351#endif
3352 char szFile[BUFPATHLEN];
3353 UINT cFiles = DragQueryFile(hDrop, DRAGQVAL, NULL, 0);
3354 UINT i;
3355 char_u **fnames;
3356 POINT pt;
3357 int_u modifiers = 0;
3358
3359 /* TRACE("_OnDropFiles: %d files dropped\n", cFiles); */
3360
3361 /* Obtain dropped position */
3362 DragQueryPoint(hDrop, &pt);
3363 MapWindowPoints(s_hwnd, s_textArea, &pt, 1);
3364
3365# ifdef FEAT_VISUAL
3366 reset_VIsual();
3367# endif
3368
3369 fnames = (char_u **)alloc(cFiles * sizeof(char_u *));
3370
3371 if (fnames != NULL)
3372 for (i = 0; i < cFiles; ++i)
3373 {
3374#ifdef FEAT_MBYTE
3375 if (DragQueryFileW(hDrop, i, wszFile, BUFPATHLEN) > 0)
3376 fnames[i] = ucs2_to_enc(wszFile, NULL);
3377 else
3378#endif
3379 {
3380 DragQueryFile(hDrop, i, szFile, BUFPATHLEN);
3381 fnames[i] = vim_strsave(szFile);
3382 }
3383 }
3384
3385 DragFinish(hDrop);
3386
3387 if (fnames != NULL)
3388 {
3389 if ((GetKeyState(VK_SHIFT) & 0x8000) != 0)
3390 modifiers |= MOUSE_SHIFT;
3391 if ((GetKeyState(VK_CONTROL) & 0x8000) != 0)
3392 modifiers |= MOUSE_CTRL;
3393 if ((GetKeyState(VK_MENU) & 0x8000) != 0)
3394 modifiers |= MOUSE_ALT;
3395
3396 gui_handle_drop(pt.x, pt.y, modifiers, fnames, cFiles);
3397
3398 s_need_activate = TRUE;
3399 }
3400#endif
3401}
3402
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003403/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 static int
3405_OnScroll(
3406 HWND hwnd,
3407 HWND hwndCtl,
3408 UINT code,
3409 int pos)
3410{
3411 static UINT prev_code = 0; /* code of previous call */
3412 scrollbar_T *sb, *sb_info;
3413 long val;
3414 int dragging = FALSE;
3415 int dont_scroll_save = dont_scroll;
3416#ifndef WIN3264
3417 int nPos;
3418#else
3419 SCROLLINFO si;
3420
3421 si.cbSize = sizeof(si);
3422 si.fMask = SIF_POS;
3423#endif
3424
3425 sb = gui_mswin_find_scrollbar(hwndCtl);
3426 if (sb == NULL)
3427 return 0;
3428
3429 if (sb->wp != NULL) /* Left or right scrollbar */
3430 {
3431 /*
3432 * Careful: need to get scrollbar info out of first (left) scrollbar
3433 * for window, but keep real scrollbar too because we must pass it to
3434 * gui_drag_scrollbar().
3435 */
3436 sb_info = &sb->wp->w_scrollbars[0];
3437 }
3438 else /* Bottom scrollbar */
3439 sb_info = sb;
3440 val = sb_info->value;
3441
3442 switch (code)
3443 {
3444 case SB_THUMBTRACK:
3445 val = pos;
3446 dragging = TRUE;
3447 if (sb->scroll_shift > 0)
3448 val <<= sb->scroll_shift;
3449 break;
3450 case SB_LINEDOWN:
3451 val++;
3452 break;
3453 case SB_LINEUP:
3454 val--;
3455 break;
3456 case SB_PAGEDOWN:
3457 val += (sb_info->size > 2 ? sb_info->size - 2 : 1);
3458 break;
3459 case SB_PAGEUP:
3460 val -= (sb_info->size > 2 ? sb_info->size - 2 : 1);
3461 break;
3462 case SB_TOP:
3463 val = 0;
3464 break;
3465 case SB_BOTTOM:
3466 val = sb_info->max;
3467 break;
3468 case SB_ENDSCROLL:
3469 if (prev_code == SB_THUMBTRACK)
3470 {
3471 /*
3472 * "pos" only gives us 16-bit data. In case of large file,
3473 * use GetScrollPos() which returns 32-bit. Unfortunately it
3474 * is not valid while the scrollbar is being dragged.
3475 */
3476 val = GetScrollPos(hwndCtl, SB_CTL);
3477 if (sb->scroll_shift > 0)
3478 val <<= sb->scroll_shift;
3479 }
3480 break;
3481
3482 default:
3483 /* TRACE("Unknown scrollbar event %d\n", code); */
3484 return 0;
3485 }
3486 prev_code = code;
3487
3488#ifdef WIN3264
3489 si.nPos = (sb->scroll_shift > 0) ? val >> sb->scroll_shift : val;
3490 SetScrollInfo(hwndCtl, SB_CTL, &si, TRUE);
3491#else
3492 nPos = (sb->scroll_shift > 0) ? val >> sb->scroll_shift : val;
3493 SetScrollPos(hwndCtl, SB_CTL, nPos, TRUE);
3494#endif
3495
3496 /*
3497 * When moving a vertical scrollbar, move the other vertical scrollbar too.
3498 */
3499 if (sb->wp != NULL)
3500 {
3501 scrollbar_T *sba = sb->wp->w_scrollbars;
3502 HWND id = sba[ (sb == sba + SBAR_LEFT) ? SBAR_RIGHT : SBAR_LEFT].id;
3503
3504#ifdef WIN3264
3505 SetScrollInfo(id, SB_CTL, &si, TRUE);
3506#else
3507 SetScrollPos(id, SB_CTL, nPos, TRUE);
3508#endif
3509 }
3510
3511 /* Don't let us be interrupted here by another message. */
3512 s_busy_processing = TRUE;
3513
3514 /* When "allow_scrollbar" is FALSE still need to remember the new
3515 * position, but don't actually scroll by setting "dont_scroll". */
3516 dont_scroll = !allow_scrollbar;
3517
3518 gui_drag_scrollbar(sb, val, dragging);
3519
3520 s_busy_processing = FALSE;
3521 dont_scroll = dont_scroll_save;
3522
3523 return 0;
3524}
3525
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003526
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527/*
3528 * Get command line arguments.
3529 * Use "prog" as the name of the program and "cmdline" as the arguments.
3530 * Copy the arguments to allocated memory.
3531 * Return the number of arguments (including program name).
3532 * Return pointers to the arguments in "argvp".
3533 * Return pointer to buffer in "tofree".
3534 * Returns zero when out of memory.
3535 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003536/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 int
3538get_cmd_args(char *prog, char *cmdline, char ***argvp, char **tofree)
3539{
3540 int i;
3541 char *p;
3542 char *progp;
3543 char *pnew = NULL;
3544 char *newcmdline;
3545 int inquote;
3546 int argc;
3547 char **argv = NULL;
3548 int round;
3549
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003550#ifdef FEAT_MBYTE
3551 /* Try using the Unicode version first, it takes care of conversion when
3552 * 'encoding' is changed. */
3553 argc = get_cmd_argsW(&argv);
3554 if (argc != 0)
3555 goto done;
3556#endif
3557
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 /* Handle the program name. Remove the ".exe" extension, and find the 1st
3559 * non-space. */
3560 p = strrchr(prog, '.');
3561 if (p != NULL)
3562 *p = NUL;
3563 for (progp = prog; *progp == ' '; ++progp)
3564 ;
3565
3566 /* The command line is copied to allocated memory, so that we can change
3567 * it. Add the size of the string, the separating NUL and a terminating
3568 * NUL. */
3569 newcmdline = malloc(STRLEN(cmdline) + STRLEN(progp) + 2);
3570 if (newcmdline == NULL)
3571 return 0;
3572
3573 /*
3574 * First round: count the number of arguments ("pnew" == NULL).
3575 * Second round: produce the arguments.
3576 */
3577 for (round = 1; round <= 2; ++round)
3578 {
3579 /* First argument is the program name. */
3580 if (pnew != NULL)
3581 {
3582 argv[0] = pnew;
3583 strcpy(pnew, progp);
3584 pnew += strlen(pnew);
3585 *pnew++ = NUL;
3586 }
3587
3588 /*
3589 * Isolate each argument and put it in argv[].
3590 */
3591 p = cmdline;
3592 argc = 1;
3593 while (*p != NUL)
3594 {
3595 inquote = FALSE;
3596 if (pnew != NULL)
3597 argv[argc] = pnew;
3598 ++argc;
3599 while (*p != NUL && (inquote || (*p != ' ' && *p != '\t')))
3600 {
3601 /* Backslashes are only special when followed by a double
3602 * quote. */
3603 i = strspn(p, "\\");
3604 if (p[i] == '"')
3605 {
3606 /* Halve the number of backslashes. */
3607 if (i > 1 && pnew != NULL)
3608 {
3609 memset(pnew, '\\', i / 2);
3610 pnew += i / 2;
3611 }
3612
3613 /* Even nr of backslashes toggles quoting, uneven copies
3614 * the double quote. */
3615 if ((i & 1) == 0)
3616 inquote = !inquote;
3617 else if (pnew != NULL)
3618 *pnew++ = '"';
3619 p += i + 1;
3620 }
3621 else if (i > 0)
3622 {
3623 /* Copy span of backslashes unmodified. */
3624 if (pnew != NULL)
3625 {
3626 memset(pnew, '\\', i);
3627 pnew += i;
3628 }
3629 p += i;
3630 }
3631 else
3632 {
3633 if (pnew != NULL)
3634 *pnew++ = *p;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003635#ifdef FEAT_MBYTE
3636 /* Can't use mb_* functions, because 'encoding' is not
3637 * initialized yet here. */
3638 if (IsDBCSLeadByte(*p))
3639 {
3640 ++p;
3641 if (pnew != NULL)
3642 *pnew++ = *p;
3643 }
3644#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645 ++p;
3646 }
3647 }
3648
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003649 if (pnew != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 *pnew++ = NUL;
3651 while (*p == ' ' || *p == '\t')
3652 ++p; /* advance until a non-space */
3653 }
3654
3655 if (round == 1)
3656 {
3657 argv = (char **)malloc((argc + 1) * sizeof(char *));
3658 if (argv == NULL )
Bram Moolenaare6b165e2005-06-30 21:56:01 +00003659 {
3660 vim_free(newcmdline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 return 0; /* malloc error */
Bram Moolenaare6b165e2005-06-30 21:56:01 +00003662 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 pnew = newcmdline;
3664 }
3665 }
3666
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003667done:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003669 argv[argc] = NULL; /* NULL-terminated list */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 *argvp = argv;
3671 return argc;
3672}