blob: e725e69f07b4acbb0ec2b699aeb78f508e948236 [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 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * os_mswin.c
12 *
13 * Routines common to both Win16 and Win32.
14 */
15
16#ifdef WIN16
17# ifdef __BORLANDC__
18# pragma warn -par
19# pragma warn -ucp
20# pragma warn -use
21# pragma warn -aus
22# endif
23#endif
24
Bram Moolenaar362e1a32006-03-06 23:29:24 +000025#include "vimio.h"
Bram Moolenaar071d4272004-06-13 20:20:40 +000026#include "vim.h"
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#ifdef WIN16
29# define SHORT_FNAME /* always 8.3 file name */
30# include <dos.h>
31# include <string.h>
32#endif
33#include <sys/types.h>
34#include <errno.h>
35#include <signal.h>
36#include <limits.h>
37#include <process.h>
38
39#undef chdir
40#ifdef __GNUC__
41# ifndef __MINGW32__
42# include <dirent.h>
43# endif
44#else
45# include <direct.h>
46#endif
47
48#if defined(FEAT_TITLE) && !defined(FEAT_GUI_W32)
49# include <shellapi.h>
50#endif
51
52#if defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)
53# include <dlgs.h>
54# ifdef WIN3264
55# include <winspool.h>
56# else
57# include <print.h>
58# endif
59# include <commdlg.h>
60#endif
61
62#ifdef __MINGW32__
63# ifndef FROM_LEFT_1ST_BUTTON_PRESSED
64# define FROM_LEFT_1ST_BUTTON_PRESSED 0x0001
65# endif
66# ifndef RIGHTMOST_BUTTON_PRESSED
67# define RIGHTMOST_BUTTON_PRESSED 0x0002
68# endif
69# ifndef FROM_LEFT_2ND_BUTTON_PRESSED
70# define FROM_LEFT_2ND_BUTTON_PRESSED 0x0004
71# endif
72# ifndef FROM_LEFT_3RD_BUTTON_PRESSED
73# define FROM_LEFT_3RD_BUTTON_PRESSED 0x0008
74# endif
75# ifndef FROM_LEFT_4TH_BUTTON_PRESSED
76# define FROM_LEFT_4TH_BUTTON_PRESSED 0x0010
77# endif
78
79/*
80 * EventFlags
81 */
82# ifndef MOUSE_MOVED
83# define MOUSE_MOVED 0x0001
84# endif
85# ifndef DOUBLE_CLICK
86# define DOUBLE_CLICK 0x0002
87# endif
88#endif
89
90/*
91 * When generating prototypes for Win32 on Unix, these lines make the syntax
92 * errors disappear. They do not need to be correct.
93 */
94#ifdef PROTO
95#define WINAPI
96#define WINBASEAPI
97typedef int BOOL;
98typedef int CALLBACK;
99typedef int COLORREF;
100typedef int CONSOLE_CURSOR_INFO;
101typedef int COORD;
102typedef int DWORD;
103typedef int ENUMLOGFONT;
104typedef int HANDLE;
105typedef int HDC;
106typedef int HFONT;
107typedef int HICON;
108typedef int HWND;
109typedef int INPUT_RECORD;
110typedef int KEY_EVENT_RECORD;
111typedef int LOGFONT;
112typedef int LPARAM;
113typedef int LPBOOL;
114typedef int LPCSTR;
115typedef int LPCWSTR;
116typedef int LPSTR;
117typedef int LPTSTR;
118typedef int LPWSTR;
119typedef int LRESULT;
120typedef int MOUSE_EVENT_RECORD;
121typedef int NEWTEXTMETRIC;
122typedef int PACL;
123typedef int PRINTDLG;
124typedef int PSECURITY_DESCRIPTOR;
125typedef int PSID;
126typedef int SECURITY_INFORMATION;
127typedef int SHORT;
128typedef int SMALL_RECT;
129typedef int TEXTMETRIC;
130typedef int UINT;
131typedef int WCHAR;
132typedef int WORD;
133typedef int WPARAM;
134typedef void VOID;
135#endif
136
137/* Record all output and all keyboard & mouse input */
138/* #define MCH_WRITE_DUMP */
139
140#ifdef MCH_WRITE_DUMP
141FILE* fdDump = NULL;
142#endif
143
144#ifdef WIN3264
145extern DWORD g_PlatformId;
146#endif
147
148#ifndef FEAT_GUI_MSWIN
149extern char g_szOrigTitle[];
150#endif
151
152#ifdef FEAT_GUI
153extern HWND s_hwnd;
154#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155static HWND s_hwnd = 0; /* console window handle, set by GetConsoleHwnd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156#endif
157
158extern int WSInitialized;
159
160/* Don't generate prototypes here, because some systems do have these
161 * functions. */
162#if defined(__GNUC__) && !defined(PROTO)
163# ifndef __MINGW32__
164int _stricoll(char *a, char *b)
165{
166 // the ANSI-ish correct way is to use strxfrm():
167 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32
168 strxfrm(a_buff, a, 512);
169 strxfrm(b_buff, b, 512);
170 return strcoll(a_buff, b_buff);
171}
172
173char * _fullpath(char *buf, char *fname, int len)
174{
175 LPTSTR toss;
176
177 return (char *)GetFullPathName(fname, len, buf, &toss);
178}
179# endif
180
181int _chdrive(int drive)
182{
183 char temp [3] = "-:";
184 temp[0] = drive + 'A' - 1;
185 return !SetCurrentDirectory(temp);
186}
187#else
188# ifdef __BORLANDC__
189/* being a more ANSI compliant compiler, BorlandC doesn't define _stricoll:
190 * but it does in BC 5.02! */
191# if __BORLANDC__ < 0x502
192int _stricoll(char *a, char *b)
193{
194# if 1
195 // this is fast but not correct:
196 return stricmp(a, b);
197# else
198 // the ANSI-ish correct way is to use strxfrm():
199 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32
200 strxfrm(a_buff, a, 512);
201 strxfrm(b_buff, b, 512);
202 return strcoll(a_buff, b_buff);
203# endif
204}
205# endif
206# endif
207#endif
208
209
210#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
211/*
212 * GUI version of mch_exit().
213 * Shut down and exit with status `r'
214 * Careful: mch_exit() may be called before mch_init()!
215 */
216 void
217mch_exit(int r)
218{
219 display_errors();
220
221 ml_close_all(TRUE); /* remove all memfiles */
222
223# ifdef FEAT_OLE
224 UninitOLE();
225# endif
226# ifdef FEAT_NETBEANS_INTG
227 if (WSInitialized)
228 {
229 WSInitialized = FALSE;
230 WSACleanup();
231 }
232# endif
233#ifdef DYNAMIC_GETTEXT
234 dyn_libintl_end();
235#endif
236
237 if (gui.in_use)
238 gui_exit(r);
Bram Moolenaar85c79d32007-02-20 01:59:20 +0000239
240#ifdef EXITFREE
241 free_all_mem();
242#endif
243
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244 exit(r);
245}
246
247#endif /* FEAT_GUI_MSWIN */
248
249
250/*
251 * Init the tables for toupper() and tolower().
252 */
253 void
254mch_early_init(void)
255{
256 int i;
257
258#ifdef WIN3264
259 PlatformId();
260#endif
261
262 /* Init the tables for toupper() and tolower() */
263 for (i = 0; i < 256; ++i)
264 toupper_tab[i] = tolower_tab[i] = i;
265#ifdef WIN3264
266 CharUpperBuff(toupper_tab, 256);
267 CharLowerBuff(tolower_tab, 256);
268#else
269 AnsiUpperBuff(toupper_tab, 256);
270 AnsiLowerBuff(tolower_tab, 256);
271#endif
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000272
273#if defined(FEAT_MBYTE) && !defined(FEAT_GUI)
274 (void)get_cmd_argsW(NULL);
275#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276}
277
278
279/*
280 * Return TRUE if the input comes from a terminal, FALSE otherwise.
281 */
282 int
283mch_input_isatty()
284{
285#ifdef FEAT_GUI_MSWIN
286 return OK; /* GUI always has a tty */
287#else
288 if (isatty(read_cmd_fd))
289 return TRUE;
290 return FALSE;
291#endif
292}
293
294#ifdef FEAT_TITLE
295/*
296 * mch_settitle(): set titlebar of our window
297 */
298 void
299mch_settitle(
300 char_u *title,
301 char_u *icon)
302{
303# ifdef FEAT_GUI_MSWIN
304 gui_mch_settitle(title, icon);
305# else
306 if (title != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000307 {
308# ifdef FEAT_MBYTE
309 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
310 {
311 /* Convert the title from 'encoding' to the active codepage. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000312 WCHAR *wp = enc_to_utf16(title, NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000313 int n;
314
315 if (wp != NULL)
316 {
317 n = SetConsoleTitleW(wp);
318 vim_free(wp);
319 if (n != 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
320 return;
321 }
322 }
323# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 SetConsoleTitle(title);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326# endif
327}
328
329
330/*
331 * Restore the window/icon title.
332 * which is one of:
333 * 1: Just restore title
334 * 2: Just restore icon (which we don't have)
335 * 3: Restore title and icon (which we don't have)
336 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000337/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338 void
339mch_restore_title(
340 int which)
341{
342#ifndef FEAT_GUI_MSWIN
343 mch_settitle((which & 1) ? g_szOrigTitle : NULL, NULL);
344#endif
345}
346
347
348/*
349 * Return TRUE if we can restore the title (we can)
350 */
351 int
352mch_can_restore_title()
353{
354 return TRUE;
355}
356
357
358/*
359 * Return TRUE if we can restore the icon title (we can't)
360 */
361 int
362mch_can_restore_icon()
363{
364 return FALSE;
365}
366#endif /* FEAT_TITLE */
367
368
369/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000370 * Get absolute file name into buffer "buf" of length "len" bytes,
371 * turning all '/'s into '\\'s and getting the correct case of each component
372 * of the file name. Append a (back)slash to a directory name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 * When 'shellslash' set do it the other way around.
374 * Return OK or FAIL.
375 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000376/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 int
378mch_FullName(
379 char_u *fname,
380 char_u *buf,
381 int len,
382 int force)
383{
384 int nResult = FAIL;
385
386#ifdef __BORLANDC__
387 if (*fname == NUL) /* Borland behaves badly here - make it consistent */
388 nResult = mch_dirname(buf, len);
389 else
390#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000392#ifdef FEAT_MBYTE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000393 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage
394# ifdef __BORLANDC__
395 /* Wide functions of Borland C 5.5 do not work on Windows 98. */
396 && g_PlatformId == VER_PLATFORM_WIN32_NT
397# endif
398 )
399 {
400 WCHAR *wname;
401 WCHAR wbuf[MAX_PATH];
402 char_u *cname = NULL;
403
404 /* Use the wide function:
405 * - convert the fname from 'encoding' to UCS2.
406 * - invoke _wfullpath()
407 * - convert the result from UCS2 to 'encoding'.
408 */
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000409 wname = enc_to_utf16(fname, NULL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000410 if (wname != NULL && _wfullpath(wbuf, wname, MAX_PATH - 1) != NULL)
411 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000412 cname = utf16_to_enc((short_u *)wbuf, NULL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000413 if (cname != NULL)
414 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +0000415 vim_strncpy(buf, cname, len - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000416 nResult = OK;
417 }
418 }
419 vim_free(wname);
420 vim_free(cname);
421 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000422 if (nResult == FAIL) /* fall back to non-wide function */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000424 {
425 if (_fullpath(buf, fname, len - 1) == NULL)
426 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +0000427 /* failed, use relative path name */
428 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000429 }
430 else
431 nResult = OK;
432 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434
435#ifdef USE_FNAME_CASE
436 fname_case(buf, len);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000437#else
438 slash_adjust(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439#endif
440
441 return nResult;
442}
443
444
445/*
446 * Return TRUE if "fname" does not depend on the current directory.
447 */
448 int
449mch_isFullName(char_u *fname)
450{
451 char szName[_MAX_PATH + 1];
452
453 /* A name like "d:/foo" and "//server/share" is absolute */
454 if ((fname[0] && fname[1] == ':' && (fname[2] == '/' || fname[2] == '\\'))
455 || (fname[0] == fname[1] && (fname[0] == '/' || fname[0] == '\\')))
456 return TRUE;
457
458 /* A name that can't be made absolute probably isn't absolute. */
459 if (mch_FullName(fname, szName, _MAX_PATH, FALSE) == FAIL)
460 return FALSE;
461
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000462 return pathcmp(fname, szName, -1) == 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463}
464
465/*
466 * Replace all slashes by backslashes.
467 * This used to be the other way around, but MS-DOS sometimes has problems
468 * with slashes (e.g. in a command name). We can't have mixed slashes and
469 * backslashes, because comparing file names will not work correctly. The
470 * commands that use a file name should try to avoid the need to type a
471 * backslash twice.
472 * When 'shellslash' set do it the other way around.
473 */
474 void
475slash_adjust(p)
476 char_u *p;
477{
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000478 while (*p)
479 {
480 if (*p == psepcN)
481 *p = psepc;
482 mb_ptr_adv(p);
483 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484}
485
486
487/*
488 * stat() can't handle a trailing '/' or '\', remove it first.
489 */
490 int
491vim_stat(const char *name, struct stat *stp)
492{
493 char buf[_MAX_PATH + 1];
494 char *p;
495
Bram Moolenaar84110ac2005-07-20 21:56:21 +0000496 vim_strncpy((char_u *)buf, (char_u *)name, _MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 p = buf + strlen(buf);
498 if (p > buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000499 mb_ptr_back(buf, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 if (p > buf && (*p == '\\' || *p == '/') && p[-1] != ':')
501 *p = NUL;
502#ifdef FEAT_MBYTE
503 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage
504# ifdef __BORLANDC__
505 /* Wide functions of Borland C 5.5 do not work on Windows 98. */
506 && g_PlatformId == VER_PLATFORM_WIN32_NT
507# endif
508 )
509 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000510 WCHAR *wp = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 int n;
512
513 if (wp != NULL)
514 {
515 n = _wstat(wp, (struct _stat *)stp);
516 vim_free(wp);
517 if (n >= 0)
518 return n;
519 /* Retry with non-wide function (for Windows 98). Can't use
520 * GetLastError() here and it's unclear what errno gets set to if
521 * the _wstat() fails for missing wide functions. */
522 }
523 }
524#endif
525 return stat(buf, stp);
526}
527
528#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000529/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 void
531mch_settmode(int tmode)
532{
533 /* nothing to do */
534}
535
536 int
537mch_get_shellsize(void)
538{
539 /* never used */
540 return OK;
541}
542
543 void
544mch_set_shellsize(void)
545{
546 /* never used */
547}
548
549/*
550 * Rows and/or Columns has changed.
551 */
552 void
553mch_new_shellsize(void)
554{
555 /* never used */
556}
557
558#endif
559
560/*
561 * We have no job control, so fake it by starting a new shell.
562 */
563 void
564mch_suspend()
565{
566 suspend_shell();
567}
568
569#if defined(USE_MCH_ERRMSG) || defined(PROTO)
570
571#ifdef display_errors
572# undef display_errors
573#endif
574
575/*
576 * Display the saved error message(s).
577 */
578 void
579display_errors()
580{
581 char *p;
582
583 if (error_ga.ga_data != NULL)
584 {
585 /* avoid putting up a message box with blanks only */
586 for (p = (char *)error_ga.ga_data; *p; ++p)
587 if (!isspace(*p))
588 {
Bram Moolenaarc17ef8e2006-03-25 21:48:58 +0000589 (void)gui_mch_dialog(
590#ifdef FEAT_GUI
591 gui.starting ? VIM_INFO :
592#endif
593 VIM_ERROR,
594#ifdef FEAT_GUI
595 gui.starting ? (char_u *)_("Message") :
596#endif
597 (char_u *)_("Error"),
598 p, (char_u *)_("&Ok"), 1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 break;
600 }
601 ga_clear(&error_ga);
602 }
603}
604#endif
605
606
607/*
608 * Return TRUE if "p" contain a wildcard that can be expanded by
609 * dos_expandpath().
610 */
611 int
612mch_has_exp_wildcard(char_u *p)
613{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000614 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 {
616 if (vim_strchr((char_u *)"?*[", *p) != NULL
617 || (*p == '~' && p[1] != NUL))
618 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 }
620 return FALSE;
621}
622
623/*
624 * Return TRUE if "p" contain a wildcard or a "~1" kind of thing (could be a
625 * shortened file name).
626 */
627 int
628mch_has_wildcard(char_u *p)
629{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000630 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 {
632 if (vim_strchr((char_u *)
633# ifdef VIM_BACKTICK
634 "?*$[`"
635# else
636 "?*$["
637# endif
638 , *p) != NULL
639 || (*p == '~' && p[1] != NUL))
640 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 }
642 return FALSE;
643}
644
645
646/*
647 * The normal _chdir() does not change the default drive. This one does.
648 * Returning 0 implies success; -1 implies failure.
649 */
650 int
651mch_chdir(char *path)
652{
653 if (path[0] == NUL) /* just checking... */
654 return -1;
655
Bram Moolenaara2974d72009-07-14 16:38:36 +0000656 if (p_verbose >= 5)
657 {
658 verbose_enter();
659 smsg((char_u *)"chdir(%s)", path);
660 verbose_leave();
661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 if (isalpha(path[0]) && path[1] == ':') /* has a drive name */
663 {
664 /* If we can change to the drive, skip that part of the path. If we
665 * can't then the current directory may be invalid, try using chdir()
666 * with the whole path. */
667 if (_chdrive(TOLOWER_ASC(path[0]) - 'a' + 1) == 0)
668 path += 2;
669 }
670
671 if (*path == NUL) /* drive name only */
672 return 0;
673
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000674#ifdef FEAT_MBYTE
675 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
676 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000677 WCHAR *p = enc_to_utf16(path, NULL);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000678 int n;
679
680 if (p != NULL)
681 {
682 n = _wchdir(p);
683 vim_free(p);
684 if (n == 0)
685 return 0;
686 /* Retry with non-wide function (for Windows 98). */
687 }
688 }
689#endif
690
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 return chdir(path); /* let the normal chdir() do the rest */
692}
693
694
695/*
696 * Switching off termcap mode is only allowed when Columns is 80, otherwise a
697 * crash may result. It's always allowed on NT or when running the GUI.
698 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000699/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 int
701can_end_termcap_mode(
702 int give_msg)
703{
704#ifdef FEAT_GUI_MSWIN
705 return TRUE; /* GUI starts a new console anyway */
706#else
707 if (g_PlatformId == VER_PLATFORM_WIN32_NT || Columns == 80)
708 return TRUE;
709 if (give_msg)
710 msg(_("'columns' is not 80, cannot execute external commands"));
711 return FALSE;
712#endif
713}
714
715#ifdef FEAT_GUI_MSWIN
716/*
717 * return non-zero if a character is available
718 */
719 int
720mch_char_avail()
721{
722 /* never used */
723 return TRUE;
724}
725#endif
726
727
728/*
729 * set screen mode, always fails.
730 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000731/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 int
733mch_screenmode(
734 char_u *arg)
735{
736 EMSG(_(e_screenmode));
737 return FAIL;
738}
739
740
741#if defined(FEAT_LIBCALL) || defined(PROTO)
742/*
743 * Call a DLL routine which takes either a string or int param
744 * and returns an allocated string.
745 * Return OK if it worked, FAIL if not.
746 */
747# ifdef WIN3264
748typedef LPTSTR (*MYSTRPROCSTR)(LPTSTR);
749typedef LPTSTR (*MYINTPROCSTR)(int);
750typedef int (*MYSTRPROCINT)(LPTSTR);
751typedef int (*MYINTPROCINT)(int);
752# else
753typedef LPSTR (*MYSTRPROCSTR)(LPSTR);
754typedef LPSTR (*MYINTPROCSTR)(int);
755typedef int (*MYSTRPROCINT)(LPSTR);
756typedef int (*MYINTPROCINT)(int);
757# endif
758
759# ifndef WIN16
760/*
761 * Check if a pointer points to a valid NUL terminated string.
762 * Return the length of the string, including terminating NUL.
763 * Returns 0 for an invalid pointer, 1 for an empty string.
764 */
765 static size_t
766check_str_len(char_u *str)
767{
768 SYSTEM_INFO si;
769 MEMORY_BASIC_INFORMATION mbi;
770 size_t length = 0;
771 size_t i;
772 const char *p;
773
774 /* get page size */
775 GetSystemInfo(&si);
776
777 /* get memory information */
778 if (VirtualQuery(str, &mbi, sizeof(mbi)))
779 {
780 /* pre cast these (typing savers) */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000781 long_u dwStr = (long_u)str;
782 long_u dwBaseAddress = (long_u)mbi.BaseAddress;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783
784 /* get start address of page that str is on */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000785 long_u strPage = dwStr - (dwStr - dwBaseAddress) % si.dwPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786
787 /* get length from str to end of page */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000788 long_u pageLength = si.dwPageSize - (dwStr - strPage);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789
Bram Moolenaar442b4222010-05-24 21:34:22 +0200790 for (p = str; !IsBadReadPtr(p, (UINT)pageLength);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 p += pageLength, pageLength = si.dwPageSize)
792 for (i = 0; i < pageLength; ++i, ++length)
793 if (p[i] == NUL)
794 return length + 1;
795 }
796
797 return 0;
798}
799# endif
800
801 int
802mch_libcall(
803 char_u *libname,
804 char_u *funcname,
805 char_u *argstring, /* NULL when using a argint */
806 int argint,
807 char_u **string_result,/* NULL when using number_result */
808 int *number_result)
809{
810 HINSTANCE hinstLib;
811 MYSTRPROCSTR ProcAdd;
812 MYINTPROCSTR ProcAddI;
813 char_u *retval_str = NULL;
814 int retval_int = 0;
815 size_t len;
816
817 BOOL fRunTimeLinkSuccess = FALSE;
818
819 // Get a handle to the DLL module.
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200820# ifdef WIN16
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 hinstLib = LoadLibrary(libname);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200822# else
823 hinstLib = vimLoadLib(libname);
824# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825
826 // If the handle is valid, try to get the function address.
827 if (hinstLib != NULL)
828 {
829#ifdef HAVE_TRY_EXCEPT
830 __try
831 {
832#endif
833 if (argstring != NULL)
834 {
835 /* Call with string argument */
836 ProcAdd = (MYSTRPROCSTR) GetProcAddress(hinstLib, funcname);
837 if ((fRunTimeLinkSuccess = (ProcAdd != NULL)) != 0)
838 {
839 if (string_result == NULL)
840 retval_int = ((MYSTRPROCINT)ProcAdd)(argstring);
841 else
842 retval_str = (ProcAdd)(argstring);
843 }
844 }
845 else
846 {
847 /* Call with number argument */
848 ProcAddI = (MYINTPROCSTR) GetProcAddress(hinstLib, funcname);
849 if ((fRunTimeLinkSuccess = (ProcAddI != NULL)) != 0)
850 {
851 if (string_result == NULL)
852 retval_int = ((MYINTPROCINT)ProcAddI)(argint);
853 else
854 retval_str = (ProcAddI)(argint);
855 }
856 }
857
858 // Save the string before we free the library.
859 // Assume that a "1" result is an illegal pointer.
860 if (string_result == NULL)
861 *number_result = retval_int;
862 else if (retval_str != NULL
863# ifdef WIN16
864 && retval_str != (char_u *)1
865 && retval_str != (char_u *)-1
866 && !IsBadStringPtr(retval_str, INT_MAX)
867 && (len = strlen(retval_str) + 1) > 0
868# else
869 && (len = check_str_len(retval_str)) > 0
870# endif
871 )
872 {
873 *string_result = lalloc((long_u)len, TRUE);
874 if (*string_result != NULL)
875 mch_memmove(*string_result, retval_str, len);
876 }
877
878#ifdef HAVE_TRY_EXCEPT
879 }
880 __except(EXCEPTION_EXECUTE_HANDLER)
881 {
882 if (GetExceptionCode() == EXCEPTION_STACK_OVERFLOW)
883 RESETSTKOFLW();
884 fRunTimeLinkSuccess = 0;
885 }
886#endif
887
888 // Free the DLL module.
889 (void)FreeLibrary(hinstLib);
890 }
891
892 if (!fRunTimeLinkSuccess)
893 {
894 EMSG2(_(e_libcall), funcname);
895 return FAIL;
896 }
897
898 return OK;
899}
900#endif
901
902#if defined(FEAT_MBYTE) || defined(PROTO)
903/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000904 * Convert an UTF-8 string to UTF-16.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 * "instr[inlen]" is the input. "inlen" is in bytes.
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000906 * When "outstr" is NULL only return the number of UTF-16 words produced.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 * Otherwise "outstr" must be a buffer of sufficient size.
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000908 * Returns the number of UTF-16 words produced.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 */
910 int
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000911utf8_to_utf16(char_u *instr, int inlen, short_u *outstr, int *unconvlenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912{
913 int outlen = 0;
914 char_u *p = instr;
915 int todo = inlen;
916 int l;
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000917 int ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918
919 while (todo > 0)
920 {
921 /* Only convert if we have a complete sequence. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000922 l = utf_ptr2len_len(p, todo);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 if (l > todo)
924 {
925 /* Return length of incomplete sequence. */
926 if (unconvlenp != NULL)
927 *unconvlenp = todo;
928 break;
929 }
930
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000931 ch = utf_ptr2char(p);
932 if (ch >= 0x10000)
933 {
934 /* non-BMP character, encoding with surrogate pairs */
935 ++outlen;
936 if (outstr != NULL)
937 {
938 *outstr++ = (0xD800 - (0x10000 >> 10)) + (ch >> 10);
939 *outstr++ = 0xDC00 | (ch & 0x3FF);
940 }
941 }
942 else if (outstr != NULL)
943 *outstr++ = ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 ++outlen;
945 p += l;
946 todo -= l;
947 }
948
949 return outlen;
950}
951
952/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000953 * Convert an UTF-16 string to UTF-8.
954 * The input is "instr[inlen]" with "inlen" in number of UTF-16 words.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 * When "outstr" is NULL only return the required number of bytes.
956 * Otherwise "outstr" must be a buffer of sufficient size.
957 * Return the number of bytes produced.
958 */
959 int
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000960utf16_to_utf8(short_u *instr, int inlen, char_u *outstr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961{
962 int outlen = 0;
963 int todo = inlen;
964 short_u *p = instr;
965 int l;
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000966 int ch, ch2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967
968 while (todo > 0)
969 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000970 ch = *p;
971 if (ch >= 0xD800 && ch <= 0xDBFF && todo > 1)
972 {
973 /* surrogate pairs handling */
974 ch2 = p[1];
975 if (ch2 >= 0xDC00 && ch2 <= 0xDFFF)
976 {
977 ch = ((ch - 0xD800) << 10) + (ch2 & 0x3FF) + 0x10000;
978 ++p;
979 --todo;
980 }
981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 if (outstr != NULL)
983 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000984 l = utf_char2bytes(ch, outstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 outstr += l;
986 }
987 else
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000988 l = utf_char2len(ch);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 ++p;
990 outlen += l;
991 --todo;
992 }
993
994 return outlen;
995}
996
997/*
998 * Call MultiByteToWideChar() and allocate memory for the result.
999 * Returns the result in "*out[*outlen]" with an extra zero appended.
1000 * "outlen" is in words.
1001 */
1002 void
1003MultiByteToWideChar_alloc(UINT cp, DWORD flags,
1004 LPCSTR in, int inlen,
1005 LPWSTR *out, int *outlen)
1006{
1007 *outlen = MultiByteToWideChar(cp, flags, in, inlen, 0, 0);
1008 /* Add one one word to avoid a zero-length alloc(). */
1009 *out = (LPWSTR)alloc(sizeof(WCHAR) * (*outlen + 1));
1010 if (*out != NULL)
1011 {
1012 MultiByteToWideChar(cp, flags, in, inlen, *out, *outlen);
1013 (*out)[*outlen] = 0;
1014 }
1015}
1016
1017/*
1018 * Call WideCharToMultiByte() and allocate memory for the result.
1019 * Returns the result in "*out[*outlen]" with an extra NUL appended.
1020 */
1021 void
1022WideCharToMultiByte_alloc(UINT cp, DWORD flags,
1023 LPCWSTR in, int inlen,
1024 LPSTR *out, int *outlen,
1025 LPCSTR def, LPBOOL useddef)
1026{
1027 *outlen = WideCharToMultiByte(cp, flags, in, inlen, NULL, 0, def, useddef);
1028 /* Add one one byte to avoid a zero-length alloc(). */
1029 *out = alloc((unsigned)*outlen + 1);
1030 if (*out != NULL)
1031 {
1032 WideCharToMultiByte(cp, flags, in, inlen, *out, *outlen, def, useddef);
1033 (*out)[*outlen] = 0;
1034 }
1035}
1036
1037#endif /* FEAT_MBYTE */
1038
1039#ifdef FEAT_CLIPBOARD
1040/*
1041 * Clipboard stuff, for cutting and pasting text to other windows.
1042 */
1043
1044/* Type used for the clipboard type of Vim's data. */
1045typedef struct
1046{
1047 int type; /* MCHAR, MBLOCK or MLINE */
1048 int txtlen; /* length of CF_TEXT in bytes */
1049 int ucslen; /* length of CF_UNICODETEXT in words */
1050 int rawlen; /* length of clip_star.format_raw, including encoding,
1051 excluding terminating NUL */
1052} VimClipType_t;
1053
1054/*
1055 * Make vim the owner of the current selection. Return OK upon success.
1056 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001057/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 int
1059clip_mch_own_selection(VimClipboard *cbd)
1060{
1061 /*
1062 * Never actually own the clipboard. If another application sets the
1063 * clipboard, we don't want to think that we still own it.
1064 */
1065 return FAIL;
1066}
1067
1068/*
1069 * Make vim NOT the owner of the current selection.
1070 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001071/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 void
1073clip_mch_lose_selection(VimClipboard *cbd)
1074{
1075 /* Nothing needs to be done here */
1076}
1077
1078/*
1079 * Copy "str[*size]" into allocated memory, changing CR-NL to NL.
1080 * Return the allocated result and the size in "*size".
1081 * Returns NULL when out of memory.
1082 */
1083 static char_u *
1084crnl_to_nl(const char_u *str, int *size)
1085{
1086 int pos = 0;
1087 int str_len = *size;
1088 char_u *ret;
1089 char_u *retp;
1090
1091 /* Avoid allocating zero bytes, it generates an error message. */
1092 ret = lalloc((long_u)(str_len == 0 ? 1 : str_len), TRUE);
1093 if (ret != NULL)
1094 {
1095 retp = ret;
1096 for (pos = 0; pos < str_len; ++pos)
1097 {
1098 if (str[pos] == '\r' && str[pos + 1] == '\n')
1099 {
1100 ++pos;
1101 --(*size);
1102 }
1103 *retp++ = str[pos];
1104 }
1105 }
1106
1107 return ret;
1108}
1109
1110#if defined(FEAT_MBYTE) || defined(PROTO)
1111/*
1112 * Note: the following two functions are only guaranteed to work when using
1113 * valid MS-Windows codepages or when iconv() is available.
1114 */
1115
1116/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001117 * Convert "str" from 'encoding' to UTF-16.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 * Input in "str" with length "*lenp". When "lenp" is NULL, use strlen().
1119 * Output is returned as an allocated string. "*lenp" is set to the length of
1120 * the result. A trailing NUL is always added.
1121 * Returns NULL when out of memory.
1122 */
1123 short_u *
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001124enc_to_utf16(char_u *str, int *lenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125{
1126 vimconv_T conv;
1127 WCHAR *ret;
1128 char_u *allocbuf = NULL;
1129 int len_loc;
1130 int length;
1131
1132 if (lenp == NULL)
1133 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001134 len_loc = (int)STRLEN(str) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 lenp = &len_loc;
1136 }
1137
1138 if (enc_codepage > 0)
1139 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001140 /* We can do any CP### -> UTF-16 in one pass, and we can do it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 * without iconv() (convert_* may need iconv). */
1142 MultiByteToWideChar_alloc(enc_codepage, 0, str, *lenp, &ret, &length);
1143 }
1144 else
1145 {
1146 /* Use "latin1" by default, we might be called before we have p_enc
1147 * set up. Convert to utf-8 first, works better with iconv(). Does
1148 * nothing if 'encoding' is "utf-8". */
1149 conv.vc_type = CONV_NONE;
1150 if (convert_setup(&conv, p_enc ? p_enc : (char_u *)"latin1",
1151 (char_u *)"utf-8") == FAIL)
1152 return NULL;
1153 if (conv.vc_type != CONV_NONE)
1154 {
1155 str = allocbuf = string_convert(&conv, str, lenp);
1156 if (str == NULL)
1157 return NULL;
1158 }
1159 convert_setup(&conv, NULL, NULL);
1160
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001161 length = utf8_to_utf16(str, *lenp, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 ret = (WCHAR *)alloc((unsigned)((length + 1) * sizeof(WCHAR)));
1163 if (ret != NULL)
1164 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001165 utf8_to_utf16(str, *lenp, (short_u *)ret, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 ret[length] = 0;
1167 }
1168
1169 vim_free(allocbuf);
1170 }
1171
1172 *lenp = length;
1173 return (short_u *)ret;
1174}
1175
1176/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001177 * Convert an UTF-16 string to 'encoding'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 * Input in "str" with length (counted in wide characters) "*lenp". When
1179 * "lenp" is NULL, use wcslen().
1180 * Output is returned as an allocated string. If "*lenp" is not NULL it is
1181 * set to the length of the result.
1182 * Returns NULL when out of memory.
1183 */
1184 char_u *
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001185utf16_to_enc(short_u *str, int *lenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186{
1187 vimconv_T conv;
1188 char_u *utf8_str = NULL, *enc_str = NULL;
1189 int len_loc;
1190
1191 if (lenp == NULL)
1192 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001193 len_loc = (int)wcslen(str) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 lenp = &len_loc;
1195 }
1196
1197 if (enc_codepage > 0)
1198 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001199 /* We can do any UTF-16 -> CP### in one pass. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 int length;
1201
1202 WideCharToMultiByte_alloc(enc_codepage, 0, str, *lenp,
1203 (LPSTR *)&enc_str, &length, 0, 0);
1204 *lenp = length;
1205 return enc_str;
1206 }
1207
1208 /* Avoid allocating zero bytes, it generates an error message. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001209 utf8_str = alloc(utf16_to_utf8(str, *lenp == 0 ? 1 : *lenp, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 if (utf8_str != NULL)
1211 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001212 *lenp = utf16_to_utf8(str, *lenp, utf8_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213
1214 /* We might be called before we have p_enc set up. */
1215 conv.vc_type = CONV_NONE;
1216 convert_setup(&conv, (char_u *)"utf-8",
1217 p_enc? p_enc: (char_u *)"latin1");
1218 if (conv.vc_type == CONV_NONE)
1219 {
1220 /* p_enc is utf-8, so we're done. */
1221 enc_str = utf8_str;
1222 }
1223 else
1224 {
1225 enc_str = string_convert(&conv, utf8_str, lenp);
1226 vim_free(utf8_str);
1227 }
1228
1229 convert_setup(&conv, NULL, NULL);
1230 }
1231
1232 return enc_str;
1233}
1234#endif /* FEAT_MBYTE */
1235
1236/*
Bram Moolenaar282937b2009-01-22 20:50:10 +00001237 * Wait for another process to Close the Clipboard.
1238 * Returns TRUE for success.
1239 */
Bram Moolenaard30f9d92009-05-14 20:01:05 +00001240 static int
1241vim_open_clipboard(void)
Bram Moolenaar282937b2009-01-22 20:50:10 +00001242{
1243 int delay = 10;
1244
1245 while (!OpenClipboard(NULL))
1246 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001247 if (delay > 500)
1248 return FALSE; /* waited too long, give up */
1249 Sleep(delay);
1250 delay *= 2; /* wait for 10, 20, 40, 80, etc. msec */
Bram Moolenaar282937b2009-01-22 20:50:10 +00001251 }
1252 return TRUE;
1253}
1254
1255/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 * Get the current selection and put it in the clipboard register.
1257 *
1258 * NOTE: Must use GlobalLock/Unlock here to ensure Win32s compatibility.
1259 * On NT/W95 the clipboard data is a fixed global memory object and
1260 * so its handle = its pointer.
1261 * On Win32s, however, co-operation with the Win16 system means that
1262 * the clipboard data is moveable and its handle is not a pointer at all,
1263 * so we can't just cast the return value of GetClipboardData to (char_u*).
1264 * <VN>
1265 */
1266 void
1267clip_mch_request_selection(VimClipboard *cbd)
1268{
1269 VimClipType_t metadata = { -1, -1, -1, -1 };
1270 HGLOBAL hMem = NULL;
1271 char_u *str = NULL;
1272#if defined(FEAT_MBYTE) && defined(WIN3264)
1273 char_u *to_free = NULL;
1274#endif
1275#ifdef FEAT_MBYTE
1276 HGLOBAL rawh = NULL;
1277#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 int str_size = 0;
1279 int maxlen;
1280 size_t n;
1281
1282 /*
1283 * Don't pass GetActiveWindow() as an argument to OpenClipboard() because
1284 * then we can't paste back into the same window for some reason - webb.
1285 */
Bram Moolenaar282937b2009-01-22 20:50:10 +00001286 if (!vim_open_clipboard())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 return;
1288
1289 /* Check for vim's own clipboard format first. This only gets the type of
1290 * the data, still need to use CF_UNICODETEXT or CF_TEXT for the text. */
1291 if (IsClipboardFormatAvailable(cbd->format))
1292 {
1293 VimClipType_t *meta_p;
1294 HGLOBAL meta_h;
1295
1296 /* We have metadata on the clipboard; try to get it. */
1297 if ((meta_h = GetClipboardData(cbd->format)) != NULL
1298 && (meta_p = (VimClipType_t *)GlobalLock(meta_h)) != NULL)
1299 {
1300 /* The size of "VimClipType_t" changed, "rawlen" was added later.
1301 * Only copy what is available for backwards compatibility. */
1302 n = sizeof(VimClipType_t);
1303 if (GlobalSize(meta_h) < n)
1304 n = GlobalSize(meta_h);
1305 memcpy(&metadata, meta_p, n);
1306 GlobalUnlock(meta_h);
1307 }
1308 }
1309
1310#ifdef FEAT_MBYTE
1311 /* Check for Vim's raw clipboard format first. This is used without
1312 * conversion, but only if 'encoding' matches. */
1313 if (IsClipboardFormatAvailable(cbd->format_raw)
1314 && metadata.rawlen > (int)STRLEN(p_enc))
1315 {
1316 /* We have raw data on the clipboard; try to get it. */
1317 if ((rawh = GetClipboardData(cbd->format_raw)) != NULL)
1318 {
1319 char_u *rawp;
1320
1321 rawp = (char_u *)GlobalLock(rawh);
1322 if (rawp != NULL && STRCMP(p_enc, rawp) == 0)
1323 {
1324 n = STRLEN(p_enc) + 1;
1325 str = rawp + n;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001326 str_size = (int)(metadata.rawlen - n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 }
1328 else
1329 {
1330 GlobalUnlock(rawh);
1331 rawh = NULL;
1332 }
1333 }
1334 }
1335 if (str == NULL)
1336 {
1337#endif
1338
1339#if defined(FEAT_MBYTE) && defined(WIN3264)
1340 /* Try to get the clipboard in Unicode if it's not an empty string. */
1341 if (IsClipboardFormatAvailable(CF_UNICODETEXT) && metadata.ucslen != 0)
1342 {
1343 HGLOBAL hMemW;
1344
1345 if ((hMemW = GetClipboardData(CF_UNICODETEXT)) != NULL)
1346 {
1347 WCHAR *hMemWstr = (WCHAR *)GlobalLock(hMemW);
1348
1349 /* Use the length of our metadata if possible, but limit it to the
1350 * GlobalSize() for safety. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001351 maxlen = (int)(GlobalSize(hMemW) / sizeof(WCHAR));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 if (metadata.ucslen >= 0)
1353 {
1354 if (metadata.ucslen > maxlen)
1355 str_size = maxlen;
1356 else
1357 str_size = metadata.ucslen;
1358 }
1359 else
1360 {
1361 for (str_size = 0; str_size < maxlen; ++str_size)
1362 if (hMemWstr[str_size] == NUL)
1363 break;
1364 }
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001365 to_free = str = utf16_to_enc((short_u *)hMemWstr, &str_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 GlobalUnlock(hMemW);
1367 }
1368 }
1369 else
1370#endif
1371 /* Get the clipboard in the Active codepage. */
1372 if (IsClipboardFormatAvailable(CF_TEXT))
1373 {
1374 if ((hMem = GetClipboardData(CF_TEXT)) != NULL)
1375 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001376 str = (char_u *)GlobalLock(hMem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377
1378 /* The length is either what our metadata says or the strlen().
1379 * But limit it to the GlobalSize() for safety. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001380 maxlen = (int)GlobalSize(hMem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 if (metadata.txtlen >= 0)
1382 {
1383 if (metadata.txtlen > maxlen)
1384 str_size = maxlen;
1385 else
1386 str_size = metadata.txtlen;
1387 }
1388 else
1389 {
1390 for (str_size = 0; str_size < maxlen; ++str_size)
1391 if (str[str_size] == NUL)
1392 break;
1393 }
1394
Bram Moolenaar05159a02005-02-26 23:04:13 +00001395# if defined(FEAT_MBYTE) && defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 /* The text is in the active codepage. Convert to 'encoding',
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001397 * going through UTF-16. */
Bram Moolenaar05159a02005-02-26 23:04:13 +00001398 acp_to_enc(str, str_size, &to_free, &maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 if (to_free != NULL)
1400 {
1401 str_size = maxlen;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001402 str = to_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00001404# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 }
1406 }
1407#ifdef FEAT_MBYTE
1408 }
1409#endif
1410
1411 if (str != NULL && *str != NUL)
1412 {
1413 char_u *temp_clipboard;
1414
1415 /* If the type is not known guess it. */
1416 if (metadata.type == -1)
1417 metadata.type = (vim_strchr(str, '\n') == NULL) ? MCHAR : MLINE;
1418
1419 /* Translate <CR><NL> into <NL>. */
1420 temp_clipboard = crnl_to_nl(str, &str_size);
1421 if (temp_clipboard != NULL)
1422 {
1423 clip_yank_selection(metadata.type, temp_clipboard, str_size, cbd);
1424 vim_free(temp_clipboard);
1425 }
1426 }
1427
1428 /* unlock the global object */
1429 if (hMem != NULL)
1430 GlobalUnlock(hMem);
1431#ifdef FEAT_MBYTE
1432 if (rawh != NULL)
1433 GlobalUnlock(rawh);
1434#endif
1435 CloseClipboard();
1436#if defined(FEAT_MBYTE) && defined(WIN3264)
1437 vim_free(to_free);
1438#endif
1439}
1440
Bram Moolenaar05159a02005-02-26 23:04:13 +00001441#if (defined(FEAT_MBYTE) && defined(WIN3264)) || defined(PROTO)
1442/*
1443 * Convert from the active codepage to 'encoding'.
1444 * Input is "str[str_size]".
1445 * The result is in allocated memory: "out[outlen]". With terminating NUL.
1446 */
1447 void
1448acp_to_enc(str, str_size, out, outlen)
1449 char_u *str;
1450 int str_size;
1451 char_u **out;
1452 int *outlen;
1453
1454{
1455 LPWSTR widestr;
1456
1457 MultiByteToWideChar_alloc(GetACP(), 0, str, str_size, &widestr, outlen);
1458 if (widestr != NULL)
1459 {
Bram Moolenaar44ecf652005-03-07 23:09:59 +00001460 ++*outlen; /* Include the 0 after the string */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001461 *out = utf16_to_enc((short_u *)widestr, outlen);
Bram Moolenaar05159a02005-02-26 23:04:13 +00001462 vim_free(widestr);
1463 }
1464}
1465#endif
1466
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467/*
1468 * Send the current selection to the clipboard.
1469 */
1470 void
1471clip_mch_set_selection(VimClipboard *cbd)
1472{
1473 char_u *str = NULL;
1474 VimClipType_t metadata;
1475 long_u txtlen;
1476 HGLOBAL hMemRaw = NULL;
1477 HGLOBAL hMem = NULL;
1478 HGLOBAL hMemVim = NULL;
1479# if defined(FEAT_MBYTE) && defined(WIN3264)
1480 HGLOBAL hMemW = NULL;
1481# endif
1482
1483 /* If the '*' register isn't already filled in, fill it in now */
1484 cbd->owned = TRUE;
1485 clip_get_selection(cbd);
1486 cbd->owned = FALSE;
1487
1488 /* Get the text to be put on the clipboard, with CR-LF. */
1489 metadata.type = clip_convert_selection(&str, &txtlen, cbd);
1490 if (metadata.type < 0)
1491 return;
1492 metadata.txtlen = (int)txtlen;
1493 metadata.ucslen = 0;
1494 metadata.rawlen = 0;
1495
1496#ifdef FEAT_MBYTE
1497 /* Always set the raw bytes: 'encoding', NUL and the text. This is used
1498 * when copy/paste from/to Vim with the same 'encoding', so that illegal
1499 * bytes can also be copied and no conversion is needed. */
1500 {
1501 LPSTR lpszMemRaw;
1502
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001503 metadata.rawlen = (int)(txtlen + STRLEN(p_enc) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 hMemRaw = (LPSTR)GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE,
1505 metadata.rawlen + 1);
1506 lpszMemRaw = (LPSTR)GlobalLock(hMemRaw);
1507 if (lpszMemRaw != NULL)
1508 {
1509 STRCPY(lpszMemRaw, p_enc);
1510 memcpy(lpszMemRaw + STRLEN(p_enc) + 1, str, txtlen + 1);
1511 GlobalUnlock(hMemRaw);
1512 }
1513 else
1514 metadata.rawlen = 0;
1515 }
1516#endif
1517
1518# if defined(FEAT_MBYTE) && defined(WIN3264)
1519 {
1520 WCHAR *out;
1521 int len = metadata.txtlen;
1522
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001523 /* Convert the text to UTF-16. This is put on the clipboard as
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 * CF_UNICODETEXT. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001525 out = (WCHAR *)enc_to_utf16(str, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 if (out != NULL)
1527 {
1528 WCHAR *lpszMemW;
1529
1530 /* Convert the text for CF_TEXT to Active codepage. Otherwise it's
1531 * p_enc, which has no relation to the Active codepage. */
1532 metadata.txtlen = WideCharToMultiByte(GetACP(), 0, out, len,
1533 NULL, 0, 0, 0);
1534 vim_free(str);
1535 str = (char_u *)alloc((unsigned)(metadata.txtlen == 0 ? 1
1536 : metadata.txtlen));
1537 if (str == NULL)
1538 {
1539 vim_free(out);
1540 return; /* out of memory */
1541 }
1542 WideCharToMultiByte(GetACP(), 0, out, len,
1543 str, metadata.txtlen, 0, 0);
1544
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001545 /* Allocate memory for the UTF-16 text, add one NUL word to
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 * terminate the string. */
1547 hMemW = (LPSTR)GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE,
1548 (len + 1) * sizeof(WCHAR));
1549 lpszMemW = (WCHAR *)GlobalLock(hMemW);
1550 if (lpszMemW != NULL)
1551 {
1552 memcpy(lpszMemW, out, len * sizeof(WCHAR));
1553 lpszMemW[len] = NUL;
1554 GlobalUnlock(hMemW);
1555 }
1556 vim_free(out);
1557 metadata.ucslen = len;
1558 }
1559 }
1560# endif
1561
1562 /* Allocate memory for the text, add one NUL byte to terminate the string.
1563 */
1564 hMem = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, metadata.txtlen + 1);
1565 {
1566 LPSTR lpszMem = (LPSTR)GlobalLock(hMem);
1567
1568 if (lpszMem)
1569 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00001570 vim_strncpy(lpszMem, str, metadata.txtlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 GlobalUnlock(hMem);
1572 }
1573 }
1574
1575 /* Set up metadata: */
1576 {
1577 VimClipType_t *lpszMemVim = NULL;
1578
1579 hMemVim = GlobalAlloc(GMEM_MOVEABLE|GMEM_DDESHARE,
1580 sizeof(VimClipType_t));
1581 lpszMemVim = (VimClipType_t *)GlobalLock(hMemVim);
1582 memcpy(lpszMemVim, &metadata, sizeof(metadata));
1583 GlobalUnlock(hMemVim);
1584 }
1585
1586 /*
1587 * Open the clipboard, clear it and put our text on it.
1588 * Always set our Vim format. Put Unicode and plain text on it.
1589 *
1590 * Don't pass GetActiveWindow() as an argument to OpenClipboard()
1591 * because then we can't paste back into the same window for some
1592 * reason - webb.
1593 */
Bram Moolenaar282937b2009-01-22 20:50:10 +00001594 if (vim_open_clipboard())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 {
1596 if (EmptyClipboard())
1597 {
1598 SetClipboardData(cbd->format, hMemVim);
1599 hMemVim = 0;
1600# if defined(FEAT_MBYTE) && defined(WIN3264)
1601 if (hMemW != NULL)
1602 {
1603 if (SetClipboardData(CF_UNICODETEXT, hMemW) != NULL)
1604 hMemW = NULL;
1605 }
1606# endif
1607 /* Always use CF_TEXT. On Win98 Notepad won't obtain the
1608 * CF_UNICODETEXT text, only CF_TEXT. */
1609 SetClipboardData(CF_TEXT, hMem);
1610 hMem = 0;
1611 }
1612 CloseClipboard();
1613 }
1614
1615 vim_free(str);
1616 /* Free any allocations we didn't give to the clipboard: */
1617 if (hMemRaw)
1618 GlobalFree(hMemRaw);
1619 if (hMem)
1620 GlobalFree(hMem);
1621# if defined(FEAT_MBYTE) && defined(WIN3264)
1622 if (hMemW)
1623 GlobalFree(hMemW);
1624# endif
1625 if (hMemVim)
1626 GlobalFree(hMemVim);
1627}
1628
1629#endif /* FEAT_CLIPBOARD */
1630
1631
1632/*
1633 * Debugging helper: expose the MCH_WRITE_DUMP stuff to other modules
1634 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001635/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636 void
1637DumpPutS(
1638 const char *psz)
1639{
1640# ifdef MCH_WRITE_DUMP
1641 if (fdDump)
1642 {
1643 fputs(psz, fdDump);
1644 if (psz[strlen(psz) - 1] != '\n')
1645 fputc('\n', fdDump);
1646 fflush(fdDump);
1647 }
1648# endif
1649}
1650
1651#ifdef _DEBUG
1652
1653void __cdecl
1654Trace(
1655 char *pszFormat,
1656 ...)
1657{
1658 CHAR szBuff[2048];
1659 va_list args;
1660
1661 va_start(args, pszFormat);
1662 vsprintf(szBuff, pszFormat, args);
1663 va_end(args);
1664
1665 OutputDebugString(szBuff);
1666}
1667
1668#endif //_DEBUG
1669
Bram Moolenaar843ee412004-06-30 16:16:41 +00001670#if !defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671# if defined(FEAT_TITLE) && defined(WIN3264)
1672extern HWND g_hWnd; /* This is in os_win32.c. */
1673# endif
1674
1675/*
1676 * Showing the printer dialog is tricky since we have no GUI
1677 * window to parent it. The following routines are needed to
1678 * get the window parenting and Z-order to work properly.
1679 */
1680 static void
1681GetConsoleHwnd(void)
1682{
1683# define MY_BUFSIZE 1024 // Buffer size for console window titles.
1684
1685 char pszNewWindowTitle[MY_BUFSIZE]; // Contains fabricated WindowTitle.
1686 char pszOldWindowTitle[MY_BUFSIZE]; // Contains original WindowTitle.
1687
1688 /* Skip if it's already set. */
1689 if (s_hwnd != 0)
1690 return;
1691
1692# if defined(FEAT_TITLE) && defined(WIN3264)
1693 /* Window handle may have been found by init code (Windows NT only) */
1694 if (g_hWnd != 0)
1695 {
1696 s_hwnd = g_hWnd;
1697 return;
1698 }
1699# endif
1700
1701 GetConsoleTitle(pszOldWindowTitle, MY_BUFSIZE);
1702
1703 wsprintf(pszNewWindowTitle, "%s/%d/%d",
1704 pszOldWindowTitle,
1705 GetTickCount(),
1706 GetCurrentProcessId());
1707 SetConsoleTitle(pszNewWindowTitle);
1708 Sleep(40);
1709 s_hwnd = FindWindow(NULL, pszNewWindowTitle);
1710
1711 SetConsoleTitle(pszOldWindowTitle);
1712}
Bram Moolenaar843ee412004-06-30 16:16:41 +00001713
1714/*
1715 * Console implementation of ":winpos".
1716 */
1717 int
1718mch_get_winpos(int *x, int *y)
1719{
1720 RECT rect;
1721
1722 GetConsoleHwnd();
1723 GetWindowRect(s_hwnd, &rect);
1724 *x = rect.left;
1725 *y = rect.top;
1726 return OK;
1727}
1728
1729/*
1730 * Console implementation of ":winpos x y".
1731 */
1732 void
1733mch_set_winpos(int x, int y)
1734{
1735 GetConsoleHwnd();
1736 SetWindowPos(s_hwnd, NULL, x, y, 0, 0,
1737 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
1738}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739#endif
1740
1741#if (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) || defined(PROTO)
1742
1743# ifdef WIN16
1744# define TEXT(a) a
1745# endif
1746/*=================================================================
1747 * Win32 printer stuff
1748 */
1749
1750static HFONT prt_font_handles[2][2][2];
1751static PRINTDLG prt_dlg;
1752static const int boldface[2] = {FW_REGULAR, FW_BOLD};
1753static TEXTMETRIC prt_tm;
1754static int prt_line_height;
1755static int prt_number_width;
1756static int prt_left_margin;
1757static int prt_right_margin;
1758static int prt_top_margin;
1759static char_u szAppName[] = TEXT("VIM");
1760static HWND hDlgPrint;
1761static int *bUserAbort = NULL;
1762static char_u *prt_name = NULL;
1763
1764/* Defines which are also in vim.rc. */
1765#define IDC_BOX1 400
1766#define IDC_PRINTTEXT1 401
1767#define IDC_PRINTTEXT2 402
1768#define IDC_PROGRESS 403
1769
1770/*
1771 * Convert BGR to RGB for Windows GDI calls
1772 */
1773 static COLORREF
1774swap_me(COLORREF colorref)
1775{
1776 int temp;
1777 char *ptr = (char *)&colorref;
1778
1779 temp = *(ptr);
1780 *(ptr ) = *(ptr + 2);
1781 *(ptr + 2) = temp;
1782 return colorref;
1783}
1784
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001785/* Attempt to make this work for old and new compilers */
Bram Moolenaar442b4222010-05-24 21:34:22 +02001786#if !defined(_MSC_VER) || (_MSC_VER < 1300) || !defined(INT_PTR)
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001787# define PDP_RETVAL BOOL
1788#else
1789# define PDP_RETVAL INT_PTR
1790#endif
1791
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001792/*ARGSUSED*/
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001793 static PDP_RETVAL CALLBACK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794PrintDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
1795{
1796#ifdef FEAT_GETTEXT
1797 NONCLIENTMETRICS nm;
1798 static HFONT hfont;
1799#endif
1800
1801 switch (message)
1802 {
1803 case WM_INITDIALOG:
1804#ifdef FEAT_GETTEXT
1805 nm.cbSize = sizeof(NONCLIENTMETRICS);
1806 if (SystemParametersInfo(
1807 SPI_GETNONCLIENTMETRICS,
1808 sizeof(NONCLIENTMETRICS),
1809 &nm,
1810 0))
1811 {
1812 char buff[MAX_PATH];
1813 int i;
1814
1815 /* Translate the dialog texts */
1816 hfont = CreateFontIndirect(&nm.lfMessageFont);
1817 for (i = IDC_PRINTTEXT1; i <= IDC_PROGRESS; i++)
1818 {
1819 SendDlgItemMessage(hDlg, i, WM_SETFONT, (WPARAM)hfont, 1);
1820 if (GetDlgItemText(hDlg,i, buff, sizeof(buff)))
1821 SetDlgItemText(hDlg,i, _(buff));
1822 }
1823 SendDlgItemMessage(hDlg, IDCANCEL,
1824 WM_SETFONT, (WPARAM)hfont, 1);
1825 if (GetDlgItemText(hDlg,IDCANCEL, buff, sizeof(buff)))
1826 SetDlgItemText(hDlg,IDCANCEL, _(buff));
1827 }
1828#endif
1829 SetWindowText(hDlg, szAppName);
1830 if (prt_name != NULL)
1831 {
1832 SetDlgItemText(hDlg, IDC_PRINTTEXT2, (LPSTR)prt_name);
1833 vim_free(prt_name);
1834 prt_name = NULL;
1835 }
1836 EnableMenuItem(GetSystemMenu(hDlg, FALSE), SC_CLOSE, MF_GRAYED);
1837#ifndef FEAT_GUI
1838 BringWindowToTop(s_hwnd);
1839#endif
1840 return TRUE;
1841
1842 case WM_COMMAND:
1843 *bUserAbort = TRUE;
1844 EnableWindow(GetParent(hDlg), TRUE);
1845 DestroyWindow(hDlg);
1846 hDlgPrint = NULL;
1847#ifdef FEAT_GETTEXT
1848 DeleteObject(hfont);
1849#endif
1850 return TRUE;
1851 }
1852 return FALSE;
1853}
1854
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001855/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 static BOOL CALLBACK
1857AbortProc(HDC hdcPrn, int iCode)
1858{
1859 MSG msg;
1860
1861 while (!*bUserAbort && PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
1862 {
1863 if (!hDlgPrint || !IsDialogMessage(hDlgPrint, &msg))
1864 {
1865 TranslateMessage(&msg);
1866 DispatchMessage(&msg);
1867 }
1868 }
1869 return !*bUserAbort;
1870}
1871
1872#ifndef FEAT_GUI
1873
1874 static UINT CALLBACK
1875PrintHookProc(
1876 HWND hDlg, // handle to dialog box
1877 UINT uiMsg, // message identifier
1878 WPARAM wParam, // message parameter
1879 LPARAM lParam // message parameter
1880 )
1881{
1882 HWND hwndOwner;
1883 RECT rc, rcDlg, rcOwner;
1884 PRINTDLG *pPD;
1885
1886 if (uiMsg == WM_INITDIALOG)
1887 {
1888 // Get the owner window and dialog box rectangles.
1889 if ((hwndOwner = GetParent(hDlg)) == NULL)
1890 hwndOwner = GetDesktopWindow();
1891
1892 GetWindowRect(hwndOwner, &rcOwner);
1893 GetWindowRect(hDlg, &rcDlg);
1894 CopyRect(&rc, &rcOwner);
1895
1896 // Offset the owner and dialog box rectangles so that
1897 // right and bottom values represent the width and
1898 // height, and then offset the owner again to discard
1899 // space taken up by the dialog box.
1900
1901 OffsetRect(&rcDlg, -rcDlg.left, -rcDlg.top);
1902 OffsetRect(&rc, -rc.left, -rc.top);
1903 OffsetRect(&rc, -rcDlg.right, -rcDlg.bottom);
1904
1905 // The new position is the sum of half the remaining
1906 // space and the owner's original position.
1907
1908 SetWindowPos(hDlg,
1909 HWND_TOP,
1910 rcOwner.left + (rc.right / 2),
1911 rcOwner.top + (rc.bottom / 2),
1912 0, 0, // ignores size arguments
1913 SWP_NOSIZE);
1914
1915 /* tackle the printdlg copiesctrl problem */
1916 pPD = (PRINTDLG *)lParam;
1917 pPD->nCopies = (WORD)pPD->lCustData;
1918 SetDlgItemInt( hDlg, edt3, pPD->nCopies, FALSE );
1919 /* Bring the window to top */
1920 BringWindowToTop(GetParent(hDlg));
1921 SetForegroundWindow(hDlg);
1922 }
1923
1924 return FALSE;
1925}
1926#endif
1927
1928 void
1929mch_print_cleanup(void)
1930{
1931 int pifItalic;
1932 int pifBold;
1933 int pifUnderline;
1934
1935 for (pifBold = 0; pifBold <= 1; pifBold++)
1936 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1937 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1938 DeleteObject(prt_font_handles[pifBold][pifItalic][pifUnderline]);
1939
1940 if (prt_dlg.hDC != NULL)
1941 DeleteDC(prt_dlg.hDC);
1942 if (!*bUserAbort)
1943 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1944}
1945
1946 static int
1947to_device_units(int idx, int dpi, int physsize, int offset, int def_number)
1948{
1949 int ret = 0;
1950 int u;
1951 int nr;
1952
1953 u = prt_get_unit(idx);
1954 if (u == PRT_UNIT_NONE)
1955 {
1956 u = PRT_UNIT_PERC;
1957 nr = def_number;
1958 }
1959 else
1960 nr = printer_opts[idx].number;
1961
1962 switch (u)
1963 {
1964 case PRT_UNIT_PERC:
1965 ret = (physsize * nr) / 100;
1966 break;
1967 case PRT_UNIT_INCH:
1968 ret = (nr * dpi);
1969 break;
1970 case PRT_UNIT_MM:
1971 ret = (nr * 10 * dpi) / 254;
1972 break;
1973 case PRT_UNIT_POINT:
1974 ret = (nr * 10 * dpi) / 720;
1975 break;
1976 }
1977
1978 if (ret < offset)
1979 return 0;
1980 else
1981 return ret - offset;
1982}
1983
1984 static int
1985prt_get_cpl(void)
1986{
1987 int hr;
1988 int phyw;
1989 int dvoff;
1990 int rev_offset;
1991 int dpi;
1992#ifdef WIN16
1993 POINT pagesize;
1994#endif
1995
1996 GetTextMetrics(prt_dlg.hDC, &prt_tm);
1997 prt_line_height = prt_tm.tmHeight + prt_tm.tmExternalLeading;
1998
1999 hr = GetDeviceCaps(prt_dlg.hDC, HORZRES);
2000#ifdef WIN16
2001 Escape(prt_dlg.hDC, GETPHYSPAGESIZE, NULL, NULL, &pagesize);
2002 phyw = pagesize.x;
2003 Escape(prt_dlg.hDC, GETPRINTINGOFFSET, NULL, NULL, &pagesize);
2004 dvoff = pagesize.x;
2005#else
2006 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALWIDTH);
2007 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETX);
2008#endif
2009 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSX);
2010
2011 rev_offset = phyw - (dvoff + hr);
2012
2013 prt_left_margin = to_device_units(OPT_PRINT_LEFT, dpi, phyw, dvoff, 10);
2014 if (prt_use_number())
2015 {
2016 prt_number_width = PRINT_NUMBER_WIDTH * prt_tm.tmAveCharWidth;
2017 prt_left_margin += prt_number_width;
2018 }
2019 else
2020 prt_number_width = 0;
2021
2022 prt_right_margin = hr - to_device_units(OPT_PRINT_RIGHT, dpi, phyw,
2023 rev_offset, 5);
2024
2025 return (prt_right_margin - prt_left_margin) / prt_tm.tmAveCharWidth;
2026}
2027
2028 static int
2029prt_get_lpp(void)
2030{
2031 int vr;
2032 int phyw;
2033 int dvoff;
2034 int rev_offset;
2035 int bottom_margin;
2036 int dpi;
2037#ifdef WIN16
2038 POINT pagesize;
2039#endif
2040
2041 vr = GetDeviceCaps(prt_dlg.hDC, VERTRES);
2042#ifdef WIN16
2043 Escape(prt_dlg.hDC, GETPHYSPAGESIZE, NULL, NULL, &pagesize);
2044 phyw = pagesize.y;
2045 Escape(prt_dlg.hDC, GETPRINTINGOFFSET, NULL, NULL, &pagesize);
2046 dvoff = pagesize.y;
2047#else
2048 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALHEIGHT);
2049 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETY);
2050#endif
2051 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSY);
2052
2053 rev_offset = phyw - (dvoff + vr);
2054
2055 prt_top_margin = to_device_units(OPT_PRINT_TOP, dpi, phyw, dvoff, 5);
2056
2057 /* adjust top margin if there is a header */
2058 prt_top_margin += prt_line_height * prt_header_height();
2059
2060 bottom_margin = vr - to_device_units(OPT_PRINT_BOT, dpi, phyw,
2061 rev_offset, 5);
2062
2063 return (bottom_margin - prt_top_margin) / prt_line_height;
2064}
2065
2066 int
2067mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit)
2068{
2069 static HGLOBAL stored_dm = NULL;
2070 static HGLOBAL stored_devn = NULL;
2071 static int stored_nCopies = 1;
2072 static int stored_nFlags = 0;
2073
2074 LOGFONT fLogFont;
2075 int pifItalic;
2076 int pifBold;
2077 int pifUnderline;
2078
2079 DEVMODE *mem;
2080 DEVNAMES *devname;
2081 int i;
2082
2083 bUserAbort = &(psettings->user_abort);
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02002084 vim_memset(&prt_dlg, 0, sizeof(PRINTDLG));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 prt_dlg.lStructSize = sizeof(PRINTDLG);
2086#ifndef FEAT_GUI
2087 GetConsoleHwnd(); /* get value of s_hwnd */
2088#endif
2089 prt_dlg.hwndOwner = s_hwnd;
2090 prt_dlg.Flags = PD_NOPAGENUMS | PD_NOSELECTION | PD_RETURNDC;
2091 if (!forceit)
2092 {
2093 prt_dlg.hDevMode = stored_dm;
2094 prt_dlg.hDevNames = stored_devn;
2095 prt_dlg.lCustData = stored_nCopies; // work around bug in print dialog
2096#ifndef FEAT_GUI
2097 /*
2098 * Use hook to prevent console window being sent to back
2099 */
2100 prt_dlg.lpfnPrintHook = PrintHookProc;
2101 prt_dlg.Flags |= PD_ENABLEPRINTHOOK;
2102#endif
2103 prt_dlg.Flags |= stored_nFlags;
2104 }
2105
2106 /*
2107 * If bang present, return default printer setup with no dialog
2108 * never show dialog if we are running over telnet
2109 */
2110 if (forceit
2111#ifndef FEAT_GUI
2112 || !term_console
2113#endif
2114 )
2115 {
2116 prt_dlg.Flags |= PD_RETURNDEFAULT;
2117#ifdef WIN3264
2118 /*
2119 * MSDN suggests setting the first parameter to WINSPOOL for
2120 * NT, but NULL appears to work just as well.
2121 */
2122 if (*p_pdev != NUL)
2123 prt_dlg.hDC = CreateDC(NULL, p_pdev, NULL, NULL);
2124 else
2125#endif
2126 {
2127 prt_dlg.Flags |= PD_RETURNDEFAULT;
2128 if (PrintDlg(&prt_dlg) == 0)
2129 goto init_fail_dlg;
2130 }
2131 }
2132 else if (PrintDlg(&prt_dlg) == 0)
2133 goto init_fail_dlg;
2134 else
2135 {
2136 /*
2137 * keep the previous driver context
2138 */
2139 stored_dm = prt_dlg.hDevMode;
2140 stored_devn = prt_dlg.hDevNames;
2141 stored_nFlags = prt_dlg.Flags;
2142 stored_nCopies = prt_dlg.nCopies;
2143 }
2144
2145 if (prt_dlg.hDC == NULL)
2146 {
2147 EMSG(_("E237: Printer selection failed"));
2148 mch_print_cleanup();
2149 return FALSE;
2150 }
2151
2152 /* Not all printer drivers report the support of color (or grey) in the
2153 * same way. Let's set has_color if there appears to be some way to print
2154 * more than B&W. */
2155 i = GetDeviceCaps(prt_dlg.hDC, NUMCOLORS);
2156 psettings->has_color = (GetDeviceCaps(prt_dlg.hDC, BITSPIXEL) > 1
2157 || GetDeviceCaps(prt_dlg.hDC, PLANES) > 1
2158 || i > 2 || i == -1);
2159
2160 /* Ensure all font styles are baseline aligned */
2161 SetTextAlign(prt_dlg.hDC, TA_BASELINE|TA_LEFT);
2162
2163 /*
2164 * On some windows systems the nCopies parameter is not
2165 * passed back correctly. It must be retrieved from the
2166 * hDevMode struct.
2167 */
2168 mem = (DEVMODE *)GlobalLock(prt_dlg.hDevMode);
2169 if (mem != NULL)
2170 {
2171#ifdef WIN3264
2172 if (mem->dmCopies != 1)
2173 stored_nCopies = mem->dmCopies;
2174#endif
2175 if ((mem->dmFields & DM_DUPLEX) && (mem->dmDuplex & ~DMDUP_SIMPLEX))
2176 psettings->duplex = TRUE;
2177 if ((mem->dmFields & DM_COLOR) && (mem->dmColor & DMCOLOR_COLOR))
2178 psettings->has_color = TRUE;
2179 }
2180 GlobalUnlock(prt_dlg.hDevMode);
2181
2182 devname = (DEVNAMES *)GlobalLock(prt_dlg.hDevNames);
2183 if (devname != 0)
2184 {
2185 char_u *printer_name = (char_u *)devname + devname->wDeviceOffset;
2186 char_u *port_name = (char_u *)devname +devname->wOutputOffset;
2187 char_u *text = _("to %s on %s");
2188
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00002189 prt_name = alloc((unsigned)(STRLEN(printer_name) + STRLEN(port_name)
2190 + STRLEN(text)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 if (prt_name != NULL)
2192 wsprintf(prt_name, text, printer_name, port_name);
2193 }
2194 GlobalUnlock(prt_dlg.hDevNames);
2195
2196 /*
2197 * Initialise the font according to 'printfont'
2198 */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02002199 vim_memset(&fLogFont, 0, sizeof(fLogFont));
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002200 if (get_logfont(&fLogFont, p_pfn, prt_dlg.hDC, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 {
2202 EMSG2(_("E613: Unknown printer font: %s"), p_pfn);
2203 mch_print_cleanup();
2204 return FALSE;
2205 }
2206
2207 for (pifBold = 0; pifBold <= 1; pifBold++)
2208 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
2209 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
2210 {
2211 fLogFont.lfWeight = boldface[pifBold];
2212 fLogFont.lfItalic = pifItalic;
2213 fLogFont.lfUnderline = pifUnderline;
2214 prt_font_handles[pifBold][pifItalic][pifUnderline]
2215 = CreateFontIndirect(&fLogFont);
2216 }
2217
2218 SetBkMode(prt_dlg.hDC, OPAQUE);
2219 SelectObject(prt_dlg.hDC, prt_font_handles[0][0][0]);
2220
2221 /*
2222 * Fill in the settings struct
2223 */
2224 psettings->chars_per_line = prt_get_cpl();
2225 psettings->lines_per_page = prt_get_lpp();
2226 psettings->n_collated_copies = (prt_dlg.Flags & PD_COLLATE)
2227 ? prt_dlg.nCopies : 1;
2228 psettings->n_uncollated_copies = (prt_dlg.Flags & PD_COLLATE)
2229 ? 1 : prt_dlg.nCopies;
2230
2231 if (psettings->n_collated_copies == 0)
2232 psettings->n_collated_copies = 1;
2233
2234 if (psettings->n_uncollated_copies == 0)
2235 psettings->n_uncollated_copies = 1;
2236
2237 psettings->jobname = jobname;
2238
2239 return TRUE;
2240
2241init_fail_dlg:
2242 {
2243 DWORD err = CommDlgExtendedError();
2244
2245 if (err)
2246 {
2247#ifdef WIN16
2248 char buf[20];
2249
2250 sprintf(buf, "%ld", err);
2251 EMSG2(_("E238: Print error: %s"), buf);
2252#else
2253 char_u *buf;
2254
2255 /* I suspect FormatMessage() doesn't work for values returned by
2256 * CommDlgExtendedError(). What does? */
2257 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
2258 FORMAT_MESSAGE_FROM_SYSTEM |
2259 FORMAT_MESSAGE_IGNORE_INSERTS,
2260 NULL, err, 0, (LPTSTR)(&buf), 0, NULL);
2261 EMSG2(_("E238: Print error: %s"),
2262 buf == NULL ? (char_u *)_("Unknown") : buf);
2263 LocalFree((LPVOID)(buf));
2264#endif
2265 }
2266 else
2267 msg_clr_eos(); /* Maybe canceled */
2268
2269 mch_print_cleanup();
2270 return FALSE;
2271 }
2272}
2273
2274
2275 int
2276mch_print_begin(prt_settings_T *psettings)
2277{
2278 int ret;
2279 static DOCINFO di;
2280 char szBuffer[300];
2281
2282 hDlgPrint = CreateDialog(GetModuleHandle(NULL), TEXT("PrintDlgBox"),
2283 prt_dlg.hwndOwner, PrintDlgProc);
2284#ifdef WIN16
2285 Escape(prt_dlg.hDC, SETABORTPROC, 0, (LPSTR)AbortProc, NULL);
2286#else
2287 SetAbortProc(prt_dlg.hDC, AbortProc);
2288#endif
2289 wsprintf(szBuffer, _("Printing '%s'"), gettail(psettings->jobname));
2290 SetDlgItemText(hDlgPrint, IDC_PRINTTEXT1, (LPSTR)szBuffer);
2291
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02002292 vim_memset(&di, 0, sizeof(DOCINFO));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 di.cbSize = sizeof(DOCINFO);
2294 di.lpszDocName = psettings->jobname;
2295 ret = StartDoc(prt_dlg.hDC, &di);
2296
2297#ifdef FEAT_GUI
2298 /* Give focus back to main window (when using MDI). */
2299 SetFocus(s_hwnd);
2300#endif
2301
2302 return (ret > 0);
2303}
2304
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002305/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 void
2307mch_print_end(prt_settings_T *psettings)
2308{
2309 EndDoc(prt_dlg.hDC);
2310 if (!*bUserAbort)
2311 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
2312}
2313
2314 int
2315mch_print_end_page(void)
2316{
2317 return (EndPage(prt_dlg.hDC) > 0);
2318}
2319
2320 int
2321mch_print_begin_page(char_u *msg)
2322{
2323 if (msg != NULL)
2324 SetDlgItemText(hDlgPrint, IDC_PROGRESS, (LPSTR)msg);
2325 return (StartPage(prt_dlg.hDC) > 0);
2326}
2327
2328 int
2329mch_print_blank_page(void)
2330{
2331 return (mch_print_begin_page(NULL) ? (mch_print_end_page()) : FALSE);
2332}
2333
2334static int prt_pos_x = 0;
2335static int prt_pos_y = 0;
2336
2337 void
2338mch_print_start_line(margin, page_line)
2339 int margin;
2340 int page_line;
2341{
2342 if (margin)
2343 prt_pos_x = -prt_number_width;
2344 else
2345 prt_pos_x = 0;
2346 prt_pos_y = page_line * prt_line_height
2347 + prt_tm.tmAscent + prt_tm.tmExternalLeading;
2348}
2349
2350 int
2351mch_print_text_out(char_u *p, int len)
2352{
2353#ifdef FEAT_PROPORTIONAL_FONTS
2354 SIZE sz;
2355#endif
2356
2357 TextOut(prt_dlg.hDC, prt_pos_x + prt_left_margin,
2358 prt_pos_y + prt_top_margin, p, len);
2359#ifndef FEAT_PROPORTIONAL_FONTS
2360 prt_pos_x += len * prt_tm.tmAveCharWidth;
2361 return (prt_pos_x + prt_left_margin + prt_tm.tmAveCharWidth
2362 + prt_tm.tmOverhang > prt_right_margin);
2363#else
2364# ifdef WIN16
2365 GetTextExtentPoint(prt_dlg.hDC, p, len, &sz);
2366# else
2367 GetTextExtentPoint32(prt_dlg.hDC, p, len, &sz);
2368# endif
2369 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
2370 /* This is wrong when printing spaces for a TAB. */
2371 if (p[len] == NUL)
2372 return FALSE;
2373# ifdef WIN16
2374 GetTextExtentPoint(prt_dlg.hDC, p + len, 1, &sz);
2375# else
2376 GetTextExtentPoint32(prt_dlg.hDC, p + len, 1, &sz);
2377# endif
2378 return (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
2379#endif
2380}
2381
2382 void
2383mch_print_set_font(int iBold, int iItalic, int iUnderline)
2384{
2385 SelectObject(prt_dlg.hDC, prt_font_handles[iBold][iItalic][iUnderline]);
2386}
2387
2388 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00002389mch_print_set_bg(long_u bgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00002391 SetBkColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
2392 swap_me((COLORREF)bgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 /*
2394 * With a white background we can draw characters transparent, which is
2395 * good for italic characters that overlap to the next char cell.
2396 */
2397 if (bgcol == 0xffffffUL)
2398 SetBkMode(prt_dlg.hDC, TRANSPARENT);
2399 else
2400 SetBkMode(prt_dlg.hDC, OPAQUE);
2401}
2402
2403 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00002404mch_print_set_fg(long_u fgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00002406 SetTextColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
2407 swap_me((COLORREF)fgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408}
2409
2410#endif /*FEAT_PRINTER && !FEAT_POSTSCRIPT*/
2411
Bram Moolenaar58d98232005-07-23 22:25:46 +00002412
2413
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414#if defined(FEAT_SHORTCUT) || defined(PROTO)
2415# include <shlobj.h>
2416
2417/*
2418 * When "fname" is the name of a shortcut (*.lnk) resolve the file it points
2419 * to and return that name in allocated memory.
2420 * Otherwise NULL is returned.
2421 */
2422 char_u *
2423mch_resolve_shortcut(char_u *fname)
2424{
2425 HRESULT hr;
2426 IShellLink *psl = NULL;
2427 IPersistFile *ppf = NULL;
2428 OLECHAR wsz[MAX_PATH];
2429 WIN32_FIND_DATA ffd; // we get those free of charge
2430 TCHAR buf[MAX_PATH]; // could have simply reused 'wsz'...
2431 char_u *rfname = NULL;
2432 int len;
2433
2434 /* Check if the file name ends in ".lnk". Avoid calling
2435 * CoCreateInstance(), it's quite slow. */
2436 if (fname == NULL)
2437 return rfname;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002438 len = (int)STRLEN(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 if (len <= 4 || STRNICMP(fname + len - 4, ".lnk", 4) != 0)
2440 return rfname;
2441
2442 CoInitialize(NULL);
2443
2444 // create a link manager object and request its interface
2445 hr = CoCreateInstance(
2446 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
2447 &IID_IShellLink, (void**)&psl);
2448 if (hr != S_OK)
2449 goto shortcut_error;
2450
2451 // Get a pointer to the IPersistFile interface.
2452 hr = psl->lpVtbl->QueryInterface(
2453 psl, &IID_IPersistFile, (void**)&ppf);
2454 if (hr != S_OK)
2455 goto shortcut_error;
2456
2457 // full path string must be in Unicode.
2458 MultiByteToWideChar(CP_ACP, 0, fname, -1, wsz, MAX_PATH);
2459
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002460 // "load" the name and resolve the link
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 hr = ppf->lpVtbl->Load(ppf, wsz, STGM_READ);
2462 if (hr != S_OK)
2463 goto shortcut_error;
2464#if 0 // This makes Vim wait a long time if the target doesn't exist.
2465 hr = psl->lpVtbl->Resolve(psl, NULL, SLR_NO_UI);
2466 if (hr != S_OK)
2467 goto shortcut_error;
2468#endif
2469
2470 // Get the path to the link target.
2471 ZeroMemory(buf, MAX_PATH);
2472 hr = psl->lpVtbl->GetPath(psl, buf, MAX_PATH, &ffd, 0);
2473 if (hr == S_OK && buf[0] != NUL)
2474 rfname = vim_strsave(buf);
2475
2476shortcut_error:
2477 // Release all interface pointers (both belong to the same object)
2478 if (ppf != NULL)
2479 ppf->lpVtbl->Release(ppf);
2480 if (psl != NULL)
2481 psl->lpVtbl->Release(psl);
2482
2483 CoUninitialize();
2484 return rfname;
2485}
2486#endif
2487
2488#if (defined(FEAT_EVAL) && !defined(FEAT_GUI)) || defined(PROTO)
2489/*
2490 * Bring ourselves to the foreground. Does work if the OS doesn't allow it.
2491 */
2492 void
2493win32_set_foreground()
2494{
2495# ifndef FEAT_GUI
2496 GetConsoleHwnd(); /* get value of s_hwnd */
2497# endif
2498 if (s_hwnd != 0)
2499 SetForegroundWindow(s_hwnd);
2500}
2501#endif
2502
2503#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
2504/*
2505 * Client-server code for Vim
2506 *
2507 * Originally written by Paul Moore
2508 */
2509
2510/* In order to handle inter-process messages, we need to have a window. But
2511 * the functions in this module can be called before the main GUI window is
2512 * created (and may also be called in the console version, where there is no
2513 * GUI window at all).
2514 *
2515 * So we create a hidden window, and arrange to destroy it on exit.
2516 */
2517HWND message_window = 0; /* window that's handling messsages */
2518
2519#define VIM_CLASSNAME "VIM_MESSAGES"
2520#define VIM_CLASSNAME_LEN (sizeof(VIM_CLASSNAME) - 1)
2521
2522/* Communication is via WM_COPYDATA messages. The message type is send in
2523 * the dwData parameter. Types are defined here. */
2524#define COPYDATA_KEYS 0
2525#define COPYDATA_REPLY 1
2526#define COPYDATA_EXPR 10
2527#define COPYDATA_RESULT 11
2528#define COPYDATA_ERROR_RESULT 12
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002529#define COPYDATA_ENCODING 20
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530
2531/* This is a structure containing a server HWND and its name. */
2532struct server_id
2533{
2534 HWND hwnd;
2535 char_u *name;
2536};
2537
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002538/* Last received 'encoding' that the client uses. */
2539static char_u *client_enc = NULL;
2540
2541/*
2542 * Tell the other side what encoding we are using.
2543 * Errors are ignored.
2544 */
2545 static void
2546serverSendEnc(HWND target)
2547{
2548 COPYDATASTRUCT data;
2549
2550 data.dwData = COPYDATA_ENCODING;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002551#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002552 data.cbData = (DWORD)STRLEN(p_enc) + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002553 data.lpData = p_enc;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002554#else
Bram Moolenaar8765a4a2010-07-27 22:41:43 +02002555 data.cbData = (DWORD)STRLEN("latin1") + 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002556 data.lpData = "latin1";
2557#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002558 (void)SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2559 (LPARAM)(&data));
2560}
2561
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562/*
2563 * Clean up on exit. This destroys the hidden message window.
2564 */
2565 static void
2566#ifdef __BORLANDC__
2567 _RTLENTRYF
2568#endif
2569CleanUpMessaging(void)
2570{
2571 if (message_window != 0)
2572 {
2573 DestroyWindow(message_window);
2574 message_window = 0;
2575 }
2576}
2577
2578static int save_reply(HWND server, char_u *reply, int expr);
2579
2580/*s
2581 * The window procedure for the hidden message window.
2582 * It handles callback messages and notifications from servers.
2583 * In order to process these messages, it is necessary to run a
2584 * message loop. Code which may run before the main message loop
2585 * is started (in the GUI) is careful to pump messages when it needs
2586 * to. Features which require message delivery during normal use will
2587 * not work in the console version - this basically means those
2588 * features which allow Vim to act as a server, rather than a client.
2589 */
2590 static LRESULT CALLBACK
2591Messaging_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
2592{
2593 if (msg == WM_COPYDATA)
2594 {
2595 /* This is a message from another Vim. The dwData member of the
2596 * COPYDATASTRUCT determines the type of message:
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002597 * COPYDATA_ENCODING:
2598 * The encoding that the client uses. Following messages will
2599 * use this encoding, convert if needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 * COPYDATA_KEYS:
2601 * A key sequence. We are a server, and a client wants these keys
2602 * adding to the input queue.
2603 * COPYDATA_REPLY:
2604 * A reply. We are a client, and a server has sent this message
2605 * in response to a request. (server2client())
2606 * COPYDATA_EXPR:
2607 * An expression. We are a server, and a client wants us to
2608 * evaluate this expression.
2609 * COPYDATA_RESULT:
2610 * A reply. We are a client, and a server has sent this message
2611 * in response to a COPYDATA_EXPR.
2612 * COPYDATA_ERROR_RESULT:
2613 * A reply. We are a client, and a server has sent this message
2614 * in response to a COPYDATA_EXPR that failed to evaluate.
2615 */
2616 COPYDATASTRUCT *data = (COPYDATASTRUCT*)lParam;
2617 HWND sender = (HWND)wParam;
2618 COPYDATASTRUCT reply;
2619 char_u *res;
2620 char_u winstr[30];
2621 int retval;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002622 char_u *str;
2623 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624
2625 switch (data->dwData)
2626 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002627 case COPYDATA_ENCODING:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002628# ifdef FEAT_MBYTE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002629 /* Remember the encoding that the client uses. */
2630 vim_free(client_enc);
2631 client_enc = enc_canonize((char_u *)data->lpData);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002632# endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002633 return 1;
2634
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 case COPYDATA_KEYS:
2636 /* Remember who sent this, for <client> */
2637 clientWindow = sender;
2638
2639 /* Add the received keys to the input buffer. The loop waiting
2640 * for the user to do something should check the input buffer. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002641 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2642 server_to_input_buf(str);
2643 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644
2645# ifdef FEAT_GUI
2646 /* Wake up the main GUI loop. */
2647 if (s_hwnd != 0)
2648 PostMessage(s_hwnd, WM_NULL, 0, 0);
2649# endif
2650 return 1;
2651
2652 case COPYDATA_EXPR:
2653 /* Remember who sent this, for <client> */
2654 clientWindow = sender;
2655
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002656 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2657 res = eval_client_expr_to_string(str);
2658 vim_free(tofree);
2659
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 if (res == NULL)
2661 {
2662 res = vim_strsave(_(e_invexprmsg));
2663 reply.dwData = COPYDATA_ERROR_RESULT;
2664 }
2665 else
2666 reply.dwData = COPYDATA_RESULT;
2667 reply.lpData = res;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002668 reply.cbData = (DWORD)STRLEN(res) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002670 serverSendEnc(sender);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002671 retval = (int)SendMessage(sender, WM_COPYDATA, (WPARAM)message_window,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 (LPARAM)(&reply));
2673 vim_free(res);
2674 return retval;
2675
2676 case COPYDATA_REPLY:
2677 case COPYDATA_RESULT:
2678 case COPYDATA_ERROR_RESULT:
2679 if (data->lpData != NULL)
2680 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002681 str = serverConvert(client_enc, (char_u *)data->lpData,
2682 &tofree);
2683 if (tofree == NULL)
2684 str = vim_strsave(str);
2685 if (save_reply(sender, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 (data->dwData == COPYDATA_REPLY ? 0 :
2687 (data->dwData == COPYDATA_RESULT ? 1 :
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002688 2))) == FAIL)
2689 vim_free(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690#ifdef FEAT_AUTOCMD
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002691 else if (data->dwData == COPYDATA_REPLY)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002693 sprintf((char *)winstr, PRINTF_HEX_LONG_U, (long_u)sender);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002694 apply_autocmds(EVENT_REMOTEREPLY, winstr, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 TRUE, curbuf);
2696 }
2697#endif
2698 }
2699 return 1;
2700 }
2701
2702 return 0;
2703 }
2704
2705 else if (msg == WM_ACTIVATE && wParam == WA_ACTIVE)
2706 {
2707 /* When the message window is activated (brought to the foreground),
2708 * this actually applies to the text window. */
2709#ifndef FEAT_GUI
2710 GetConsoleHwnd(); /* get value of s_hwnd */
2711#endif
2712 if (s_hwnd != 0)
2713 {
2714 SetForegroundWindow(s_hwnd);
2715 return 0;
2716 }
2717 }
2718
2719 return DefWindowProc(hwnd, msg, wParam, lParam);
2720}
2721
2722/*
2723 * Initialise the message handling process. This involves creating a window
2724 * to handle messages - the window will not be visible.
2725 */
2726 void
2727serverInitMessaging(void)
2728{
2729 WNDCLASS wndclass;
2730 HINSTANCE s_hinst;
2731
2732 /* Clean up on exit */
2733 atexit(CleanUpMessaging);
2734
2735 /* Register a window class - we only really care
2736 * about the window procedure
2737 */
2738 s_hinst = (HINSTANCE)GetModuleHandle(0);
2739 wndclass.style = 0;
2740 wndclass.lpfnWndProc = Messaging_WndProc;
2741 wndclass.cbClsExtra = 0;
2742 wndclass.cbWndExtra = 0;
2743 wndclass.hInstance = s_hinst;
2744 wndclass.hIcon = NULL;
2745 wndclass.hCursor = NULL;
2746 wndclass.hbrBackground = NULL;
2747 wndclass.lpszMenuName = NULL;
2748 wndclass.lpszClassName = VIM_CLASSNAME;
2749 RegisterClass(&wndclass);
2750
2751 /* Create the message window. It will be hidden, so the details don't
2752 * matter. Don't use WS_OVERLAPPEDWINDOW, it will make a shortcut remove
2753 * focus from gvim. */
2754 message_window = CreateWindow(VIM_CLASSNAME, "",
2755 WS_POPUPWINDOW | WS_CAPTION,
2756 CW_USEDEFAULT, CW_USEDEFAULT,
2757 100, 100, NULL, NULL,
2758 s_hinst, NULL);
2759}
2760
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002761/* Used by serverSendToVim() to find an alternate server name. */
2762static char_u *altname_buf_ptr = NULL;
2763
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764/*
2765 * Get the title of the window "hwnd", which is the Vim server name, in
2766 * "name[namelen]" and return the length.
2767 * Returns zero if window "hwnd" is not a Vim server.
2768 */
2769 static int
2770getVimServerName(HWND hwnd, char *name, int namelen)
2771{
2772 int len;
2773 char buffer[VIM_CLASSNAME_LEN + 1];
2774
2775 /* Ignore windows which aren't Vim message windows */
2776 len = GetClassName(hwnd, buffer, sizeof(buffer));
2777 if (len != VIM_CLASSNAME_LEN || STRCMP(buffer, VIM_CLASSNAME) != 0)
2778 return 0;
2779
2780 /* Get the title of the window */
2781 return GetWindowText(hwnd, name, namelen);
2782}
2783
2784 static BOOL CALLBACK
2785enumWindowsGetServer(HWND hwnd, LPARAM lparam)
2786{
2787 struct server_id *id = (struct server_id *)lparam;
2788 char server[MAX_PATH];
2789
2790 /* Get the title of the window */
2791 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2792 return TRUE;
2793
2794 /* If this is the server we're looking for, return its HWND */
2795 if (STRICMP(server, id->name) == 0)
2796 {
2797 id->hwnd = hwnd;
2798 return FALSE;
2799 }
2800
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002801 /* If we are looking for an alternate server, remember this name. */
2802 if (altname_buf_ptr != NULL
2803 && STRNICMP(server, id->name, STRLEN(id->name)) == 0
2804 && vim_isdigit(server[STRLEN(id->name)]))
2805 {
2806 STRCPY(altname_buf_ptr, server);
2807 altname_buf_ptr = NULL; /* don't use another name */
2808 }
2809
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 /* Otherwise, keep looking */
2811 return TRUE;
2812}
2813
2814 static BOOL CALLBACK
2815enumWindowsGetNames(HWND hwnd, LPARAM lparam)
2816{
2817 garray_T *ga = (garray_T *)lparam;
2818 char server[MAX_PATH];
2819
2820 /* Get the title of the window */
2821 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2822 return TRUE;
2823
2824 /* Add the name to the list */
2825 ga_concat(ga, server);
2826 ga_concat(ga, "\n");
2827 return TRUE;
2828}
2829
2830 static HWND
2831findServer(char_u *name)
2832{
2833 struct server_id id;
2834
2835 id.name = name;
2836 id.hwnd = 0;
2837
2838 EnumWindows(enumWindowsGetServer, (LPARAM)(&id));
2839
2840 return id.hwnd;
2841}
2842
2843 void
2844serverSetName(char_u *name)
2845{
2846 char_u *ok_name;
2847 HWND hwnd = 0;
2848 int i = 0;
2849 char_u *p;
2850
2851 /* Leave enough space for a 9-digit suffix to ensure uniqueness! */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002852 ok_name = alloc((unsigned)STRLEN(name) + 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853
2854 STRCPY(ok_name, name);
2855 p = ok_name + STRLEN(name);
2856
2857 for (;;)
2858 {
2859 /* This is inefficient - we're doing an EnumWindows loop for each
2860 * possible name. It would be better to grab all names in one go,
2861 * and scan the list each time...
2862 */
2863 hwnd = findServer(ok_name);
2864 if (hwnd == 0)
2865 break;
2866
2867 ++i;
2868 if (i >= 1000)
2869 break;
2870
2871 sprintf((char *)p, "%d", i);
2872 }
2873
2874 if (hwnd != 0)
2875 vim_free(ok_name);
2876 else
2877 {
2878 /* Remember the name */
2879 serverName = ok_name;
2880#ifdef FEAT_TITLE
2881 need_maketitle = TRUE; /* update Vim window title later */
2882#endif
2883
2884 /* Update the message window title */
2885 SetWindowText(message_window, ok_name);
2886
2887#ifdef FEAT_EVAL
2888 /* Set the servername variable */
2889 set_vim_var_string(VV_SEND_SERVER, serverName, -1);
2890#endif
2891 }
2892}
2893
2894 char_u *
2895serverGetVimNames(void)
2896{
2897 garray_T ga;
2898
2899 ga_init2(&ga, 1, 100);
2900
2901 EnumWindows(enumWindowsGetNames, (LPARAM)(&ga));
Bram Moolenaar269ec652004-07-29 08:43:53 +00002902 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903
2904 return ga.ga_data;
2905}
2906
2907 int
2908serverSendReply(name, reply)
2909 char_u *name; /* Where to send. */
2910 char_u *reply; /* What to send. */
2911{
2912 HWND target;
2913 COPYDATASTRUCT data;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002914 long_u n = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915
2916 /* The "name" argument is a magic cookie obtained from expand("<client>").
2917 * It should be of the form 0xXXXXX - i.e. a C hex literal, which is the
2918 * value of the client's message window HWND.
2919 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002920 sscanf((char *)name, SCANF_HEX_LONG_U, &n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 if (n == 0)
2922 return -1;
2923
2924 target = (HWND)n;
2925 if (!IsWindow(target))
2926 return -1;
2927
2928 data.dwData = COPYDATA_REPLY;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002929 data.cbData = (DWORD)STRLEN(reply) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 data.lpData = reply;
2931
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002932 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2934 (LPARAM)(&data)))
2935 return 0;
2936
2937 return -1;
2938}
2939
2940 int
2941serverSendToVim(name, cmd, result, ptarget, asExpr, silent)
2942 char_u *name; /* Where to send. */
2943 char_u *cmd; /* What to send. */
2944 char_u **result; /* Result of eval'ed expression */
2945 void *ptarget; /* HWND of server */
2946 int asExpr; /* Expression or keys? */
2947 int silent; /* don't complain about no server */
2948{
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002949 HWND target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 COPYDATASTRUCT data;
2951 char_u *retval = NULL;
2952 int retcode = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002953 char_u altname_buf[MAX_PATH];
2954
2955 /* If the server name does not end in a digit then we look for an
2956 * alternate name. e.g. when "name" is GVIM the we may find GVIM2. */
2957 if (STRLEN(name) > 1 && !vim_isdigit(name[STRLEN(name) - 1]))
2958 altname_buf_ptr = altname_buf;
2959 altname_buf[0] = NUL;
2960 target = findServer(name);
2961 altname_buf_ptr = NULL;
2962 if (target == 0 && altname_buf[0] != NUL)
2963 /* Use another server name we found. */
2964 target = findServer(altname_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965
2966 if (target == 0)
2967 {
2968 if (!silent)
2969 EMSG2(_(e_noserver), name);
2970 return -1;
2971 }
2972
2973 if (ptarget)
2974 *(HWND *)ptarget = target;
2975
2976 data.dwData = asExpr ? COPYDATA_EXPR : COPYDATA_KEYS;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002977 data.cbData = (DWORD)STRLEN(cmd) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 data.lpData = cmd;
2979
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002980 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2982 (LPARAM)(&data)) == 0)
2983 return -1;
2984
2985 if (asExpr)
2986 retval = serverGetReply(target, &retcode, TRUE, TRUE);
2987
2988 if (result == NULL)
2989 vim_free(retval);
2990 else
2991 *result = retval; /* Caller assumes responsibility for freeing */
2992
2993 return retcode;
2994}
2995
2996/*
2997 * Bring the server to the foreground.
2998 */
2999 void
3000serverForeground(name)
3001 char_u *name;
3002{
3003 HWND target = findServer(name);
3004
3005 if (target != 0)
3006 SetForegroundWindow(target);
3007}
3008
3009/* Replies from server need to be stored until the client picks them up via
3010 * remote_read(). So we maintain a list of server-id/reply pairs.
3011 * Note that there could be multiple replies from one server pending if the
3012 * client is slow picking them up.
3013 * We just store the replies in a simple list. When we remove an entry, we
3014 * move list entries down to fill the gap.
3015 * The server ID is simply the HWND.
3016 */
3017typedef struct
3018{
3019 HWND server; /* server window */
3020 char_u *reply; /* reply string */
3021 int expr_result; /* 0 for REPLY, 1 for RESULT 2 for error */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003022} reply_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023
3024static garray_T reply_list = {0, 0, sizeof(reply_T), 5, 0};
3025
3026#define REPLY_ITEM(i) ((reply_T *)(reply_list.ga_data) + (i))
3027#define REPLY_COUNT (reply_list.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028
3029/* Flag which is used to wait for a reply */
3030static int reply_received = 0;
3031
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003032/*
3033 * Store a reply. "reply" must be allocated memory (or NULL).
3034 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 static int
3036save_reply(HWND server, char_u *reply, int expr)
3037{
3038 reply_T *rep;
3039
3040 if (ga_grow(&reply_list, 1) == FAIL)
3041 return FAIL;
3042
3043 rep = REPLY_ITEM(REPLY_COUNT);
3044 rep->server = server;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003045 rep->reply = reply;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046 rep->expr_result = expr;
3047 if (rep->reply == NULL)
3048 return FAIL;
3049
3050 ++REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 reply_received = 1;
3052 return OK;
3053}
3054
3055/*
3056 * Get a reply from server "server".
3057 * When "expr_res" is non NULL, get the result of an expression, otherwise a
3058 * server2client() message.
3059 * When non NULL, point to return code. 0 => OK, -1 => ERROR
3060 * If "remove" is TRUE, consume the message, the caller must free it then.
3061 * if "wait" is TRUE block until a message arrives (or the server exits).
3062 */
3063 char_u *
3064serverGetReply(HWND server, int *expr_res, int remove, int wait)
3065{
3066 int i;
3067 char_u *reply;
3068 reply_T *rep;
3069
3070 /* When waiting, loop until the message waiting for is received. */
3071 for (;;)
3072 {
3073 /* Reset this here, in case a message arrives while we are going
3074 * through the already received messages. */
3075 reply_received = 0;
3076
3077 for (i = 0; i < REPLY_COUNT; ++i)
3078 {
3079 rep = REPLY_ITEM(i);
3080 if (rep->server == server
3081 && ((rep->expr_result != 0) == (expr_res != NULL)))
3082 {
3083 /* Save the values we've found for later */
3084 reply = rep->reply;
3085 if (expr_res != NULL)
3086 *expr_res = rep->expr_result == 1 ? 0 : -1;
3087
3088 if (remove)
3089 {
3090 /* Move the rest of the list down to fill the gap */
3091 mch_memmove(rep, rep + 1,
3092 (REPLY_COUNT - i - 1) * sizeof(reply_T));
3093 --REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 }
3095
3096 /* Return the reply to the caller, who takes on responsibility
3097 * for freeing it if "remove" is TRUE. */
3098 return reply;
3099 }
3100 }
3101
3102 /* If we got here, we didn't find a reply. Return immediately if the
3103 * "wait" parameter isn't set. */
3104 if (!wait)
3105 break;
3106
3107 /* We need to wait for a reply. Enter a message loop until the
3108 * "reply_received" flag gets set. */
3109
3110 /* Loop until we receive a reply */
3111 while (reply_received == 0)
3112 {
3113 /* Wait for a SendMessage() call to us. This could be the reply
3114 * we are waiting for. Use a timeout of a second, to catch the
3115 * situation that the server died unexpectedly. */
3116 MsgWaitForMultipleObjects(0, NULL, TRUE, 1000, QS_ALLINPUT);
3117
3118 /* If the server has died, give up */
3119 if (!IsWindow(server))
3120 return NULL;
3121
3122 serverProcessPendingMessages();
3123 }
3124 }
3125
3126 return NULL;
3127}
3128
3129/*
3130 * Process any messages in the Windows message queue.
3131 */
3132 void
3133serverProcessPendingMessages(void)
3134{
3135 MSG msg;
3136
3137 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
3138 {
3139 TranslateMessage(&msg);
3140 DispatchMessage(&msg);
3141 }
3142}
3143
3144#endif /* FEAT_CLIENTSERVER */
3145
3146#if defined(FEAT_GUI) || (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) \
3147 || defined(PROTO)
3148
3149struct charset_pair
3150{
3151 char *name;
3152 BYTE charset;
3153};
3154
3155static struct charset_pair
3156charset_pairs[] =
3157{
3158 {"ANSI", ANSI_CHARSET},
3159 {"CHINESEBIG5", CHINESEBIG5_CHARSET},
3160 {"DEFAULT", DEFAULT_CHARSET},
3161 {"HANGEUL", HANGEUL_CHARSET},
3162 {"OEM", OEM_CHARSET},
3163 {"SHIFTJIS", SHIFTJIS_CHARSET},
3164 {"SYMBOL", SYMBOL_CHARSET},
3165#ifdef WIN3264
3166 {"ARABIC", ARABIC_CHARSET},
3167 {"BALTIC", BALTIC_CHARSET},
3168 {"EASTEUROPE", EASTEUROPE_CHARSET},
3169 {"GB2312", GB2312_CHARSET},
3170 {"GREEK", GREEK_CHARSET},
3171 {"HEBREW", HEBREW_CHARSET},
3172 {"JOHAB", JOHAB_CHARSET},
3173 {"MAC", MAC_CHARSET},
3174 {"RUSSIAN", RUSSIAN_CHARSET},
3175 {"THAI", THAI_CHARSET},
3176 {"TURKISH", TURKISH_CHARSET},
3177# if (!defined(_MSC_VER) || (_MSC_VER > 1010)) \
3178 && (!defined(__BORLANDC__) || (__BORLANDC__ > 0x0500))
3179 {"VIETNAMESE", VIETNAMESE_CHARSET},
3180# endif
3181#endif
3182 {NULL, 0}
3183};
3184
3185/*
3186 * Convert a charset ID to a name.
3187 * Return NULL when not recognized.
3188 */
3189 char *
3190charset_id2name(int id)
3191{
3192 struct charset_pair *cp;
3193
3194 for (cp = charset_pairs; cp->name != NULL; ++cp)
3195 if ((BYTE)id == cp->charset)
3196 break;
3197 return cp->name;
3198}
3199
3200static const LOGFONT s_lfDefault =
3201{
3202 -12, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, DEFAULT_CHARSET,
3203 OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
3204 PROOF_QUALITY, FIXED_PITCH | FF_DONTCARE,
3205 "Fixedsys" /* see _ReadVimIni */
3206};
3207
3208/* Initialise the "current height" to -12 (same as s_lfDefault) just
3209 * in case the user specifies a font in "guifont" with no size before a font
3210 * with an explicit size has been set. This defaults the size to this value
3211 * (-12 equates to roughly 9pt).
3212 */
3213int current_font_height = -12; /* also used in gui_w48.c */
3214
3215/* Convert a string representing a point size into pixels. The string should
3216 * be a positive decimal number, with an optional decimal point (eg, "12", or
3217 * "10.5"). The pixel value is returned, and a pointer to the next unconverted
3218 * character is stored in *end. The flag "vertical" says whether this
3219 * calculation is for a vertical (height) size or a horizontal (width) one.
3220 */
3221 static int
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003222points_to_pixels(char_u *str, char_u **end, int vertical, long_i pprinter_dc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223{
3224 int pixels;
3225 int points = 0;
3226 int divisor = 0;
3227 HWND hwnd = (HWND)0;
3228 HDC hdc;
3229 HDC printer_dc = (HDC)pprinter_dc;
3230
3231 while (*str != NUL)
3232 {
3233 if (*str == '.' && divisor == 0)
3234 {
3235 /* Start keeping a divisor, for later */
3236 divisor = 1;
3237 }
3238 else
3239 {
3240 if (!VIM_ISDIGIT(*str))
3241 break;
3242
3243 points *= 10;
3244 points += *str - '0';
3245 divisor *= 10;
3246 }
3247 ++str;
3248 }
3249
3250 if (divisor == 0)
3251 divisor = 1;
3252
3253 if (printer_dc == NULL)
3254 {
3255 hwnd = GetDesktopWindow();
3256 hdc = GetWindowDC(hwnd);
3257 }
3258 else
3259 hdc = printer_dc;
3260
3261 pixels = MulDiv(points,
3262 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX),
3263 72 * divisor);
3264
3265 if (printer_dc == NULL)
3266 ReleaseDC(hwnd, hdc);
3267
3268 *end = str;
3269 return pixels;
3270}
3271
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003272/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273 static int CALLBACK
3274font_enumproc(
3275 ENUMLOGFONT *elf,
3276 NEWTEXTMETRIC *ntm,
3277 int type,
3278 LPARAM lparam)
3279{
3280 /* Return value:
3281 * 0 = terminate now (monospace & ANSI)
3282 * 1 = continue, still no luck...
3283 * 2 = continue, but we have an acceptable LOGFONT
3284 * (monospace, not ANSI)
3285 * We use these values, as EnumFontFamilies returns 1 if the
3286 * callback function is never called. So, we check the return as
3287 * 0 = perfect, 2 = OK, 1 = no good...
3288 * It's not pretty, but it works!
3289 */
3290
3291 LOGFONT *lf = (LOGFONT *)(lparam);
3292
3293#ifndef FEAT_PROPORTIONAL_FONTS
3294 /* Ignore non-monospace fonts without further ado */
3295 if ((ntm->tmPitchAndFamily & 1) != 0)
3296 return 1;
3297#endif
3298
3299 /* Remember this LOGFONT as a "possible" */
3300 *lf = elf->elfLogFont;
3301
3302 /* Terminate the scan as soon as we find an ANSI font */
3303 if (lf->lfCharSet == ANSI_CHARSET
3304 || lf->lfCharSet == OEM_CHARSET
3305 || lf->lfCharSet == DEFAULT_CHARSET)
3306 return 0;
3307
3308 /* Continue the scan - we have a non-ANSI font */
3309 return 2;
3310}
3311
3312 static int
3313init_logfont(LOGFONT *lf)
3314{
3315 int n;
3316 HWND hwnd = GetDesktopWindow();
3317 HDC hdc = GetWindowDC(hwnd);
3318
3319 n = EnumFontFamilies(hdc,
3320 (LPCSTR)lf->lfFaceName,
3321 (FONTENUMPROC)font_enumproc,
3322 (LPARAM)lf);
3323
3324 ReleaseDC(hwnd, hdc);
3325
3326 /* If we couldn't find a useable font, return failure */
3327 if (n == 1)
3328 return FAIL;
3329
3330 /* Tidy up the rest of the LOGFONT structure. We set to a basic
3331 * font - get_logfont() sets bold, italic, etc based on the user's
3332 * input.
3333 */
3334 lf->lfHeight = current_font_height;
3335 lf->lfWidth = 0;
3336 lf->lfItalic = FALSE;
3337 lf->lfUnderline = FALSE;
3338 lf->lfStrikeOut = FALSE;
3339 lf->lfWeight = FW_NORMAL;
3340
3341 /* Return success */
3342 return OK;
3343}
3344
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003345/*
3346 * Get font info from "name" into logfont "lf".
3347 * Return OK for a valid name, FAIL otherwise.
3348 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 int
3350get_logfont(
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003351 LOGFONT *lf,
3352 char_u *name,
3353 HDC printer_dc,
3354 int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355{
3356 char_u *p;
3357 int i;
3358 static LOGFONT *lastlf = NULL;
3359
3360 *lf = s_lfDefault;
3361 if (name == NULL)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003362 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363
3364 if (STRCMP(name, "*") == 0)
3365 {
3366#if defined(FEAT_GUI_W32)
3367 CHOOSEFONT cf;
3368 /* if name is "*", bring up std font dialog: */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003369 vim_memset(&cf, 0, sizeof(cf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 cf.lStructSize = sizeof(cf);
3371 cf.hwndOwner = s_hwnd;
3372 cf.Flags = CF_SCREENFONTS | CF_FIXEDPITCHONLY | CF_INITTOLOGFONTSTRUCT;
3373 if (lastlf != NULL)
3374 *lf = *lastlf;
3375 cf.lpLogFont = lf;
3376 cf.nFontType = 0 ; //REGULAR_FONTTYPE;
3377 if (ChooseFont(&cf))
3378 goto theend;
3379#else
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003380 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381#endif
3382 }
3383
3384 /*
3385 * Split name up, it could be <name>:h<height>:w<width> etc.
3386 */
3387 for (p = name; *p && *p != ':'; p++)
3388 {
3389 if (p - name + 1 > LF_FACESIZE)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003390 return FAIL; /* Name too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 lf->lfFaceName[p - name] = *p;
3392 }
3393 if (p != name)
3394 lf->lfFaceName[p - name] = NUL;
3395
3396 /* First set defaults */
3397 lf->lfHeight = -12;
3398 lf->lfWidth = 0;
3399 lf->lfWeight = FW_NORMAL;
3400 lf->lfItalic = FALSE;
3401 lf->lfUnderline = FALSE;
3402 lf->lfStrikeOut = FALSE;
3403
3404 /*
3405 * If the font can't be found, try replacing '_' by ' '.
3406 */
3407 if (init_logfont(lf) == FAIL)
3408 {
3409 int did_replace = FALSE;
3410
3411 for (i = 0; lf->lfFaceName[i]; ++i)
3412 if (lf->lfFaceName[i] == '_')
3413 {
3414 lf->lfFaceName[i] = ' ';
3415 did_replace = TRUE;
3416 }
3417 if (!did_replace || init_logfont(lf) == FAIL)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003418 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 }
3420
3421 while (*p == ':')
3422 p++;
3423
3424 /* Set the values found after ':' */
3425 while (*p)
3426 {
3427 switch (*p++)
3428 {
3429 case 'h':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003430 lf->lfHeight = - points_to_pixels(p, &p, TRUE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 break;
3432 case 'w':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003433 lf->lfWidth = points_to_pixels(p, &p, FALSE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 break;
3435 case 'b':
3436#ifndef MSWIN16_FASTTEXT
3437 lf->lfWeight = FW_BOLD;
3438#endif
3439 break;
3440 case 'i':
3441#ifndef MSWIN16_FASTTEXT
3442 lf->lfItalic = TRUE;
3443#endif
3444 break;
3445 case 'u':
3446 lf->lfUnderline = TRUE;
3447 break;
3448 case 's':
3449 lf->lfStrikeOut = TRUE;
3450 break;
3451 case 'c':
3452 {
3453 struct charset_pair *cp;
3454
3455 for (cp = charset_pairs; cp->name != NULL; ++cp)
3456 if (STRNCMP(p, cp->name, strlen(cp->name)) == 0)
3457 {
3458 lf->lfCharSet = cp->charset;
3459 p += strlen(cp->name);
3460 break;
3461 }
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003462 if (cp->name == NULL && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 {
Bram Moolenaar051b7822005-05-19 21:00:46 +00003464 vim_snprintf((char *)IObuff, IOSIZE,
3465 _("E244: Illegal charset name \"%s\" in font name \"%s\""), p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 EMSG(IObuff);
3467 break;
3468 }
3469 break;
3470 }
3471 default:
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003472 if (verbose)
3473 {
Bram Moolenaar051b7822005-05-19 21:00:46 +00003474 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003475 _("E245: Illegal char '%c' in font name \"%s\""),
3476 p[-1], name);
3477 EMSG(IObuff);
3478 }
3479 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 }
3481 while (*p == ':')
3482 p++;
3483 }
3484
3485#if defined(FEAT_GUI_W32)
3486theend:
3487#endif
3488 /* ron: init lastlf */
3489 if (printer_dc == NULL)
3490 {
3491 vim_free(lastlf);
3492 lastlf = (LOGFONT *)alloc(sizeof(LOGFONT));
3493 if (lastlf != NULL)
3494 mch_memmove(lastlf, lf, sizeof(LOGFONT));
3495 }
3496
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003497 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498}
3499
3500#endif /* defined(FEAT_GUI) || defined(FEAT_PRINTER) */