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