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