blob: e43d3a8b9f9dcebc35925c124133e4d25bc570b3 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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 *
Bram Moolenaarcf7164a2016-02-20 13:55:06 +010013 * Routines for Win32.
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 */
15
Bram Moolenaar071d4272004-06-13 20:20:40 +000016#include "vim.h"
17
Bram Moolenaar071d4272004-06-13 20:20:40 +000018#include <sys/types.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000019#include <signal.h>
20#include <limits.h>
Bram Moolenaar82881492012-11-20 16:53:39 +010021#ifndef PROTO
22# include <process.h>
23#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000024
25#undef chdir
26#ifdef __GNUC__
27# ifndef __MINGW32__
28# include <dirent.h>
29# endif
30#else
31# include <direct.h>
32#endif
33
Bram Moolenaar82881492012-11-20 16:53:39 +010034#ifndef PROTO
35# if defined(FEAT_TITLE) && !defined(FEAT_GUI_W32)
36# include <shellapi.h>
37# endif
38
39# if defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)
40# include <dlgs.h>
Bram Moolenaarcea912a2016-10-12 14:20:24 +020041# include <winspool.h>
Bram Moolenaar82881492012-11-20 16:53:39 +010042# include <commdlg.h>
Bram Moolenaarb04a98f2016-12-01 20:32:29 +010043# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000044
Bram Moolenaar82881492012-11-20 16:53:39 +010045#endif /* PROTO */
Bram Moolenaar071d4272004-06-13 20:20:40 +000046
47#ifdef __MINGW32__
48# ifndef FROM_LEFT_1ST_BUTTON_PRESSED
49# define FROM_LEFT_1ST_BUTTON_PRESSED 0x0001
50# endif
51# ifndef RIGHTMOST_BUTTON_PRESSED
52# define RIGHTMOST_BUTTON_PRESSED 0x0002
53# endif
54# ifndef FROM_LEFT_2ND_BUTTON_PRESSED
55# define FROM_LEFT_2ND_BUTTON_PRESSED 0x0004
56# endif
57# ifndef FROM_LEFT_3RD_BUTTON_PRESSED
58# define FROM_LEFT_3RD_BUTTON_PRESSED 0x0008
59# endif
60# ifndef FROM_LEFT_4TH_BUTTON_PRESSED
61# define FROM_LEFT_4TH_BUTTON_PRESSED 0x0010
62# endif
63
64/*
65 * EventFlags
66 */
67# ifndef MOUSE_MOVED
68# define MOUSE_MOVED 0x0001
69# endif
70# ifndef DOUBLE_CLICK
71# define DOUBLE_CLICK 0x0002
72# endif
73#endif
74
75/*
76 * When generating prototypes for Win32 on Unix, these lines make the syntax
77 * errors disappear. They do not need to be correct.
78 */
79#ifdef PROTO
80#define WINAPI
81#define WINBASEAPI
82typedef int BOOL;
83typedef int CALLBACK;
84typedef int COLORREF;
85typedef int CONSOLE_CURSOR_INFO;
86typedef int COORD;
87typedef int DWORD;
88typedef int ENUMLOGFONT;
89typedef int HANDLE;
90typedef int HDC;
91typedef int HFONT;
92typedef int HICON;
93typedef int HWND;
94typedef int INPUT_RECORD;
95typedef int KEY_EVENT_RECORD;
96typedef int LOGFONT;
97typedef int LPARAM;
98typedef int LPBOOL;
99typedef int LPCSTR;
100typedef int LPCWSTR;
101typedef int LPSTR;
102typedef int LPTSTR;
103typedef int LPWSTR;
104typedef int LRESULT;
105typedef int MOUSE_EVENT_RECORD;
106typedef int NEWTEXTMETRIC;
107typedef int PACL;
108typedef int PRINTDLG;
109typedef int PSECURITY_DESCRIPTOR;
110typedef int PSID;
111typedef int SECURITY_INFORMATION;
112typedef int SHORT;
113typedef int SMALL_RECT;
114typedef int TEXTMETRIC;
115typedef int UINT;
116typedef int WCHAR;
117typedef int WORD;
118typedef int WPARAM;
119typedef void VOID;
120#endif
121
122/* Record all output and all keyboard & mouse input */
123/* #define MCH_WRITE_DUMP */
124
125#ifdef MCH_WRITE_DUMP
126FILE* fdDump = NULL;
127#endif
128
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129#ifndef FEAT_GUI_MSWIN
130extern char g_szOrigTitle[];
131#endif
132
133#ifdef FEAT_GUI
134extern HWND s_hwnd;
135#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136static HWND s_hwnd = 0; /* console window handle, set by GetConsoleHwnd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137#endif
138
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100139#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf12d9832016-01-29 21:11:25 +0100140int WSInitialized = FALSE; /* WinSock is initialized */
141#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142
143/* Don't generate prototypes here, because some systems do have these
144 * functions. */
145#if defined(__GNUC__) && !defined(PROTO)
146# ifndef __MINGW32__
147int _stricoll(char *a, char *b)
148{
149 // the ANSI-ish correct way is to use strxfrm():
150 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32
151 strxfrm(a_buff, a, 512);
152 strxfrm(b_buff, b, 512);
153 return strcoll(a_buff, b_buff);
154}
155
156char * _fullpath(char *buf, char *fname, int len)
157{
158 LPTSTR toss;
159
160 return (char *)GetFullPathName(fname, len, buf, &toss);
161}
162# endif
163
Bram Moolenaaraf62ff32013-03-19 14:48:29 +0100164# if !defined(__MINGW32__) || (__GNUC__ < 4)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165int _chdrive(int drive)
166{
167 char temp [3] = "-:";
168 temp[0] = drive + 'A' - 1;
169 return !SetCurrentDirectory(temp);
170}
Bram Moolenaaraf62ff32013-03-19 14:48:29 +0100171# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172#else
173# ifdef __BORLANDC__
174/* being a more ANSI compliant compiler, BorlandC doesn't define _stricoll:
175 * but it does in BC 5.02! */
176# if __BORLANDC__ < 0x502
177int _stricoll(char *a, char *b)
178{
179# if 1
180 // this is fast but not correct:
181 return stricmp(a, b);
182# else
183 // the ANSI-ish correct way is to use strxfrm():
184 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32
185 strxfrm(a_buff, a, 512);
186 strxfrm(b_buff, b, 512);
187 return strcoll(a_buff, b_buff);
188# endif
189}
190# endif
191# endif
192#endif
193
194
195#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
196/*
197 * GUI version of mch_exit().
198 * Shut down and exit with status `r'
199 * Careful: mch_exit() may be called before mch_init()!
200 */
201 void
202mch_exit(int r)
203{
Bram Moolenaar955f1982017-02-05 15:10:51 +0100204 exiting = TRUE;
205
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 display_errors();
207
208 ml_close_all(TRUE); /* remove all memfiles */
209
210# ifdef FEAT_OLE
211 UninitOLE();
212# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100213# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 if (WSInitialized)
215 {
216 WSInitialized = FALSE;
217 WSACleanup();
218 }
219# endif
220#ifdef DYNAMIC_GETTEXT
221 dyn_libintl_end();
222#endif
223
224 if (gui.in_use)
225 gui_exit(r);
Bram Moolenaar85c79d32007-02-20 01:59:20 +0000226
227#ifdef EXITFREE
228 free_all_mem();
229#endif
230
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 exit(r);
232}
233
234#endif /* FEAT_GUI_MSWIN */
235
236
237/*
238 * Init the tables for toupper() and tolower().
239 */
240 void
241mch_early_init(void)
242{
243 int i;
244
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 PlatformId();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246
247 /* Init the tables for toupper() and tolower() */
248 for (i = 0; i < 256; ++i)
249 toupper_tab[i] = tolower_tab[i] = i;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100250 CharUpperBuff((LPSTR)toupper_tab, 256);
251 CharLowerBuff((LPSTR)tolower_tab, 256);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252}
253
254
255/*
256 * Return TRUE if the input comes from a terminal, FALSE otherwise.
257 */
258 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100259mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260{
261#ifdef FEAT_GUI_MSWIN
262 return OK; /* GUI always has a tty */
263#else
264 if (isatty(read_cmd_fd))
265 return TRUE;
266 return FALSE;
267#endif
268}
269
270#ifdef FEAT_TITLE
271/*
272 * mch_settitle(): set titlebar of our window
273 */
274 void
275mch_settitle(
276 char_u *title,
277 char_u *icon)
278{
279# ifdef FEAT_GUI_MSWIN
280 gui_mch_settitle(title, icon);
281# else
282 if (title != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000283 {
284# ifdef FEAT_MBYTE
285 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
286 {
287 /* Convert the title from 'encoding' to the active codepage. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000288 WCHAR *wp = enc_to_utf16(title, NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000289
290 if (wp != NULL)
291 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200292 SetConsoleTitleW(wp);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000293 vim_free(wp);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200294 return;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000295 }
296 }
297# endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100298 SetConsoleTitle((LPCSTR)title);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000299 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300# endif
301}
302
303
304/*
305 * Restore the window/icon title.
306 * which is one of:
307 * 1: Just restore title
308 * 2: Just restore icon (which we don't have)
309 * 3: Restore title and icon (which we don't have)
310 */
311 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100312mch_restore_title(int which UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313{
314#ifndef FEAT_GUI_MSWIN
Bram Moolenaar1df52d72014-10-15 22:50:10 +0200315 SetConsoleTitle(g_szOrigTitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316#endif
317}
318
319
320/*
321 * Return TRUE if we can restore the title (we can)
322 */
323 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100324mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325{
326 return TRUE;
327}
328
329
330/*
331 * Return TRUE if we can restore the icon title (we can't)
332 */
333 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100334mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335{
336 return FALSE;
337}
338#endif /* FEAT_TITLE */
339
340
341/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000342 * Get absolute file name into buffer "buf" of length "len" bytes,
343 * turning all '/'s into '\\'s and getting the correct case of each component
344 * of the file name. Append a (back)slash to a directory name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 * When 'shellslash' set do it the other way around.
346 * Return OK or FAIL.
347 */
348 int
349mch_FullName(
350 char_u *fname,
351 char_u *buf,
352 int len,
Bram Moolenaar1266d672017-02-01 13:43:36 +0100353 int force UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354{
355 int nResult = FAIL;
356
357#ifdef __BORLANDC__
358 if (*fname == NUL) /* Borland behaves badly here - make it consistent */
359 nResult = mch_dirname(buf, len);
360 else
361#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000363#ifdef FEAT_MBYTE
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200364 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000365 {
366 WCHAR *wname;
367 WCHAR wbuf[MAX_PATH];
368 char_u *cname = NULL;
369
370 /* Use the wide function:
371 * - convert the fname from 'encoding' to UCS2.
372 * - invoke _wfullpath()
373 * - convert the result from UCS2 to 'encoding'.
374 */
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000375 wname = enc_to_utf16(fname, NULL);
Bram Moolenaar374bf022014-11-05 19:33:24 +0100376 if (wname != NULL && _wfullpath(wbuf, wname, MAX_PATH) != NULL)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000377 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000378 cname = utf16_to_enc((short_u *)wbuf, NULL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000379 if (cname != NULL)
380 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +0000381 vim_strncpy(buf, cname, len - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000382 nResult = OK;
383 }
384 }
385 vim_free(wname);
386 vim_free(cname);
387 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000388 if (nResult == FAIL) /* fall back to non-wide function */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000390 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100391 if (_fullpath((char *)buf, (const char *)fname, len - 1) == NULL)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000392 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +0000393 /* failed, use relative path name */
394 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000395 }
396 else
397 nResult = OK;
398 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400
401#ifdef USE_FNAME_CASE
402 fname_case(buf, len);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000403#else
404 slash_adjust(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405#endif
406
407 return nResult;
408}
409
410
411/*
412 * Return TRUE if "fname" does not depend on the current directory.
413 */
414 int
415mch_isFullName(char_u *fname)
416{
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200417#ifdef FEAT_MBYTE
418 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
419 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
420 * UTF-8. */
421 char szName[_MAX_PATH * 3 + 1];
422#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 char szName[_MAX_PATH + 1];
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200424#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425
426 /* A name like "d:/foo" and "//server/share" is absolute */
427 if ((fname[0] && fname[1] == ':' && (fname[2] == '/' || fname[2] == '\\'))
428 || (fname[0] == fname[1] && (fname[0] == '/' || fname[0] == '\\')))
429 return TRUE;
430
431 /* A name that can't be made absolute probably isn't absolute. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100432 if (mch_FullName(fname, (char_u *)szName, sizeof(szName) - 1, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 return FALSE;
434
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100435 return pathcmp((const char *)fname, (const char *)szName, -1) == 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436}
437
438/*
439 * Replace all slashes by backslashes.
440 * This used to be the other way around, but MS-DOS sometimes has problems
441 * with slashes (e.g. in a command name). We can't have mixed slashes and
442 * backslashes, because comparing file names will not work correctly. The
443 * commands that use a file name should try to avoid the need to type a
444 * backslash twice.
445 * When 'shellslash' set do it the other way around.
Bram Moolenaarb4f6a462015-10-13 19:43:17 +0200446 * When the path looks like a URL leave it unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 */
448 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100449slash_adjust(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450{
Bram Moolenaarb4f6a462015-10-13 19:43:17 +0200451 if (path_with_url(p))
452 return;
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200453
454 if (*p == '`')
455 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +0200456 size_t len = STRLEN(p);
457
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200458 /* don't replace backslash in backtick quoted strings */
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200459 if (len > 2 && *(p + len - 1) == '`')
460 return;
461 }
462
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000463 while (*p)
464 {
465 if (*p == psepcN)
466 *p = psepc;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100467 MB_PTR_ADV(p);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000468 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469}
470
Bram Moolenaar8767f522016-07-01 17:17:39 +0200471/* Use 64-bit stat functions if available. */
472#ifdef HAVE_STAT64
473# undef stat
474# undef _stat
475# undef _wstat
476# undef _fstat
477# define stat _stat64
478# define _stat _stat64
479# define _wstat _wstat64
480# define _fstat _fstat64
481#endif
482
Bram Moolenaar9d1685d2014-01-14 12:18:45 +0100483#if (defined(_MSC_VER) && (_MSC_VER >= 1300)) || defined(__MINGW32__)
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200484# define OPEN_OH_ARGTYPE intptr_t
485#else
486# define OPEN_OH_ARGTYPE long
487#endif
488
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200489 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200490stat_symlink_aware(const char *name, stat_T *stp)
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200491{
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100492#if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__)
493 /* Work around for VC12 or earlier (and MinGW). stat() can't handle
494 * symlinks properly.
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200495 * VC9 or earlier: stat() doesn't support a symlink at all. It retrieves
496 * status of a symlink itself.
497 * VC10: stat() supports a symlink to a normal file, but it doesn't support
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100498 * a symlink to a directory (always returns an error).
499 * VC11 and VC12: stat() doesn't return an error for a symlink to a
500 * directory, but it doesn't set S_IFDIR flag.
501 * MinGW: Same as VC9. */
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200502 WIN32_FIND_DATA findData;
503 HANDLE hFind, h;
504 DWORD attr = 0;
505 BOOL is_symlink = FALSE;
506
507 hFind = FindFirstFile(name, &findData);
508 if (hFind != INVALID_HANDLE_VALUE)
509 {
510 attr = findData.dwFileAttributes;
511 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT)
512 && (findData.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
513 is_symlink = TRUE;
514 FindClose(hFind);
515 }
516 if (is_symlink)
517 {
518 h = CreateFile(name, FILE_READ_ATTRIBUTES,
519 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
520 OPEN_EXISTING,
521 (attr & FILE_ATTRIBUTE_DIRECTORY)
522 ? FILE_FLAG_BACKUP_SEMANTICS : 0,
523 NULL);
524 if (h != INVALID_HANDLE_VALUE)
525 {
526 int fd, n;
527
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200528 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200529 n = _fstat(fd, (struct _stat *)stp);
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100530 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY))
531 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR;
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200532 _close(fd);
533 return n;
534 }
535 }
536#endif
537 return stat(name, stp);
538}
539
540#ifdef FEAT_MBYTE
541 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200542wstat_symlink_aware(const WCHAR *name, stat_T *stp)
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200543{
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100544# if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__)
545 /* Work around for VC12 or earlier (and MinGW). _wstat() can't handle
546 * symlinks properly.
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200547 * VC9 or earlier: _wstat() doesn't support a symlink at all. It retrieves
548 * status of a symlink itself.
549 * VC10: _wstat() supports a symlink to a normal file, but it doesn't
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100550 * support a symlink to a directory (always returns an error).
551 * VC11 and VC12: _wstat() doesn't return an error for a symlink to a
552 * directory, but it doesn't set S_IFDIR flag.
553 * MinGW: Same as VC9. */
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200554 int n;
555 BOOL is_symlink = FALSE;
556 HANDLE hFind, h;
557 DWORD attr = 0;
558 WIN32_FIND_DATAW findDataW;
559
560 hFind = FindFirstFileW(name, &findDataW);
561 if (hFind != INVALID_HANDLE_VALUE)
562 {
563 attr = findDataW.dwFileAttributes;
564 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT)
565 && (findDataW.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
566 is_symlink = TRUE;
567 FindClose(hFind);
568 }
569 if (is_symlink)
570 {
571 h = CreateFileW(name, FILE_READ_ATTRIBUTES,
572 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
573 OPEN_EXISTING,
574 (attr & FILE_ATTRIBUTE_DIRECTORY)
575 ? FILE_FLAG_BACKUP_SEMANTICS : 0,
576 NULL);
577 if (h != INVALID_HANDLE_VALUE)
578 {
579 int fd;
580
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200581 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200582 n = _fstat(fd, (struct _stat *)stp);
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100583 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY))
584 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR;
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200585 _close(fd);
586 return n;
587 }
588 }
589# endif
Bram Moolenaar8767f522016-07-01 17:17:39 +0200590 return _wstat(name, (struct _stat *)stp);
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200591}
592#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593
594/*
595 * stat() can't handle a trailing '/' or '\', remove it first.
596 */
597 int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200598vim_stat(const char *name, stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599{
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200600#ifdef FEAT_MBYTE
601 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
602 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
603 * UTF-8. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100604 char_u buf[_MAX_PATH * 3 + 1];
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200605#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100606 char_u buf[_MAX_PATH + 1];
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200607#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100608 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200610 vim_strncpy((char_u *)buf, (char_u *)name, sizeof(buf) - 1);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100611 p = buf + STRLEN(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 if (p > buf)
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100613 MB_PTR_BACK(buf, p);
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100614
615 /* Remove trailing '\\' except root path. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 if (p > buf && (*p == '\\' || *p == '/') && p[-1] != ':')
617 *p = NUL;
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100618
619 if ((buf[0] == '\\' && buf[1] == '\\') || (buf[0] == '/' && buf[1] == '/'))
620 {
621 /* UNC root path must be followed by '\\'. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100622 p = vim_strpbrk(buf + 2, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100623 if (p != NULL)
624 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100625 p = vim_strpbrk(p + 1, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100626 if (p == NULL)
627 STRCAT(buf, "\\");
628 }
629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630#ifdef FEAT_MBYTE
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200631 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000633 WCHAR *wp = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 int n;
635
636 if (wp != NULL)
637 {
Bram Moolenaar8767f522016-07-01 17:17:39 +0200638 n = wstat_symlink_aware(wp, stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 vim_free(wp);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200640 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 }
642 }
643#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100644 return stat_symlink_aware((char *)buf, stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645}
646
647#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
648 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100649mch_settmode(int tmode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650{
651 /* nothing to do */
652}
653
654 int
655mch_get_shellsize(void)
656{
657 /* never used */
658 return OK;
659}
660
661 void
662mch_set_shellsize(void)
663{
664 /* never used */
665}
666
667/*
668 * Rows and/or Columns has changed.
669 */
670 void
671mch_new_shellsize(void)
672{
673 /* never used */
674}
675
676#endif
677
678/*
679 * We have no job control, so fake it by starting a new shell.
680 */
681 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100682mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683{
684 suspend_shell();
685}
686
687#if defined(USE_MCH_ERRMSG) || defined(PROTO)
688
689#ifdef display_errors
690# undef display_errors
691#endif
692
693/*
694 * Display the saved error message(s).
695 */
696 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100697display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698{
699 char *p;
700
701 if (error_ga.ga_data != NULL)
702 {
703 /* avoid putting up a message box with blanks only */
704 for (p = (char *)error_ga.ga_data; *p; ++p)
705 if (!isspace(*p))
706 {
Bram Moolenaarc17ef8e2006-03-25 21:48:58 +0000707 (void)gui_mch_dialog(
708#ifdef FEAT_GUI
709 gui.starting ? VIM_INFO :
710#endif
711 VIM_ERROR,
712#ifdef FEAT_GUI
713 gui.starting ? (char_u *)_("Message") :
714#endif
715 (char_u *)_("Error"),
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100716 (char_u *)p, (char_u *)_("&Ok"),
717 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 break;
719 }
720 ga_clear(&error_ga);
721 }
722}
723#endif
724
725
726/*
727 * Return TRUE if "p" contain a wildcard that can be expanded by
728 * dos_expandpath().
729 */
730 int
731mch_has_exp_wildcard(char_u *p)
732{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100733 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 {
735 if (vim_strchr((char_u *)"?*[", *p) != NULL
736 || (*p == '~' && p[1] != NUL))
737 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 }
739 return FALSE;
740}
741
742/*
743 * Return TRUE if "p" contain a wildcard or a "~1" kind of thing (could be a
744 * shortened file name).
745 */
746 int
747mch_has_wildcard(char_u *p)
748{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100749 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 {
751 if (vim_strchr((char_u *)
752# ifdef VIM_BACKTICK
753 "?*$[`"
754# else
755 "?*$["
756# endif
757 , *p) != NULL
758 || (*p == '~' && p[1] != NUL))
759 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 }
761 return FALSE;
762}
763
764
765/*
766 * The normal _chdir() does not change the default drive. This one does.
767 * Returning 0 implies success; -1 implies failure.
768 */
769 int
770mch_chdir(char *path)
771{
772 if (path[0] == NUL) /* just checking... */
773 return -1;
774
Bram Moolenaara2974d72009-07-14 16:38:36 +0000775 if (p_verbose >= 5)
776 {
777 verbose_enter();
778 smsg((char_u *)"chdir(%s)", path);
779 verbose_leave();
780 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 if (isalpha(path[0]) && path[1] == ':') /* has a drive name */
782 {
783 /* If we can change to the drive, skip that part of the path. If we
784 * can't then the current directory may be invalid, try using chdir()
785 * with the whole path. */
786 if (_chdrive(TOLOWER_ASC(path[0]) - 'a' + 1) == 0)
787 path += 2;
788 }
789
790 if (*path == NUL) /* drive name only */
791 return 0;
792
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000793#ifdef FEAT_MBYTE
794 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
795 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100796 WCHAR *p = enc_to_utf16((char_u *)path, NULL);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000797 int n;
798
799 if (p != NULL)
800 {
801 n = _wchdir(p);
802 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200803 return n;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000804 }
805 }
806#endif
807
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 return chdir(path); /* let the normal chdir() do the rest */
809}
810
811
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812#ifdef FEAT_GUI_MSWIN
813/*
814 * return non-zero if a character is available
815 */
816 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100817mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818{
819 /* never used */
820 return TRUE;
821}
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200822
823# if defined(FEAT_TERMINAL) || defined(PROTO)
824/*
825 * Check for any pending input or messages.
826 */
827 int
828mch_check_messages(void)
829{
830 /* TODO: check for messages */
831 return TRUE;
832}
833# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834#endif
835
836
837/*
838 * set screen mode, always fails.
839 */
840 int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100841mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842{
843 EMSG(_(e_screenmode));
844 return FAIL;
845}
846
847
848#if defined(FEAT_LIBCALL) || defined(PROTO)
849/*
850 * Call a DLL routine which takes either a string or int param
851 * and returns an allocated string.
852 * Return OK if it worked, FAIL if not.
853 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854typedef LPTSTR (*MYSTRPROCSTR)(LPTSTR);
855typedef LPTSTR (*MYINTPROCSTR)(int);
856typedef int (*MYSTRPROCINT)(LPTSTR);
857typedef int (*MYINTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859/*
860 * Check if a pointer points to a valid NUL terminated string.
861 * Return the length of the string, including terminating NUL.
862 * Returns 0 for an invalid pointer, 1 for an empty string.
863 */
864 static size_t
865check_str_len(char_u *str)
866{
867 SYSTEM_INFO si;
868 MEMORY_BASIC_INFORMATION mbi;
869 size_t length = 0;
870 size_t i;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100871 const char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872
873 /* get page size */
874 GetSystemInfo(&si);
875
876 /* get memory information */
877 if (VirtualQuery(str, &mbi, sizeof(mbi)))
878 {
879 /* pre cast these (typing savers) */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000880 long_u dwStr = (long_u)str;
881 long_u dwBaseAddress = (long_u)mbi.BaseAddress;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882
883 /* get start address of page that str is on */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000884 long_u strPage = dwStr - (dwStr - dwBaseAddress) % si.dwPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885
886 /* get length from str to end of page */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000887 long_u pageLength = si.dwPageSize - (dwStr - strPage);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888
Bram Moolenaar442b4222010-05-24 21:34:22 +0200889 for (p = str; !IsBadReadPtr(p, (UINT)pageLength);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 p += pageLength, pageLength = si.dwPageSize)
891 for (i = 0; i < pageLength; ++i, ++length)
892 if (p[i] == NUL)
893 return length + 1;
894 }
895
896 return 0;
897}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200899/*
900 * Passed to do_in_runtimepath() to load a vim.ico file.
901 */
902 static void
903mch_icon_load_cb(char_u *fname, void *cookie)
904{
905 HANDLE *h = (HANDLE *)cookie;
906
907 *h = LoadImage(NULL,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100908 (LPSTR)fname,
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200909 IMAGE_ICON,
910 64,
911 64,
912 LR_LOADFROMFILE | LR_LOADMAP3DCOLORS);
913}
914
915/*
916 * Try loading an icon file from 'runtimepath'.
917 */
918 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100919mch_icon_load(HANDLE *iconp)
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200920{
921 return do_in_runtimepath((char_u *)"bitmaps/vim.ico",
Bram Moolenaar7f8989d2016-03-12 22:11:39 +0100922 0, mch_icon_load_cb, iconp);
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200923}
924
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 int
926mch_libcall(
927 char_u *libname,
928 char_u *funcname,
929 char_u *argstring, /* NULL when using a argint */
930 int argint,
931 char_u **string_result,/* NULL when using number_result */
932 int *number_result)
933{
934 HINSTANCE hinstLib;
935 MYSTRPROCSTR ProcAdd;
936 MYINTPROCSTR ProcAddI;
937 char_u *retval_str = NULL;
938 int retval_int = 0;
939 size_t len;
940
941 BOOL fRunTimeLinkSuccess = FALSE;
942
943 // Get a handle to the DLL module.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100944 hinstLib = vimLoadLib((char *)libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945
946 // If the handle is valid, try to get the function address.
947 if (hinstLib != NULL)
948 {
949#ifdef HAVE_TRY_EXCEPT
950 __try
951 {
952#endif
953 if (argstring != NULL)
954 {
955 /* Call with string argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100956 ProcAdd = (MYSTRPROCSTR)GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 if ((fRunTimeLinkSuccess = (ProcAdd != NULL)) != 0)
958 {
959 if (string_result == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100960 retval_int = ((MYSTRPROCINT)ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100962 retval_str = (char_u *)(ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 }
964 }
965 else
966 {
967 /* Call with number argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100968 ProcAddI = (MYINTPROCSTR) GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 if ((fRunTimeLinkSuccess = (ProcAddI != NULL)) != 0)
970 {
971 if (string_result == NULL)
972 retval_int = ((MYINTPROCINT)ProcAddI)(argint);
973 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100974 retval_str = (char_u *)(ProcAddI)(argint);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 }
976 }
977
978 // Save the string before we free the library.
979 // Assume that a "1" result is an illegal pointer.
980 if (string_result == NULL)
981 *number_result = retval_int;
982 else if (retval_str != NULL
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100983 && (len = check_str_len(retval_str)) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984 {
985 *string_result = lalloc((long_u)len, TRUE);
986 if (*string_result != NULL)
987 mch_memmove(*string_result, retval_str, len);
988 }
989
990#ifdef HAVE_TRY_EXCEPT
991 }
992 __except(EXCEPTION_EXECUTE_HANDLER)
993 {
994 if (GetExceptionCode() == EXCEPTION_STACK_OVERFLOW)
995 RESETSTKOFLW();
996 fRunTimeLinkSuccess = 0;
997 }
998#endif
999
1000 // Free the DLL module.
1001 (void)FreeLibrary(hinstLib);
1002 }
1003
1004 if (!fRunTimeLinkSuccess)
1005 {
1006 EMSG2(_(e_libcall), funcname);
1007 return FAIL;
1008 }
1009
1010 return OK;
1011}
1012#endif
1013
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014/*
1015 * Debugging helper: expose the MCH_WRITE_DUMP stuff to other modules
1016 */
1017 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001018DumpPutS(const char *psz UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019{
1020# ifdef MCH_WRITE_DUMP
1021 if (fdDump)
1022 {
1023 fputs(psz, fdDump);
1024 if (psz[strlen(psz) - 1] != '\n')
1025 fputc('\n', fdDump);
1026 fflush(fdDump);
1027 }
1028# endif
1029}
1030
1031#ifdef _DEBUG
1032
1033void __cdecl
1034Trace(
1035 char *pszFormat,
1036 ...)
1037{
1038 CHAR szBuff[2048];
1039 va_list args;
1040
1041 va_start(args, pszFormat);
1042 vsprintf(szBuff, pszFormat, args);
1043 va_end(args);
1044
1045 OutputDebugString(szBuff);
1046}
1047
1048#endif //_DEBUG
1049
Bram Moolenaar843ee412004-06-30 16:16:41 +00001050#if !defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001051# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052extern HWND g_hWnd; /* This is in os_win32.c. */
1053# endif
1054
1055/*
1056 * Showing the printer dialog is tricky since we have no GUI
1057 * window to parent it. The following routines are needed to
1058 * get the window parenting and Z-order to work properly.
1059 */
1060 static void
1061GetConsoleHwnd(void)
1062{
1063# define MY_BUFSIZE 1024 // Buffer size for console window titles.
1064
1065 char pszNewWindowTitle[MY_BUFSIZE]; // Contains fabricated WindowTitle.
1066 char pszOldWindowTitle[MY_BUFSIZE]; // Contains original WindowTitle.
1067
1068 /* Skip if it's already set. */
1069 if (s_hwnd != 0)
1070 return;
1071
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001072# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 /* Window handle may have been found by init code (Windows NT only) */
1074 if (g_hWnd != 0)
1075 {
1076 s_hwnd = g_hWnd;
1077 return;
1078 }
1079# endif
1080
1081 GetConsoleTitle(pszOldWindowTitle, MY_BUFSIZE);
1082
1083 wsprintf(pszNewWindowTitle, "%s/%d/%d",
1084 pszOldWindowTitle,
1085 GetTickCount(),
1086 GetCurrentProcessId());
1087 SetConsoleTitle(pszNewWindowTitle);
1088 Sleep(40);
1089 s_hwnd = FindWindow(NULL, pszNewWindowTitle);
1090
1091 SetConsoleTitle(pszOldWindowTitle);
1092}
Bram Moolenaar843ee412004-06-30 16:16:41 +00001093
1094/*
1095 * Console implementation of ":winpos".
1096 */
1097 int
1098mch_get_winpos(int *x, int *y)
1099{
1100 RECT rect;
1101
1102 GetConsoleHwnd();
1103 GetWindowRect(s_hwnd, &rect);
1104 *x = rect.left;
1105 *y = rect.top;
1106 return OK;
1107}
1108
1109/*
1110 * Console implementation of ":winpos x y".
1111 */
1112 void
1113mch_set_winpos(int x, int y)
1114{
1115 GetConsoleHwnd();
1116 SetWindowPos(s_hwnd, NULL, x, y, 0, 0,
1117 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
1118}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119#endif
1120
1121#if (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) || defined(PROTO)
1122
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123/*=================================================================
1124 * Win32 printer stuff
1125 */
1126
1127static HFONT prt_font_handles[2][2][2];
1128static PRINTDLG prt_dlg;
1129static const int boldface[2] = {FW_REGULAR, FW_BOLD};
1130static TEXTMETRIC prt_tm;
1131static int prt_line_height;
1132static int prt_number_width;
1133static int prt_left_margin;
1134static int prt_right_margin;
1135static int prt_top_margin;
1136static char_u szAppName[] = TEXT("VIM");
1137static HWND hDlgPrint;
1138static int *bUserAbort = NULL;
1139static char_u *prt_name = NULL;
1140
1141/* Defines which are also in vim.rc. */
1142#define IDC_BOX1 400
1143#define IDC_PRINTTEXT1 401
1144#define IDC_PRINTTEXT2 402
1145#define IDC_PROGRESS 403
1146
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001147#if !defined(FEAT_MBYTE)
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001148# define vimSetDlgItemText(h, i, s) SetDlgItemText(h, i, s)
1149#else
1150 static BOOL
1151vimSetDlgItemText(HWND hDlg, int nIDDlgItem, char_u *s)
1152{
1153 WCHAR *wp = NULL;
1154 BOOL ret;
1155
1156 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1157 {
1158 wp = enc_to_utf16(s, NULL);
1159 }
1160 if (wp != NULL)
1161 {
1162 ret = SetDlgItemTextW(hDlg, nIDDlgItem, wp);
1163 vim_free(wp);
1164 return ret;
1165 }
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001166 return SetDlgItemText(hDlg, nIDDlgItem, (LPCSTR)s);
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001167}
1168#endif
1169
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170/*
1171 * Convert BGR to RGB for Windows GDI calls
1172 */
1173 static COLORREF
1174swap_me(COLORREF colorref)
1175{
1176 int temp;
1177 char *ptr = (char *)&colorref;
1178
1179 temp = *(ptr);
1180 *(ptr ) = *(ptr + 2);
1181 *(ptr + 2) = temp;
1182 return colorref;
1183}
1184
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001185/* Attempt to make this work for old and new compilers */
Bram Moolenaar9f733d12011-09-21 20:09:42 +02001186#if !defined(_WIN64) && (!defined(_MSC_VER) || _MSC_VER < 1300)
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001187# define PDP_RETVAL BOOL
1188#else
1189# define PDP_RETVAL INT_PTR
1190#endif
1191
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001192 static PDP_RETVAL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001193PrintDlgProc(
1194 HWND hDlg,
1195 UINT message,
1196 WPARAM wParam UNUSED,
1197 LPARAM lParam UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198{
1199#ifdef FEAT_GETTEXT
1200 NONCLIENTMETRICS nm;
1201 static HFONT hfont;
1202#endif
1203
1204 switch (message)
1205 {
1206 case WM_INITDIALOG:
1207#ifdef FEAT_GETTEXT
1208 nm.cbSize = sizeof(NONCLIENTMETRICS);
1209 if (SystemParametersInfo(
1210 SPI_GETNONCLIENTMETRICS,
1211 sizeof(NONCLIENTMETRICS),
1212 &nm,
1213 0))
1214 {
1215 char buff[MAX_PATH];
1216 int i;
1217
1218 /* Translate the dialog texts */
1219 hfont = CreateFontIndirect(&nm.lfMessageFont);
1220 for (i = IDC_PRINTTEXT1; i <= IDC_PROGRESS; i++)
1221 {
1222 SendDlgItemMessage(hDlg, i, WM_SETFONT, (WPARAM)hfont, 1);
1223 if (GetDlgItemText(hDlg,i, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001224 vimSetDlgItemText(hDlg,i, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 }
1226 SendDlgItemMessage(hDlg, IDCANCEL,
1227 WM_SETFONT, (WPARAM)hfont, 1);
1228 if (GetDlgItemText(hDlg,IDCANCEL, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001229 vimSetDlgItemText(hDlg,IDCANCEL, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 }
1231#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001232 SetWindowText(hDlg, (LPCSTR)szAppName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 if (prt_name != NULL)
1234 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001235 vimSetDlgItemText(hDlg, IDC_PRINTTEXT2, (char_u *)prt_name);
Bram Moolenaard23a8232018-02-10 18:45:26 +01001236 VIM_CLEAR(prt_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 }
1238 EnableMenuItem(GetSystemMenu(hDlg, FALSE), SC_CLOSE, MF_GRAYED);
1239#ifndef FEAT_GUI
1240 BringWindowToTop(s_hwnd);
1241#endif
1242 return TRUE;
1243
1244 case WM_COMMAND:
1245 *bUserAbort = TRUE;
1246 EnableWindow(GetParent(hDlg), TRUE);
1247 DestroyWindow(hDlg);
1248 hDlgPrint = NULL;
1249#ifdef FEAT_GETTEXT
1250 DeleteObject(hfont);
1251#endif
1252 return TRUE;
1253 }
1254 return FALSE;
1255}
1256
1257 static BOOL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001258AbortProc(HDC hdcPrn UNUSED, int iCode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259{
1260 MSG msg;
1261
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001262 while (!*bUserAbort && pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 {
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001264 if (!hDlgPrint || !pIsDialogMessage(hDlgPrint, &msg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 {
1266 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001267 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 }
1269 }
1270 return !*bUserAbort;
1271}
1272
1273#ifndef FEAT_GUI
1274
Bram Moolenaar26fdd7d2011-11-30 13:42:44 +01001275 static UINT_PTR CALLBACK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276PrintHookProc(
1277 HWND hDlg, // handle to dialog box
1278 UINT uiMsg, // message identifier
1279 WPARAM wParam, // message parameter
1280 LPARAM lParam // message parameter
1281 )
1282{
1283 HWND hwndOwner;
1284 RECT rc, rcDlg, rcOwner;
1285 PRINTDLG *pPD;
1286
1287 if (uiMsg == WM_INITDIALOG)
1288 {
1289 // Get the owner window and dialog box rectangles.
1290 if ((hwndOwner = GetParent(hDlg)) == NULL)
1291 hwndOwner = GetDesktopWindow();
1292
1293 GetWindowRect(hwndOwner, &rcOwner);
1294 GetWindowRect(hDlg, &rcDlg);
1295 CopyRect(&rc, &rcOwner);
1296
1297 // Offset the owner and dialog box rectangles so that
1298 // right and bottom values represent the width and
1299 // height, and then offset the owner again to discard
1300 // space taken up by the dialog box.
1301
1302 OffsetRect(&rcDlg, -rcDlg.left, -rcDlg.top);
1303 OffsetRect(&rc, -rc.left, -rc.top);
1304 OffsetRect(&rc, -rcDlg.right, -rcDlg.bottom);
1305
1306 // The new position is the sum of half the remaining
1307 // space and the owner's original position.
1308
1309 SetWindowPos(hDlg,
1310 HWND_TOP,
1311 rcOwner.left + (rc.right / 2),
1312 rcOwner.top + (rc.bottom / 2),
1313 0, 0, // ignores size arguments
1314 SWP_NOSIZE);
1315
1316 /* tackle the printdlg copiesctrl problem */
1317 pPD = (PRINTDLG *)lParam;
1318 pPD->nCopies = (WORD)pPD->lCustData;
1319 SetDlgItemInt( hDlg, edt3, pPD->nCopies, FALSE );
1320 /* Bring the window to top */
1321 BringWindowToTop(GetParent(hDlg));
1322 SetForegroundWindow(hDlg);
1323 }
1324
1325 return FALSE;
1326}
1327#endif
1328
1329 void
1330mch_print_cleanup(void)
1331{
1332 int pifItalic;
1333 int pifBold;
1334 int pifUnderline;
1335
1336 for (pifBold = 0; pifBold <= 1; pifBold++)
1337 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1338 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1339 DeleteObject(prt_font_handles[pifBold][pifItalic][pifUnderline]);
1340
1341 if (prt_dlg.hDC != NULL)
1342 DeleteDC(prt_dlg.hDC);
1343 if (!*bUserAbort)
1344 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1345}
1346
1347 static int
1348to_device_units(int idx, int dpi, int physsize, int offset, int def_number)
1349{
1350 int ret = 0;
1351 int u;
1352 int nr;
1353
1354 u = prt_get_unit(idx);
1355 if (u == PRT_UNIT_NONE)
1356 {
1357 u = PRT_UNIT_PERC;
1358 nr = def_number;
1359 }
1360 else
1361 nr = printer_opts[idx].number;
1362
1363 switch (u)
1364 {
1365 case PRT_UNIT_PERC:
1366 ret = (physsize * nr) / 100;
1367 break;
1368 case PRT_UNIT_INCH:
1369 ret = (nr * dpi);
1370 break;
1371 case PRT_UNIT_MM:
1372 ret = (nr * 10 * dpi) / 254;
1373 break;
1374 case PRT_UNIT_POINT:
1375 ret = (nr * 10 * dpi) / 720;
1376 break;
1377 }
1378
1379 if (ret < offset)
1380 return 0;
1381 else
1382 return ret - offset;
1383}
1384
1385 static int
1386prt_get_cpl(void)
1387{
1388 int hr;
1389 int phyw;
1390 int dvoff;
1391 int rev_offset;
1392 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393
1394 GetTextMetrics(prt_dlg.hDC, &prt_tm);
1395 prt_line_height = prt_tm.tmHeight + prt_tm.tmExternalLeading;
1396
1397 hr = GetDeviceCaps(prt_dlg.hDC, HORZRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALWIDTH);
1399 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSX);
1401
1402 rev_offset = phyw - (dvoff + hr);
1403
1404 prt_left_margin = to_device_units(OPT_PRINT_LEFT, dpi, phyw, dvoff, 10);
1405 if (prt_use_number())
1406 {
1407 prt_number_width = PRINT_NUMBER_WIDTH * prt_tm.tmAveCharWidth;
1408 prt_left_margin += prt_number_width;
1409 }
1410 else
1411 prt_number_width = 0;
1412
1413 prt_right_margin = hr - to_device_units(OPT_PRINT_RIGHT, dpi, phyw,
1414 rev_offset, 5);
1415
1416 return (prt_right_margin - prt_left_margin) / prt_tm.tmAveCharWidth;
1417}
1418
1419 static int
1420prt_get_lpp(void)
1421{
1422 int vr;
1423 int phyw;
1424 int dvoff;
1425 int rev_offset;
1426 int bottom_margin;
1427 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428
1429 vr = GetDeviceCaps(prt_dlg.hDC, VERTRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALHEIGHT);
1431 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSY);
1433
1434 rev_offset = phyw - (dvoff + vr);
1435
1436 prt_top_margin = to_device_units(OPT_PRINT_TOP, dpi, phyw, dvoff, 5);
1437
1438 /* adjust top margin if there is a header */
1439 prt_top_margin += prt_line_height * prt_header_height();
1440
1441 bottom_margin = vr - to_device_units(OPT_PRINT_BOT, dpi, phyw,
1442 rev_offset, 5);
1443
1444 return (bottom_margin - prt_top_margin) / prt_line_height;
1445}
1446
1447 int
1448mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit)
1449{
1450 static HGLOBAL stored_dm = NULL;
1451 static HGLOBAL stored_devn = NULL;
1452 static int stored_nCopies = 1;
1453 static int stored_nFlags = 0;
1454
1455 LOGFONT fLogFont;
1456 int pifItalic;
1457 int pifBold;
1458 int pifUnderline;
1459
1460 DEVMODE *mem;
1461 DEVNAMES *devname;
1462 int i;
1463
1464 bUserAbort = &(psettings->user_abort);
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001465 vim_memset(&prt_dlg, 0, sizeof(PRINTDLG));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 prt_dlg.lStructSize = sizeof(PRINTDLG);
1467#ifndef FEAT_GUI
1468 GetConsoleHwnd(); /* get value of s_hwnd */
1469#endif
1470 prt_dlg.hwndOwner = s_hwnd;
1471 prt_dlg.Flags = PD_NOPAGENUMS | PD_NOSELECTION | PD_RETURNDC;
1472 if (!forceit)
1473 {
1474 prt_dlg.hDevMode = stored_dm;
1475 prt_dlg.hDevNames = stored_devn;
1476 prt_dlg.lCustData = stored_nCopies; // work around bug in print dialog
1477#ifndef FEAT_GUI
1478 /*
1479 * Use hook to prevent console window being sent to back
1480 */
1481 prt_dlg.lpfnPrintHook = PrintHookProc;
1482 prt_dlg.Flags |= PD_ENABLEPRINTHOOK;
1483#endif
1484 prt_dlg.Flags |= stored_nFlags;
1485 }
1486
1487 /*
1488 * If bang present, return default printer setup with no dialog
1489 * never show dialog if we are running over telnet
1490 */
1491 if (forceit
1492#ifndef FEAT_GUI
1493 || !term_console
1494#endif
1495 )
1496 {
1497 prt_dlg.Flags |= PD_RETURNDEFAULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 /*
1499 * MSDN suggests setting the first parameter to WINSPOOL for
1500 * NT, but NULL appears to work just as well.
1501 */
1502 if (*p_pdev != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001503 prt_dlg.hDC = CreateDC(NULL, (LPCSTR)p_pdev, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 {
1506 prt_dlg.Flags |= PD_RETURNDEFAULT;
1507 if (PrintDlg(&prt_dlg) == 0)
1508 goto init_fail_dlg;
1509 }
1510 }
1511 else if (PrintDlg(&prt_dlg) == 0)
1512 goto init_fail_dlg;
1513 else
1514 {
1515 /*
1516 * keep the previous driver context
1517 */
1518 stored_dm = prt_dlg.hDevMode;
1519 stored_devn = prt_dlg.hDevNames;
1520 stored_nFlags = prt_dlg.Flags;
1521 stored_nCopies = prt_dlg.nCopies;
1522 }
1523
1524 if (prt_dlg.hDC == NULL)
1525 {
1526 EMSG(_("E237: Printer selection failed"));
1527 mch_print_cleanup();
1528 return FALSE;
1529 }
1530
1531 /* Not all printer drivers report the support of color (or grey) in the
1532 * same way. Let's set has_color if there appears to be some way to print
1533 * more than B&W. */
1534 i = GetDeviceCaps(prt_dlg.hDC, NUMCOLORS);
1535 psettings->has_color = (GetDeviceCaps(prt_dlg.hDC, BITSPIXEL) > 1
1536 || GetDeviceCaps(prt_dlg.hDC, PLANES) > 1
1537 || i > 2 || i == -1);
1538
1539 /* Ensure all font styles are baseline aligned */
1540 SetTextAlign(prt_dlg.hDC, TA_BASELINE|TA_LEFT);
1541
1542 /*
1543 * On some windows systems the nCopies parameter is not
1544 * passed back correctly. It must be retrieved from the
1545 * hDevMode struct.
1546 */
1547 mem = (DEVMODE *)GlobalLock(prt_dlg.hDevMode);
1548 if (mem != NULL)
1549 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 if (mem->dmCopies != 1)
1551 stored_nCopies = mem->dmCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 if ((mem->dmFields & DM_DUPLEX) && (mem->dmDuplex & ~DMDUP_SIMPLEX))
1553 psettings->duplex = TRUE;
1554 if ((mem->dmFields & DM_COLOR) && (mem->dmColor & DMCOLOR_COLOR))
1555 psettings->has_color = TRUE;
1556 }
1557 GlobalUnlock(prt_dlg.hDevMode);
1558
1559 devname = (DEVNAMES *)GlobalLock(prt_dlg.hDevNames);
1560 if (devname != 0)
1561 {
1562 char_u *printer_name = (char_u *)devname + devname->wDeviceOffset;
1563 char_u *port_name = (char_u *)devname +devname->wOutputOffset;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001564 char_u *text = (char_u *)_("to %s on %s");
Bram Moolenaarf191d552014-10-09 17:05:56 +02001565#ifdef FEAT_MBYTE
1566 char_u *printer_name_orig = printer_name;
1567 char_u *port_name_orig = port_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568
Bram Moolenaarf191d552014-10-09 17:05:56 +02001569 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1570 {
1571 char_u *to_free = NULL;
1572 int maxlen;
1573
Bram Moolenaar861d80a2014-10-16 20:35:36 +02001574 acp_to_enc(printer_name, (int)STRLEN(printer_name), &to_free,
1575 &maxlen);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001576 if (to_free != NULL)
1577 printer_name = to_free;
Bram Moolenaar861d80a2014-10-16 20:35:36 +02001578 acp_to_enc(port_name, (int)STRLEN(port_name), &to_free, &maxlen);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001579 if (to_free != NULL)
1580 port_name = to_free;
1581 }
1582#endif
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00001583 prt_name = alloc((unsigned)(STRLEN(printer_name) + STRLEN(port_name)
1584 + STRLEN(text)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 if (prt_name != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001586 wsprintf((char *)prt_name, (const char *)text,
1587 printer_name, port_name);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001588#ifdef FEAT_MBYTE
1589 if (printer_name != printer_name_orig)
1590 vim_free(printer_name);
1591 if (port_name != port_name_orig)
1592 vim_free(port_name);
1593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 }
1595 GlobalUnlock(prt_dlg.hDevNames);
1596
1597 /*
1598 * Initialise the font according to 'printfont'
1599 */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001600 vim_memset(&fLogFont, 0, sizeof(fLogFont));
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001601 if (get_logfont(&fLogFont, p_pfn, prt_dlg.hDC, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 {
1603 EMSG2(_("E613: Unknown printer font: %s"), p_pfn);
1604 mch_print_cleanup();
1605 return FALSE;
1606 }
1607
1608 for (pifBold = 0; pifBold <= 1; pifBold++)
1609 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1610 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1611 {
1612 fLogFont.lfWeight = boldface[pifBold];
1613 fLogFont.lfItalic = pifItalic;
1614 fLogFont.lfUnderline = pifUnderline;
1615 prt_font_handles[pifBold][pifItalic][pifUnderline]
1616 = CreateFontIndirect(&fLogFont);
1617 }
1618
1619 SetBkMode(prt_dlg.hDC, OPAQUE);
1620 SelectObject(prt_dlg.hDC, prt_font_handles[0][0][0]);
1621
1622 /*
1623 * Fill in the settings struct
1624 */
1625 psettings->chars_per_line = prt_get_cpl();
1626 psettings->lines_per_page = prt_get_lpp();
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001627 if (prt_dlg.Flags & PD_USEDEVMODECOPIESANDCOLLATE)
1628 {
1629 psettings->n_collated_copies = (prt_dlg.Flags & PD_COLLATE)
1630 ? prt_dlg.nCopies : 1;
1631 psettings->n_uncollated_copies = (prt_dlg.Flags & PD_COLLATE)
1632 ? 1 : prt_dlg.nCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001634 if (psettings->n_collated_copies == 0)
1635 psettings->n_collated_copies = 1;
1636
1637 if (psettings->n_uncollated_copies == 0)
1638 psettings->n_uncollated_copies = 1;
Bram Moolenaarb04a98f2016-12-01 20:32:29 +01001639 }
1640 else
1641 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 psettings->n_collated_copies = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 psettings->n_uncollated_copies = 1;
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001644 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645
1646 psettings->jobname = jobname;
1647
1648 return TRUE;
1649
1650init_fail_dlg:
1651 {
1652 DWORD err = CommDlgExtendedError();
1653
1654 if (err)
1655 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 char_u *buf;
1657
1658 /* I suspect FormatMessage() doesn't work for values returned by
1659 * CommDlgExtendedError(). What does? */
1660 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
1661 FORMAT_MESSAGE_FROM_SYSTEM |
1662 FORMAT_MESSAGE_IGNORE_INSERTS,
1663 NULL, err, 0, (LPTSTR)(&buf), 0, NULL);
1664 EMSG2(_("E238: Print error: %s"),
1665 buf == NULL ? (char_u *)_("Unknown") : buf);
1666 LocalFree((LPVOID)(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 }
1668 else
1669 msg_clr_eos(); /* Maybe canceled */
1670
1671 mch_print_cleanup();
1672 return FALSE;
1673 }
1674}
1675
1676
1677 int
1678mch_print_begin(prt_settings_T *psettings)
1679{
1680 int ret;
1681 static DOCINFO di;
1682 char szBuffer[300];
1683
1684 hDlgPrint = CreateDialog(GetModuleHandle(NULL), TEXT("PrintDlgBox"),
1685 prt_dlg.hwndOwner, PrintDlgProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 SetAbortProc(prt_dlg.hDC, AbortProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 wsprintf(szBuffer, _("Printing '%s'"), gettail(psettings->jobname));
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001688 vimSetDlgItemText(hDlgPrint, IDC_PRINTTEXT1, (char_u *)szBuffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001690 vim_memset(&di, 0, sizeof(DOCINFO));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 di.cbSize = sizeof(DOCINFO);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001692 di.lpszDocName = (LPCSTR)psettings->jobname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 ret = StartDoc(prt_dlg.hDC, &di);
1694
1695#ifdef FEAT_GUI
1696 /* Give focus back to main window (when using MDI). */
1697 SetFocus(s_hwnd);
1698#endif
1699
1700 return (ret > 0);
1701}
1702
1703 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001704mch_print_end(prt_settings_T *psettings UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705{
1706 EndDoc(prt_dlg.hDC);
1707 if (!*bUserAbort)
1708 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1709}
1710
1711 int
1712mch_print_end_page(void)
1713{
1714 return (EndPage(prt_dlg.hDC) > 0);
1715}
1716
1717 int
1718mch_print_begin_page(char_u *msg)
1719{
1720 if (msg != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001721 vimSetDlgItemText(hDlgPrint, IDC_PROGRESS, msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 return (StartPage(prt_dlg.hDC) > 0);
1723}
1724
1725 int
1726mch_print_blank_page(void)
1727{
1728 return (mch_print_begin_page(NULL) ? (mch_print_end_page()) : FALSE);
1729}
1730
1731static int prt_pos_x = 0;
1732static int prt_pos_y = 0;
1733
1734 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001735mch_print_start_line(int margin, int page_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736{
1737 if (margin)
1738 prt_pos_x = -prt_number_width;
1739 else
1740 prt_pos_x = 0;
1741 prt_pos_y = page_line * prt_line_height
1742 + prt_tm.tmAscent + prt_tm.tmExternalLeading;
1743}
1744
1745 int
1746mch_print_text_out(char_u *p, int len)
1747{
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001748#if defined(FEAT_PROPORTIONAL_FONTS) || defined(FEAT_MBYTE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 SIZE sz;
1750#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001751#if defined(FEAT_MBYTE)
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001752 WCHAR *wp = NULL;
1753 int wlen = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001755 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1756 {
1757 wp = enc_to_utf16(p, &wlen);
1758 }
1759 if (wp != NULL)
1760 {
1761 int ret = FALSE;
1762
1763 TextOutW(prt_dlg.hDC, prt_pos_x + prt_left_margin,
1764 prt_pos_y + prt_top_margin, wp, wlen);
1765 GetTextExtentPoint32W(prt_dlg.hDC, wp, wlen, &sz);
1766 vim_free(wp);
1767 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
1768 /* This is wrong when printing spaces for a TAB. */
1769 if (p[len] != NUL)
1770 {
1771 wlen = MB_PTR2LEN(p + len);
1772 wp = enc_to_utf16(p + len, &wlen);
1773 if (wp != NULL)
1774 {
1775 GetTextExtentPoint32W(prt_dlg.hDC, wp, 1, &sz);
1776 ret = (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
1777 vim_free(wp);
1778 }
1779 }
1780 return ret;
1781 }
1782#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 TextOut(prt_dlg.hDC, prt_pos_x + prt_left_margin,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001784 prt_pos_y + prt_top_margin,
1785 (LPCSTR)p, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786#ifndef FEAT_PROPORTIONAL_FONTS
1787 prt_pos_x += len * prt_tm.tmAveCharWidth;
1788 return (prt_pos_x + prt_left_margin + prt_tm.tmAveCharWidth
1789 + prt_tm.tmOverhang > prt_right_margin);
1790#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001791 GetTextExtentPoint32(prt_dlg.hDC, (LPCSTR)p, len, &sz);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
1793 /* This is wrong when printing spaces for a TAB. */
1794 if (p[len] == NUL)
1795 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 GetTextExtentPoint32(prt_dlg.hDC, p + len, 1, &sz);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 return (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
1798#endif
1799}
1800
1801 void
1802mch_print_set_font(int iBold, int iItalic, int iUnderline)
1803{
1804 SelectObject(prt_dlg.hDC, prt_font_handles[iBold][iItalic][iUnderline]);
1805}
1806
1807 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001808mch_print_set_bg(long_u bgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001810 SetBkColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1811 swap_me((COLORREF)bgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 /*
1813 * With a white background we can draw characters transparent, which is
1814 * good for italic characters that overlap to the next char cell.
1815 */
1816 if (bgcol == 0xffffffUL)
1817 SetBkMode(prt_dlg.hDC, TRANSPARENT);
1818 else
1819 SetBkMode(prt_dlg.hDC, OPAQUE);
1820}
1821
1822 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001823mch_print_set_fg(long_u fgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001825 SetTextColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1826 swap_me((COLORREF)fgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827}
1828
1829#endif /*FEAT_PRINTER && !FEAT_POSTSCRIPT*/
1830
Bram Moolenaar58d98232005-07-23 22:25:46 +00001831
1832
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833#if defined(FEAT_SHORTCUT) || defined(PROTO)
Bram Moolenaar82881492012-11-20 16:53:39 +01001834# ifndef PROTO
1835# include <shlobj.h>
1836# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837
1838/*
1839 * When "fname" is the name of a shortcut (*.lnk) resolve the file it points
1840 * to and return that name in allocated memory.
1841 * Otherwise NULL is returned.
1842 */
1843 char_u *
1844mch_resolve_shortcut(char_u *fname)
1845{
1846 HRESULT hr;
1847 IShellLink *psl = NULL;
1848 IPersistFile *ppf = NULL;
1849 OLECHAR wsz[MAX_PATH];
1850 WIN32_FIND_DATA ffd; // we get those free of charge
Bram Moolenaar604729e2013-08-30 16:44:19 +02001851 CHAR buf[MAX_PATH]; // could have simply reused 'wsz'...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 char_u *rfname = NULL;
1853 int len;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001854# ifdef FEAT_MBYTE
1855 IShellLinkW *pslw = NULL;
1856 WIN32_FIND_DATAW ffdw; // we get those free of charge
1857# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858
1859 /* Check if the file name ends in ".lnk". Avoid calling
1860 * CoCreateInstance(), it's quite slow. */
1861 if (fname == NULL)
1862 return rfname;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001863 len = (int)STRLEN(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 if (len <= 4 || STRNICMP(fname + len - 4, ".lnk", 4) != 0)
1865 return rfname;
1866
1867 CoInitialize(NULL);
1868
Bram Moolenaar604729e2013-08-30 16:44:19 +02001869# ifdef FEAT_MBYTE
1870 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1871 {
1872 // create a link manager object and request its interface
1873 hr = CoCreateInstance(
1874 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
1875 &IID_IShellLinkW, (void**)&pslw);
1876 if (hr == S_OK)
1877 {
1878 WCHAR *p = enc_to_utf16(fname, NULL);
1879
1880 if (p != NULL)
1881 {
1882 // Get a pointer to the IPersistFile interface.
1883 hr = pslw->lpVtbl->QueryInterface(
1884 pslw, &IID_IPersistFile, (void**)&ppf);
1885 if (hr != S_OK)
1886 goto shortcut_errorw;
1887
1888 // "load" the name and resolve the link
1889 hr = ppf->lpVtbl->Load(ppf, p, STGM_READ);
1890 if (hr != S_OK)
1891 goto shortcut_errorw;
1892# if 0 // This makes Vim wait a long time if the target does not exist.
1893 hr = pslw->lpVtbl->Resolve(pslw, NULL, SLR_NO_UI);
1894 if (hr != S_OK)
1895 goto shortcut_errorw;
1896# endif
1897
1898 // Get the path to the link target.
1899 ZeroMemory(wsz, MAX_PATH * sizeof(WCHAR));
1900 hr = pslw->lpVtbl->GetPath(pslw, wsz, MAX_PATH, &ffdw, 0);
1901 if (hr == S_OK && wsz[0] != NUL)
1902 rfname = utf16_to_enc(wsz, NULL);
1903
1904shortcut_errorw:
1905 vim_free(p);
Bram Moolenaarcd981f22014-02-11 17:06:00 +01001906 goto shortcut_end;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001907 }
1908 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001909 goto shortcut_end;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001910 }
1911# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 // create a link manager object and request its interface
1913 hr = CoCreateInstance(
1914 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
1915 &IID_IShellLink, (void**)&psl);
1916 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001917 goto shortcut_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918
1919 // Get a pointer to the IPersistFile interface.
1920 hr = psl->lpVtbl->QueryInterface(
1921 psl, &IID_IPersistFile, (void**)&ppf);
1922 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001923 goto shortcut_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924
1925 // full path string must be in Unicode.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001926 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)fname, -1, wsz, MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00001928 // "load" the name and resolve the link
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 hr = ppf->lpVtbl->Load(ppf, wsz, STGM_READ);
1930 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001931 goto shortcut_end;
1932# if 0 // This makes Vim wait a long time if the target doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 hr = psl->lpVtbl->Resolve(psl, NULL, SLR_NO_UI);
1934 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001935 goto shortcut_end;
1936# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937
1938 // Get the path to the link target.
1939 ZeroMemory(buf, MAX_PATH);
1940 hr = psl->lpVtbl->GetPath(psl, buf, MAX_PATH, &ffd, 0);
1941 if (hr == S_OK && buf[0] != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001942 rfname = vim_strsave((char_u *)buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943
Bram Moolenaar604729e2013-08-30 16:44:19 +02001944shortcut_end:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 // Release all interface pointers (both belong to the same object)
1946 if (ppf != NULL)
1947 ppf->lpVtbl->Release(ppf);
1948 if (psl != NULL)
1949 psl->lpVtbl->Release(psl);
Bram Moolenaar604729e2013-08-30 16:44:19 +02001950# ifdef FEAT_MBYTE
1951 if (pslw != NULL)
1952 pslw->lpVtbl->Release(pslw);
1953# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954
1955 CoUninitialize();
1956 return rfname;
1957}
1958#endif
1959
1960#if (defined(FEAT_EVAL) && !defined(FEAT_GUI)) || defined(PROTO)
1961/*
1962 * Bring ourselves to the foreground. Does work if the OS doesn't allow it.
1963 */
1964 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001965win32_set_foreground(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966{
1967# ifndef FEAT_GUI
1968 GetConsoleHwnd(); /* get value of s_hwnd */
1969# endif
1970 if (s_hwnd != 0)
1971 SetForegroundWindow(s_hwnd);
1972}
1973#endif
1974
1975#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
1976/*
1977 * Client-server code for Vim
1978 *
1979 * Originally written by Paul Moore
1980 */
1981
1982/* In order to handle inter-process messages, we need to have a window. But
1983 * the functions in this module can be called before the main GUI window is
1984 * created (and may also be called in the console version, where there is no
1985 * GUI window at all).
1986 *
1987 * So we create a hidden window, and arrange to destroy it on exit.
1988 */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001989HWND message_window = 0; /* window that's handling messages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990
1991#define VIM_CLASSNAME "VIM_MESSAGES"
1992#define VIM_CLASSNAME_LEN (sizeof(VIM_CLASSNAME) - 1)
1993
1994/* Communication is via WM_COPYDATA messages. The message type is send in
1995 * the dwData parameter. Types are defined here. */
1996#define COPYDATA_KEYS 0
1997#define COPYDATA_REPLY 1
1998#define COPYDATA_EXPR 10
1999#define COPYDATA_RESULT 11
2000#define COPYDATA_ERROR_RESULT 12
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002001#define COPYDATA_ENCODING 20
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002
2003/* This is a structure containing a server HWND and its name. */
2004struct server_id
2005{
2006 HWND hwnd;
2007 char_u *name;
2008};
2009
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002010/* Last received 'encoding' that the client uses. */
2011static char_u *client_enc = NULL;
2012
2013/*
2014 * Tell the other side what encoding we are using.
2015 * Errors are ignored.
2016 */
2017 static void
2018serverSendEnc(HWND target)
2019{
2020 COPYDATASTRUCT data;
2021
2022 data.dwData = COPYDATA_ENCODING;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002023#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002024 data.cbData = (DWORD)STRLEN(p_enc) + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002025 data.lpData = p_enc;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002026#else
Bram Moolenaar8765a4a2010-07-27 22:41:43 +02002027 data.cbData = (DWORD)STRLEN("latin1") + 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002028 data.lpData = "latin1";
2029#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002030 (void)SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2031 (LPARAM)(&data));
2032}
2033
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034/*
2035 * Clean up on exit. This destroys the hidden message window.
2036 */
2037 static void
2038#ifdef __BORLANDC__
2039 _RTLENTRYF
2040#endif
2041CleanUpMessaging(void)
2042{
2043 if (message_window != 0)
2044 {
2045 DestroyWindow(message_window);
2046 message_window = 0;
2047 }
2048}
2049
2050static int save_reply(HWND server, char_u *reply, int expr);
2051
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002052/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 * The window procedure for the hidden message window.
2054 * It handles callback messages and notifications from servers.
2055 * In order to process these messages, it is necessary to run a
2056 * message loop. Code which may run before the main message loop
2057 * is started (in the GUI) is careful to pump messages when it needs
2058 * to. Features which require message delivery during normal use will
2059 * not work in the console version - this basically means those
2060 * features which allow Vim to act as a server, rather than a client.
2061 */
2062 static LRESULT CALLBACK
2063Messaging_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
2064{
2065 if (msg == WM_COPYDATA)
2066 {
2067 /* This is a message from another Vim. The dwData member of the
2068 * COPYDATASTRUCT determines the type of message:
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002069 * COPYDATA_ENCODING:
2070 * The encoding that the client uses. Following messages will
2071 * use this encoding, convert if needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 * COPYDATA_KEYS:
2073 * A key sequence. We are a server, and a client wants these keys
2074 * adding to the input queue.
2075 * COPYDATA_REPLY:
2076 * A reply. We are a client, and a server has sent this message
2077 * in response to a request. (server2client())
2078 * COPYDATA_EXPR:
2079 * An expression. We are a server, and a client wants us to
2080 * evaluate this expression.
2081 * COPYDATA_RESULT:
2082 * A reply. We are a client, and a server has sent this message
2083 * in response to a COPYDATA_EXPR.
2084 * COPYDATA_ERROR_RESULT:
2085 * A reply. We are a client, and a server has sent this message
2086 * in response to a COPYDATA_EXPR that failed to evaluate.
2087 */
2088 COPYDATASTRUCT *data = (COPYDATASTRUCT*)lParam;
2089 HWND sender = (HWND)wParam;
2090 COPYDATASTRUCT reply;
2091 char_u *res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 int retval;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002093 char_u *str;
2094 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095
2096 switch (data->dwData)
2097 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002098 case COPYDATA_ENCODING:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002099# ifdef FEAT_MBYTE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002100 /* Remember the encoding that the client uses. */
2101 vim_free(client_enc);
2102 client_enc = enc_canonize((char_u *)data->lpData);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002103# endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002104 return 1;
2105
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 case COPYDATA_KEYS:
2107 /* Remember who sent this, for <client> */
2108 clientWindow = sender;
2109
2110 /* Add the received keys to the input buffer. The loop waiting
2111 * for the user to do something should check the input buffer. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002112 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2113 server_to_input_buf(str);
2114 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115
2116# ifdef FEAT_GUI
2117 /* Wake up the main GUI loop. */
2118 if (s_hwnd != 0)
2119 PostMessage(s_hwnd, WM_NULL, 0, 0);
2120# endif
2121 return 1;
2122
2123 case COPYDATA_EXPR:
2124 /* Remember who sent this, for <client> */
2125 clientWindow = sender;
2126
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002127 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2128 res = eval_client_expr_to_string(str);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002129
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 if (res == NULL)
2131 {
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002132 char *err = _(e_invexprmsg);
2133 size_t len = STRLEN(str) + STRLEN(err) + 5;
2134
Bram Moolenaar1662ce12017-03-19 21:47:50 +01002135 res = alloc((unsigned)len);
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002136 if (res != NULL)
2137 vim_snprintf((char *)res, len, "%s: \"%s\"", err, str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 reply.dwData = COPYDATA_ERROR_RESULT;
2139 }
2140 else
2141 reply.dwData = COPYDATA_RESULT;
2142 reply.lpData = res;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002143 reply.cbData = (DWORD)STRLEN(res) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002145 serverSendEnc(sender);
Bram Moolenaar5246cd72013-06-16 16:41:47 +02002146 retval = (int)SendMessage(sender, WM_COPYDATA,
2147 (WPARAM)message_window, (LPARAM)(&reply));
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002148 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 vim_free(res);
2150 return retval;
2151
2152 case COPYDATA_REPLY:
2153 case COPYDATA_RESULT:
2154 case COPYDATA_ERROR_RESULT:
2155 if (data->lpData != NULL)
2156 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002157 str = serverConvert(client_enc, (char_u *)data->lpData,
2158 &tofree);
2159 if (tofree == NULL)
2160 str = vim_strsave(str);
2161 if (save_reply(sender, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 (data->dwData == COPYDATA_REPLY ? 0 :
2163 (data->dwData == COPYDATA_RESULT ? 1 :
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002164 2))) == FAIL)
2165 vim_free(str);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002166 else if (data->dwData == COPYDATA_REPLY)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 {
Bram Moolenaar427d51c2013-06-16 16:01:25 +02002168 char_u winstr[30];
2169
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002170 sprintf((char *)winstr, PRINTF_HEX_LONG_U, (long_u)sender);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002171 apply_autocmds(EVENT_REMOTEREPLY, winstr, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 TRUE, curbuf);
2173 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 }
2175 return 1;
2176 }
2177
2178 return 0;
2179 }
2180
2181 else if (msg == WM_ACTIVATE && wParam == WA_ACTIVE)
2182 {
2183 /* When the message window is activated (brought to the foreground),
2184 * this actually applies to the text window. */
2185#ifndef FEAT_GUI
2186 GetConsoleHwnd(); /* get value of s_hwnd */
2187#endif
2188 if (s_hwnd != 0)
2189 {
2190 SetForegroundWindow(s_hwnd);
2191 return 0;
2192 }
2193 }
2194
2195 return DefWindowProc(hwnd, msg, wParam, lParam);
2196}
2197
2198/*
2199 * Initialise the message handling process. This involves creating a window
2200 * to handle messages - the window will not be visible.
2201 */
2202 void
2203serverInitMessaging(void)
2204{
2205 WNDCLASS wndclass;
2206 HINSTANCE s_hinst;
2207
2208 /* Clean up on exit */
2209 atexit(CleanUpMessaging);
2210
2211 /* Register a window class - we only really care
2212 * about the window procedure
2213 */
2214 s_hinst = (HINSTANCE)GetModuleHandle(0);
2215 wndclass.style = 0;
2216 wndclass.lpfnWndProc = Messaging_WndProc;
2217 wndclass.cbClsExtra = 0;
2218 wndclass.cbWndExtra = 0;
2219 wndclass.hInstance = s_hinst;
2220 wndclass.hIcon = NULL;
2221 wndclass.hCursor = NULL;
2222 wndclass.hbrBackground = NULL;
2223 wndclass.lpszMenuName = NULL;
2224 wndclass.lpszClassName = VIM_CLASSNAME;
2225 RegisterClass(&wndclass);
2226
2227 /* Create the message window. It will be hidden, so the details don't
2228 * matter. Don't use WS_OVERLAPPEDWINDOW, it will make a shortcut remove
2229 * focus from gvim. */
2230 message_window = CreateWindow(VIM_CLASSNAME, "",
2231 WS_POPUPWINDOW | WS_CAPTION,
2232 CW_USEDEFAULT, CW_USEDEFAULT,
2233 100, 100, NULL, NULL,
2234 s_hinst, NULL);
2235}
2236
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002237/* Used by serverSendToVim() to find an alternate server name. */
2238static char_u *altname_buf_ptr = NULL;
2239
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240/*
2241 * Get the title of the window "hwnd", which is the Vim server name, in
2242 * "name[namelen]" and return the length.
2243 * Returns zero if window "hwnd" is not a Vim server.
2244 */
2245 static int
2246getVimServerName(HWND hwnd, char *name, int namelen)
2247{
2248 int len;
2249 char buffer[VIM_CLASSNAME_LEN + 1];
2250
2251 /* Ignore windows which aren't Vim message windows */
2252 len = GetClassName(hwnd, buffer, sizeof(buffer));
2253 if (len != VIM_CLASSNAME_LEN || STRCMP(buffer, VIM_CLASSNAME) != 0)
2254 return 0;
2255
2256 /* Get the title of the window */
2257 return GetWindowText(hwnd, name, namelen);
2258}
2259
2260 static BOOL CALLBACK
2261enumWindowsGetServer(HWND hwnd, LPARAM lparam)
2262{
2263 struct server_id *id = (struct server_id *)lparam;
2264 char server[MAX_PATH];
2265
2266 /* Get the title of the window */
2267 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2268 return TRUE;
2269
2270 /* If this is the server we're looking for, return its HWND */
2271 if (STRICMP(server, id->name) == 0)
2272 {
2273 id->hwnd = hwnd;
2274 return FALSE;
2275 }
2276
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002277 /* If we are looking for an alternate server, remember this name. */
2278 if (altname_buf_ptr != NULL
2279 && STRNICMP(server, id->name, STRLEN(id->name)) == 0
2280 && vim_isdigit(server[STRLEN(id->name)]))
2281 {
2282 STRCPY(altname_buf_ptr, server);
2283 altname_buf_ptr = NULL; /* don't use another name */
2284 }
2285
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 /* Otherwise, keep looking */
2287 return TRUE;
2288}
2289
2290 static BOOL CALLBACK
2291enumWindowsGetNames(HWND hwnd, LPARAM lparam)
2292{
2293 garray_T *ga = (garray_T *)lparam;
2294 char server[MAX_PATH];
2295
2296 /* Get the title of the window */
2297 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2298 return TRUE;
2299
2300 /* Add the name to the list */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002301 ga_concat(ga, (char_u *)server);
2302 ga_concat(ga, (char_u *)"\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 return TRUE;
2304}
2305
2306 static HWND
2307findServer(char_u *name)
2308{
2309 struct server_id id;
2310
2311 id.name = name;
2312 id.hwnd = 0;
2313
2314 EnumWindows(enumWindowsGetServer, (LPARAM)(&id));
2315
2316 return id.hwnd;
2317}
2318
2319 void
2320serverSetName(char_u *name)
2321{
2322 char_u *ok_name;
2323 HWND hwnd = 0;
2324 int i = 0;
2325 char_u *p;
2326
2327 /* Leave enough space for a 9-digit suffix to ensure uniqueness! */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002328 ok_name = alloc((unsigned)STRLEN(name) + 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329
2330 STRCPY(ok_name, name);
2331 p = ok_name + STRLEN(name);
2332
2333 for (;;)
2334 {
2335 /* This is inefficient - we're doing an EnumWindows loop for each
2336 * possible name. It would be better to grab all names in one go,
2337 * and scan the list each time...
2338 */
2339 hwnd = findServer(ok_name);
2340 if (hwnd == 0)
2341 break;
2342
2343 ++i;
2344 if (i >= 1000)
2345 break;
2346
2347 sprintf((char *)p, "%d", i);
2348 }
2349
2350 if (hwnd != 0)
2351 vim_free(ok_name);
2352 else
2353 {
2354 /* Remember the name */
2355 serverName = ok_name;
2356#ifdef FEAT_TITLE
2357 need_maketitle = TRUE; /* update Vim window title later */
2358#endif
2359
2360 /* Update the message window title */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002361 SetWindowText(message_window, (LPCSTR)ok_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362
2363#ifdef FEAT_EVAL
2364 /* Set the servername variable */
2365 set_vim_var_string(VV_SEND_SERVER, serverName, -1);
2366#endif
2367 }
2368}
2369
2370 char_u *
2371serverGetVimNames(void)
2372{
2373 garray_T ga;
2374
2375 ga_init2(&ga, 1, 100);
2376
2377 EnumWindows(enumWindowsGetNames, (LPARAM)(&ga));
Bram Moolenaar269ec652004-07-29 08:43:53 +00002378 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379
2380 return ga.ga_data;
2381}
2382
2383 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002384serverSendReply(
2385 char_u *name, /* Where to send. */
2386 char_u *reply) /* What to send. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387{
2388 HWND target;
2389 COPYDATASTRUCT data;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002390 long_u n = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391
2392 /* The "name" argument is a magic cookie obtained from expand("<client>").
2393 * It should be of the form 0xXXXXX - i.e. a C hex literal, which is the
2394 * value of the client's message window HWND.
2395 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002396 sscanf((char *)name, SCANF_HEX_LONG_U, &n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 if (n == 0)
2398 return -1;
2399
2400 target = (HWND)n;
2401 if (!IsWindow(target))
2402 return -1;
2403
2404 data.dwData = COPYDATA_REPLY;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002405 data.cbData = (DWORD)STRLEN(reply) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 data.lpData = reply;
2407
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002408 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2410 (LPARAM)(&data)))
2411 return 0;
2412
2413 return -1;
2414}
2415
2416 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002417serverSendToVim(
2418 char_u *name, /* Where to send. */
2419 char_u *cmd, /* What to send. */
2420 char_u **result, /* Result of eval'ed expression */
2421 void *ptarget, /* HWND of server */
2422 int asExpr, /* Expression or keys? */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002423 int timeout, /* timeout in seconds or zero */
Bram Moolenaar05540972016-01-30 20:31:25 +01002424 int silent) /* don't complain about no server */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425{
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002426 HWND target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 COPYDATASTRUCT data;
2428 char_u *retval = NULL;
2429 int retcode = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002430 char_u altname_buf[MAX_PATH];
2431
Bram Moolenaar7416f3e2017-03-18 18:10:13 +01002432 /* Execute locally if no display or target is ourselves */
2433 if (serverName != NULL && STRICMP(name, serverName) == 0)
2434 return sendToLocalVim(cmd, asExpr, result);
2435
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002436 /* If the server name does not end in a digit then we look for an
2437 * alternate name. e.g. when "name" is GVIM the we may find GVIM2. */
2438 if (STRLEN(name) > 1 && !vim_isdigit(name[STRLEN(name) - 1]))
2439 altname_buf_ptr = altname_buf;
2440 altname_buf[0] = NUL;
2441 target = findServer(name);
2442 altname_buf_ptr = NULL;
2443 if (target == 0 && altname_buf[0] != NUL)
2444 /* Use another server name we found. */
2445 target = findServer(altname_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446
2447 if (target == 0)
2448 {
2449 if (!silent)
2450 EMSG2(_(e_noserver), name);
2451 return -1;
2452 }
2453
2454 if (ptarget)
2455 *(HWND *)ptarget = target;
2456
2457 data.dwData = asExpr ? COPYDATA_EXPR : COPYDATA_KEYS;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002458 data.cbData = (DWORD)STRLEN(cmd) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 data.lpData = cmd;
2460
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002461 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2463 (LPARAM)(&data)) == 0)
2464 return -1;
2465
2466 if (asExpr)
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002467 retval = serverGetReply(target, &retcode, TRUE, TRUE, timeout);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468
2469 if (result == NULL)
2470 vim_free(retval);
2471 else
2472 *result = retval; /* Caller assumes responsibility for freeing */
2473
2474 return retcode;
2475}
2476
2477/*
2478 * Bring the server to the foreground.
2479 */
2480 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002481serverForeground(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482{
2483 HWND target = findServer(name);
2484
2485 if (target != 0)
2486 SetForegroundWindow(target);
2487}
2488
2489/* Replies from server need to be stored until the client picks them up via
2490 * remote_read(). So we maintain a list of server-id/reply pairs.
2491 * Note that there could be multiple replies from one server pending if the
2492 * client is slow picking them up.
2493 * We just store the replies in a simple list. When we remove an entry, we
2494 * move list entries down to fill the gap.
2495 * The server ID is simply the HWND.
2496 */
2497typedef struct
2498{
2499 HWND server; /* server window */
2500 char_u *reply; /* reply string */
2501 int expr_result; /* 0 for REPLY, 1 for RESULT 2 for error */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002502} reply_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503
2504static garray_T reply_list = {0, 0, sizeof(reply_T), 5, 0};
2505
2506#define REPLY_ITEM(i) ((reply_T *)(reply_list.ga_data) + (i))
2507#define REPLY_COUNT (reply_list.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508
2509/* Flag which is used to wait for a reply */
2510static int reply_received = 0;
2511
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002512/*
2513 * Store a reply. "reply" must be allocated memory (or NULL).
2514 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 static int
2516save_reply(HWND server, char_u *reply, int expr)
2517{
2518 reply_T *rep;
2519
2520 if (ga_grow(&reply_list, 1) == FAIL)
2521 return FAIL;
2522
2523 rep = REPLY_ITEM(REPLY_COUNT);
2524 rep->server = server;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002525 rep->reply = reply;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 rep->expr_result = expr;
2527 if (rep->reply == NULL)
2528 return FAIL;
2529
2530 ++REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 reply_received = 1;
2532 return OK;
2533}
2534
2535/*
2536 * Get a reply from server "server".
2537 * When "expr_res" is non NULL, get the result of an expression, otherwise a
2538 * server2client() message.
2539 * When non NULL, point to return code. 0 => OK, -1 => ERROR
2540 * If "remove" is TRUE, consume the message, the caller must free it then.
2541 * if "wait" is TRUE block until a message arrives (or the server exits).
2542 */
2543 char_u *
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002544serverGetReply(HWND server, int *expr_res, int remove, int wait, int timeout)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545{
2546 int i;
2547 char_u *reply;
2548 reply_T *rep;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002549 int did_process = FALSE;
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002550 time_t start;
2551 time_t now;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552
2553 /* When waiting, loop until the message waiting for is received. */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002554 time(&start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 for (;;)
2556 {
2557 /* Reset this here, in case a message arrives while we are going
2558 * through the already received messages. */
2559 reply_received = 0;
2560
2561 for (i = 0; i < REPLY_COUNT; ++i)
2562 {
2563 rep = REPLY_ITEM(i);
2564 if (rep->server == server
2565 && ((rep->expr_result != 0) == (expr_res != NULL)))
2566 {
2567 /* Save the values we've found for later */
2568 reply = rep->reply;
2569 if (expr_res != NULL)
2570 *expr_res = rep->expr_result == 1 ? 0 : -1;
2571
2572 if (remove)
2573 {
2574 /* Move the rest of the list down to fill the gap */
2575 mch_memmove(rep, rep + 1,
2576 (REPLY_COUNT - i - 1) * sizeof(reply_T));
2577 --REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 }
2579
2580 /* Return the reply to the caller, who takes on responsibility
2581 * for freeing it if "remove" is TRUE. */
2582 return reply;
2583 }
2584 }
2585
2586 /* If we got here, we didn't find a reply. Return immediately if the
2587 * "wait" parameter isn't set. */
2588 if (!wait)
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002589 {
2590 /* Process pending messages once. Without this, looping on
2591 * remote_peek() would never get the reply. */
2592 if (!did_process)
2593 {
2594 did_process = TRUE;
2595 serverProcessPendingMessages();
2596 continue;
2597 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 break;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002599 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600
2601 /* We need to wait for a reply. Enter a message loop until the
2602 * "reply_received" flag gets set. */
2603
2604 /* Loop until we receive a reply */
2605 while (reply_received == 0)
2606 {
Bram Moolenaar42205552017-03-18 19:42:22 +01002607#ifdef FEAT_TIMERS
Bram Moolenaard23a8232018-02-10 18:45:26 +01002608 /* TODO: use the return value to decide how long to wait. */
Bram Moolenaar42205552017-03-18 19:42:22 +01002609 check_due_timer();
2610#endif
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002611 time(&now);
2612 if (timeout > 0 && (now - start) >= timeout)
2613 break;
2614
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 /* Wait for a SendMessage() call to us. This could be the reply
2616 * we are waiting for. Use a timeout of a second, to catch the
2617 * situation that the server died unexpectedly. */
2618 MsgWaitForMultipleObjects(0, NULL, TRUE, 1000, QS_ALLINPUT);
2619
2620 /* If the server has died, give up */
2621 if (!IsWindow(server))
2622 return NULL;
2623
2624 serverProcessPendingMessages();
2625 }
2626 }
2627
2628 return NULL;
2629}
2630
2631/*
2632 * Process any messages in the Windows message queue.
2633 */
2634 void
2635serverProcessPendingMessages(void)
2636{
2637 MSG msg;
2638
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002639 while (pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 {
2641 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002642 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 }
2644}
2645
2646#endif /* FEAT_CLIENTSERVER */
2647
2648#if defined(FEAT_GUI) || (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) \
2649 || defined(PROTO)
2650
2651struct charset_pair
2652{
2653 char *name;
2654 BYTE charset;
2655};
2656
2657static struct charset_pair
2658charset_pairs[] =
2659{
2660 {"ANSI", ANSI_CHARSET},
2661 {"CHINESEBIG5", CHINESEBIG5_CHARSET},
2662 {"DEFAULT", DEFAULT_CHARSET},
2663 {"HANGEUL", HANGEUL_CHARSET},
2664 {"OEM", OEM_CHARSET},
2665 {"SHIFTJIS", SHIFTJIS_CHARSET},
2666 {"SYMBOL", SYMBOL_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 {"ARABIC", ARABIC_CHARSET},
2668 {"BALTIC", BALTIC_CHARSET},
2669 {"EASTEUROPE", EASTEUROPE_CHARSET},
2670 {"GB2312", GB2312_CHARSET},
2671 {"GREEK", GREEK_CHARSET},
2672 {"HEBREW", HEBREW_CHARSET},
2673 {"JOHAB", JOHAB_CHARSET},
2674 {"MAC", MAC_CHARSET},
2675 {"RUSSIAN", RUSSIAN_CHARSET},
2676 {"THAI", THAI_CHARSET},
2677 {"TURKISH", TURKISH_CHARSET},
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002678#ifdef VIETNAMESE_CHARSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 {"VIETNAMESE", VIETNAMESE_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680#endif
2681 {NULL, 0}
2682};
2683
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002684struct quality_pair
2685{
2686 char *name;
2687 DWORD quality;
2688};
2689
2690static struct quality_pair
2691quality_pairs[] = {
2692#ifdef CLEARTYPE_QUALITY
2693 {"CLEARTYPE", CLEARTYPE_QUALITY},
2694#endif
2695#ifdef ANTIALIASED_QUALITY
2696 {"ANTIALIASED", ANTIALIASED_QUALITY},
2697#endif
Bram Moolenaar73a733e2016-05-11 21:05:05 +02002698#ifdef NONANTIALIASED_QUALITY
2699 {"NONANTIALIASED", NONANTIALIASED_QUALITY},
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002700#endif
2701#ifdef PROOF_QUALITY
2702 {"PROOF", PROOF_QUALITY},
2703#endif
Bram Moolenaar4c9ce052016-04-04 21:06:19 +02002704#ifdef DRAFT_QUALITY
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002705 {"DRAFT", DRAFT_QUALITY},
2706#endif
2707 {"DEFAULT", DEFAULT_QUALITY},
2708 {NULL, 0}
2709};
2710
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711/*
2712 * Convert a charset ID to a name.
2713 * Return NULL when not recognized.
2714 */
2715 char *
2716charset_id2name(int id)
2717{
2718 struct charset_pair *cp;
2719
2720 for (cp = charset_pairs; cp->name != NULL; ++cp)
2721 if ((BYTE)id == cp->charset)
2722 break;
2723 return cp->name;
2724}
2725
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002726/*
2727 * Convert a quality ID to a name.
2728 * Return NULL when not recognized.
2729 */
2730 char *
2731quality_id2name(DWORD id)
2732{
2733 struct quality_pair *qp;
2734
2735 for (qp = quality_pairs; qp->name != NULL; ++qp)
2736 if (id == qp->quality)
2737 break;
2738 return qp->name;
2739}
2740
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741static const LOGFONT s_lfDefault =
2742{
2743 -12, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, DEFAULT_CHARSET,
2744 OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
2745 PROOF_QUALITY, FIXED_PITCH | FF_DONTCARE,
2746 "Fixedsys" /* see _ReadVimIni */
2747};
2748
2749/* Initialise the "current height" to -12 (same as s_lfDefault) just
2750 * in case the user specifies a font in "guifont" with no size before a font
2751 * with an explicit size has been set. This defaults the size to this value
2752 * (-12 equates to roughly 9pt).
2753 */
2754int current_font_height = -12; /* also used in gui_w48.c */
2755
2756/* Convert a string representing a point size into pixels. The string should
2757 * be a positive decimal number, with an optional decimal point (eg, "12", or
2758 * "10.5"). The pixel value is returned, and a pointer to the next unconverted
2759 * character is stored in *end. The flag "vertical" says whether this
2760 * calculation is for a vertical (height) size or a horizontal (width) one.
2761 */
2762 static int
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002763points_to_pixels(char_u *str, char_u **end, int vertical, long_i pprinter_dc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764{
2765 int pixels;
2766 int points = 0;
2767 int divisor = 0;
2768 HWND hwnd = (HWND)0;
2769 HDC hdc;
2770 HDC printer_dc = (HDC)pprinter_dc;
2771
2772 while (*str != NUL)
2773 {
2774 if (*str == '.' && divisor == 0)
2775 {
2776 /* Start keeping a divisor, for later */
2777 divisor = 1;
2778 }
2779 else
2780 {
2781 if (!VIM_ISDIGIT(*str))
2782 break;
2783
2784 points *= 10;
2785 points += *str - '0';
2786 divisor *= 10;
2787 }
2788 ++str;
2789 }
2790
2791 if (divisor == 0)
2792 divisor = 1;
2793
2794 if (printer_dc == NULL)
2795 {
2796 hwnd = GetDesktopWindow();
2797 hdc = GetWindowDC(hwnd);
2798 }
2799 else
2800 hdc = printer_dc;
2801
2802 pixels = MulDiv(points,
2803 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX),
2804 72 * divisor);
2805
2806 if (printer_dc == NULL)
2807 ReleaseDC(hwnd, hdc);
2808
2809 *end = str;
2810 return pixels;
2811}
2812
2813 static int CALLBACK
2814font_enumproc(
2815 ENUMLOGFONT *elf,
Bram Moolenaar1266d672017-02-01 13:43:36 +01002816 NEWTEXTMETRIC *ntm UNUSED,
2817 int type UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 LPARAM lparam)
2819{
2820 /* Return value:
2821 * 0 = terminate now (monospace & ANSI)
2822 * 1 = continue, still no luck...
2823 * 2 = continue, but we have an acceptable LOGFONT
2824 * (monospace, not ANSI)
2825 * We use these values, as EnumFontFamilies returns 1 if the
2826 * callback function is never called. So, we check the return as
2827 * 0 = perfect, 2 = OK, 1 = no good...
2828 * It's not pretty, but it works!
2829 */
2830
2831 LOGFONT *lf = (LOGFONT *)(lparam);
2832
2833#ifndef FEAT_PROPORTIONAL_FONTS
2834 /* Ignore non-monospace fonts without further ado */
2835 if ((ntm->tmPitchAndFamily & 1) != 0)
2836 return 1;
2837#endif
2838
2839 /* Remember this LOGFONT as a "possible" */
2840 *lf = elf->elfLogFont;
2841
2842 /* Terminate the scan as soon as we find an ANSI font */
2843 if (lf->lfCharSet == ANSI_CHARSET
2844 || lf->lfCharSet == OEM_CHARSET
2845 || lf->lfCharSet == DEFAULT_CHARSET)
2846 return 0;
2847
2848 /* Continue the scan - we have a non-ANSI font */
2849 return 2;
2850}
2851
2852 static int
2853init_logfont(LOGFONT *lf)
2854{
2855 int n;
2856 HWND hwnd = GetDesktopWindow();
2857 HDC hdc = GetWindowDC(hwnd);
2858
2859 n = EnumFontFamilies(hdc,
2860 (LPCSTR)lf->lfFaceName,
2861 (FONTENUMPROC)font_enumproc,
2862 (LPARAM)lf);
2863
2864 ReleaseDC(hwnd, hdc);
2865
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002866 /* If we couldn't find a usable font, return failure */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 if (n == 1)
2868 return FAIL;
2869
2870 /* Tidy up the rest of the LOGFONT structure. We set to a basic
2871 * font - get_logfont() sets bold, italic, etc based on the user's
2872 * input.
2873 */
2874 lf->lfHeight = current_font_height;
2875 lf->lfWidth = 0;
2876 lf->lfItalic = FALSE;
2877 lf->lfUnderline = FALSE;
2878 lf->lfStrikeOut = FALSE;
2879 lf->lfWeight = FW_NORMAL;
2880
2881 /* Return success */
2882 return OK;
2883}
2884
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002885/*
2886 * Get font info from "name" into logfont "lf".
2887 * Return OK for a valid name, FAIL otherwise.
2888 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 int
2890get_logfont(
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002891 LOGFONT *lf,
2892 char_u *name,
2893 HDC printer_dc,
2894 int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895{
2896 char_u *p;
2897 int i;
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002898 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 static LOGFONT *lastlf = NULL;
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002900#ifdef FEAT_MBYTE
2901 char_u *acpname = NULL;
2902#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903
2904 *lf = s_lfDefault;
2905 if (name == NULL)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002906 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002908#ifdef FEAT_MBYTE
2909 /* Convert 'name' from 'encoding' to the current codepage, because
2910 * lf->lfFaceName uses the current codepage.
2911 * TODO: Use Wide APIs instead of ANSI APIs. */
2912 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2913 {
2914 int len;
Bram Moolenaar418f81b2016-02-16 20:12:02 +01002915 enc_to_acp(name, (int)STRLEN(name), &acpname, &len);
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002916 name = acpname;
2917 }
2918#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 if (STRCMP(name, "*") == 0)
2920 {
2921#if defined(FEAT_GUI_W32)
2922 CHOOSEFONT cf;
2923 /* if name is "*", bring up std font dialog: */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02002924 vim_memset(&cf, 0, sizeof(cf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 cf.lStructSize = sizeof(cf);
2926 cf.hwndOwner = s_hwnd;
2927 cf.Flags = CF_SCREENFONTS | CF_FIXEDPITCHONLY | CF_INITTOLOGFONTSTRUCT;
2928 if (lastlf != NULL)
2929 *lf = *lastlf;
2930 cf.lpLogFont = lf;
2931 cf.nFontType = 0 ; //REGULAR_FONTTYPE;
2932 if (ChooseFont(&cf))
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002933 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934#endif
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002935 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 }
2937
2938 /*
2939 * Split name up, it could be <name>:h<height>:w<width> etc.
2940 */
2941 for (p = name; *p && *p != ':'; p++)
2942 {
Bram Moolenaar38bc4952016-11-10 17:10:51 +01002943 if (p - name + 1 >= LF_FACESIZE)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002944 goto theend; /* Name too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 lf->lfFaceName[p - name] = *p;
2946 }
2947 if (p != name)
2948 lf->lfFaceName[p - name] = NUL;
2949
2950 /* First set defaults */
2951 lf->lfHeight = -12;
2952 lf->lfWidth = 0;
2953 lf->lfWeight = FW_NORMAL;
2954 lf->lfItalic = FALSE;
2955 lf->lfUnderline = FALSE;
2956 lf->lfStrikeOut = FALSE;
2957
2958 /*
2959 * If the font can't be found, try replacing '_' by ' '.
2960 */
2961 if (init_logfont(lf) == FAIL)
2962 {
2963 int did_replace = FALSE;
2964
2965 for (i = 0; lf->lfFaceName[i]; ++i)
Bram Moolenaar89e06c82017-08-11 20:55:55 +02002966 if (IsDBCSLeadByte(lf->lfFaceName[i]))
2967 ++i;
2968 else if (lf->lfFaceName[i] == '_')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 {
2970 lf->lfFaceName[i] = ' ';
2971 did_replace = TRUE;
2972 }
2973 if (!did_replace || init_logfont(lf) == FAIL)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002974 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 }
2976
2977 while (*p == ':')
2978 p++;
2979
2980 /* Set the values found after ':' */
2981 while (*p)
2982 {
2983 switch (*p++)
2984 {
2985 case 'h':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002986 lf->lfHeight = - points_to_pixels(p, &p, TRUE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 break;
2988 case 'w':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002989 lf->lfWidth = points_to_pixels(p, &p, FALSE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 break;
2991 case 'b':
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 lf->lfWeight = FW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 break;
2994 case 'i':
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 lf->lfItalic = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 break;
2997 case 'u':
2998 lf->lfUnderline = TRUE;
2999 break;
3000 case 's':
3001 lf->lfStrikeOut = TRUE;
3002 break;
3003 case 'c':
3004 {
3005 struct charset_pair *cp;
3006
3007 for (cp = charset_pairs; cp->name != NULL; ++cp)
3008 if (STRNCMP(p, cp->name, strlen(cp->name)) == 0)
3009 {
3010 lf->lfCharSet = cp->charset;
3011 p += strlen(cp->name);
3012 break;
3013 }
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003014 if (cp->name == NULL && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 {
Bram Moolenaar051b7822005-05-19 21:00:46 +00003016 vim_snprintf((char *)IObuff, IOSIZE,
3017 _("E244: Illegal charset name \"%s\" in font name \"%s\""), p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 EMSG(IObuff);
3019 break;
3020 }
3021 break;
3022 }
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02003023 case 'q':
3024 {
3025 struct quality_pair *qp;
3026
3027 for (qp = quality_pairs; qp->name != NULL; ++qp)
3028 if (STRNCMP(p, qp->name, strlen(qp->name)) == 0)
3029 {
3030 lf->lfQuality = qp->quality;
3031 p += strlen(qp->name);
3032 break;
3033 }
3034 if (qp->name == NULL && verbose)
3035 {
3036 vim_snprintf((char *)IObuff, IOSIZE,
3037 _("E244: Illegal quality name \"%s\" in font name \"%s\""), p, name);
3038 EMSG(IObuff);
3039 break;
3040 }
3041 break;
3042 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 default:
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003044 if (verbose)
3045 {
Bram Moolenaar051b7822005-05-19 21:00:46 +00003046 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003047 _("E245: Illegal char '%c' in font name \"%s\""),
3048 p[-1], name);
3049 EMSG(IObuff);
3050 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003051 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 }
3053 while (*p == ':')
3054 p++;
3055 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003056 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 /* ron: init lastlf */
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003060 if (ret == OK && printer_dc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 {
3062 vim_free(lastlf);
3063 lastlf = (LOGFONT *)alloc(sizeof(LOGFONT));
3064 if (lastlf != NULL)
3065 mch_memmove(lastlf, lf, sizeof(LOGFONT));
3066 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003067#ifdef FEAT_MBYTE
3068 vim_free(acpname);
3069#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003071 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072}
3073
3074#endif /* defined(FEAT_GUI) || defined(FEAT_PRINTER) */
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003075
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003076#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003077/*
3078 * Initialize the Winsock dll.
3079 */
3080 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003081channel_init_winsock(void)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003082{
3083 WSADATA wsaData;
3084 int wsaerr;
3085
3086 if (WSInitialized)
3087 return;
3088
3089 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
3090 if (wsaerr == 0)
3091 WSInitialized = TRUE;
3092}
3093#endif