blob: bddb08d920b93c4519aba427487b57acc63a6740 [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 Moolenaara3ffd9c2005-07-21 21:03:15 +0000453 while (*p)
454 {
455 if (*p == psepcN)
456 *p = psepc;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100457 MB_PTR_ADV(p);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459}
460
Bram Moolenaar8767f522016-07-01 17:17:39 +0200461/* Use 64-bit stat functions if available. */
462#ifdef HAVE_STAT64
463# undef stat
464# undef _stat
465# undef _wstat
466# undef _fstat
467# define stat _stat64
468# define _stat _stat64
469# define _wstat _wstat64
470# define _fstat _fstat64
471#endif
472
Bram Moolenaar9d1685d2014-01-14 12:18:45 +0100473#if (defined(_MSC_VER) && (_MSC_VER >= 1300)) || defined(__MINGW32__)
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200474# define OPEN_OH_ARGTYPE intptr_t
475#else
476# define OPEN_OH_ARGTYPE long
477#endif
478
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200479 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200480stat_symlink_aware(const char *name, stat_T *stp)
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200481{
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100482#if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__)
483 /* Work around for VC12 or earlier (and MinGW). stat() can't handle
484 * symlinks properly.
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200485 * VC9 or earlier: stat() doesn't support a symlink at all. It retrieves
486 * status of a symlink itself.
487 * VC10: stat() supports a symlink to a normal file, but it doesn't support
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100488 * a symlink to a directory (always returns an error).
489 * VC11 and VC12: stat() doesn't return an error for a symlink to a
490 * directory, but it doesn't set S_IFDIR flag.
491 * MinGW: Same as VC9. */
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200492 WIN32_FIND_DATA findData;
493 HANDLE hFind, h;
494 DWORD attr = 0;
495 BOOL is_symlink = FALSE;
496
497 hFind = FindFirstFile(name, &findData);
498 if (hFind != INVALID_HANDLE_VALUE)
499 {
500 attr = findData.dwFileAttributes;
501 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT)
502 && (findData.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
503 is_symlink = TRUE;
504 FindClose(hFind);
505 }
506 if (is_symlink)
507 {
508 h = CreateFile(name, FILE_READ_ATTRIBUTES,
509 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
510 OPEN_EXISTING,
511 (attr & FILE_ATTRIBUTE_DIRECTORY)
512 ? FILE_FLAG_BACKUP_SEMANTICS : 0,
513 NULL);
514 if (h != INVALID_HANDLE_VALUE)
515 {
516 int fd, n;
517
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200518 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200519 n = _fstat(fd, (struct _stat *)stp);
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100520 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY))
521 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR;
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200522 _close(fd);
523 return n;
524 }
525 }
526#endif
527 return stat(name, stp);
528}
529
530#ifdef FEAT_MBYTE
531 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200532wstat_symlink_aware(const WCHAR *name, stat_T *stp)
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200533{
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100534# if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__)
535 /* Work around for VC12 or earlier (and MinGW). _wstat() can't handle
536 * symlinks properly.
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200537 * VC9 or earlier: _wstat() doesn't support a symlink at all. It retrieves
538 * status of a symlink itself.
539 * VC10: _wstat() supports a symlink to a normal file, but it doesn't
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100540 * support a symlink to a directory (always returns an error).
541 * VC11 and VC12: _wstat() doesn't return an error for a symlink to a
542 * directory, but it doesn't set S_IFDIR flag.
543 * MinGW: Same as VC9. */
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200544 int n;
545 BOOL is_symlink = FALSE;
546 HANDLE hFind, h;
547 DWORD attr = 0;
548 WIN32_FIND_DATAW findDataW;
549
550 hFind = FindFirstFileW(name, &findDataW);
551 if (hFind != INVALID_HANDLE_VALUE)
552 {
553 attr = findDataW.dwFileAttributes;
554 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT)
555 && (findDataW.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
556 is_symlink = TRUE;
557 FindClose(hFind);
558 }
559 if (is_symlink)
560 {
561 h = CreateFileW(name, FILE_READ_ATTRIBUTES,
562 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
563 OPEN_EXISTING,
564 (attr & FILE_ATTRIBUTE_DIRECTORY)
565 ? FILE_FLAG_BACKUP_SEMANTICS : 0,
566 NULL);
567 if (h != INVALID_HANDLE_VALUE)
568 {
569 int fd;
570
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200571 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200572 n = _fstat(fd, (struct _stat *)stp);
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100573 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY))
574 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR;
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200575 _close(fd);
576 return n;
577 }
578 }
579# endif
Bram Moolenaar8767f522016-07-01 17:17:39 +0200580 return _wstat(name, (struct _stat *)stp);
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200581}
582#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583
584/*
585 * stat() can't handle a trailing '/' or '\', remove it first.
586 */
587 int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200588vim_stat(const char *name, stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589{
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200590#ifdef FEAT_MBYTE
591 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
592 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
593 * UTF-8. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100594 char_u buf[_MAX_PATH * 3 + 1];
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200595#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100596 char_u buf[_MAX_PATH + 1];
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200597#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100598 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200600 vim_strncpy((char_u *)buf, (char_u *)name, sizeof(buf) - 1);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100601 p = buf + STRLEN(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 if (p > buf)
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100603 MB_PTR_BACK(buf, p);
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100604
605 /* Remove trailing '\\' except root path. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 if (p > buf && (*p == '\\' || *p == '/') && p[-1] != ':')
607 *p = NUL;
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100608
609 if ((buf[0] == '\\' && buf[1] == '\\') || (buf[0] == '/' && buf[1] == '/'))
610 {
611 /* UNC root path must be followed by '\\'. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100612 p = vim_strpbrk(buf + 2, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100613 if (p != NULL)
614 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100615 p = vim_strpbrk(p + 1, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100616 if (p == NULL)
617 STRCAT(buf, "\\");
618 }
619 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620#ifdef FEAT_MBYTE
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200621 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000623 WCHAR *wp = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 int n;
625
626 if (wp != NULL)
627 {
Bram Moolenaar8767f522016-07-01 17:17:39 +0200628 n = wstat_symlink_aware(wp, stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 vim_free(wp);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200630 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 }
632 }
633#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100634 return stat_symlink_aware((char *)buf, stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635}
636
637#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
638 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100639mch_settmode(int tmode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640{
641 /* nothing to do */
642}
643
644 int
645mch_get_shellsize(void)
646{
647 /* never used */
648 return OK;
649}
650
651 void
652mch_set_shellsize(void)
653{
654 /* never used */
655}
656
657/*
658 * Rows and/or Columns has changed.
659 */
660 void
661mch_new_shellsize(void)
662{
663 /* never used */
664}
665
666#endif
667
668/*
669 * We have no job control, so fake it by starting a new shell.
670 */
671 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100672mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673{
674 suspend_shell();
675}
676
677#if defined(USE_MCH_ERRMSG) || defined(PROTO)
678
679#ifdef display_errors
680# undef display_errors
681#endif
682
683/*
684 * Display the saved error message(s).
685 */
686 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100687display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688{
689 char *p;
690
691 if (error_ga.ga_data != NULL)
692 {
693 /* avoid putting up a message box with blanks only */
694 for (p = (char *)error_ga.ga_data; *p; ++p)
695 if (!isspace(*p))
696 {
Bram Moolenaarc17ef8e2006-03-25 21:48:58 +0000697 (void)gui_mch_dialog(
698#ifdef FEAT_GUI
699 gui.starting ? VIM_INFO :
700#endif
701 VIM_ERROR,
702#ifdef FEAT_GUI
703 gui.starting ? (char_u *)_("Message") :
704#endif
705 (char_u *)_("Error"),
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100706 (char_u *)p, (char_u *)_("&Ok"),
707 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 break;
709 }
710 ga_clear(&error_ga);
711 }
712}
713#endif
714
715
716/*
717 * Return TRUE if "p" contain a wildcard that can be expanded by
718 * dos_expandpath().
719 */
720 int
721mch_has_exp_wildcard(char_u *p)
722{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100723 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 {
725 if (vim_strchr((char_u *)"?*[", *p) != NULL
726 || (*p == '~' && p[1] != NUL))
727 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 }
729 return FALSE;
730}
731
732/*
733 * Return TRUE if "p" contain a wildcard or a "~1" kind of thing (could be a
734 * shortened file name).
735 */
736 int
737mch_has_wildcard(char_u *p)
738{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100739 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 {
741 if (vim_strchr((char_u *)
742# ifdef VIM_BACKTICK
743 "?*$[`"
744# else
745 "?*$["
746# endif
747 , *p) != NULL
748 || (*p == '~' && p[1] != NUL))
749 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 }
751 return FALSE;
752}
753
754
755/*
756 * The normal _chdir() does not change the default drive. This one does.
757 * Returning 0 implies success; -1 implies failure.
758 */
759 int
760mch_chdir(char *path)
761{
762 if (path[0] == NUL) /* just checking... */
763 return -1;
764
Bram Moolenaara2974d72009-07-14 16:38:36 +0000765 if (p_verbose >= 5)
766 {
767 verbose_enter();
768 smsg((char_u *)"chdir(%s)", path);
769 verbose_leave();
770 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 if (isalpha(path[0]) && path[1] == ':') /* has a drive name */
772 {
773 /* If we can change to the drive, skip that part of the path. If we
774 * can't then the current directory may be invalid, try using chdir()
775 * with the whole path. */
776 if (_chdrive(TOLOWER_ASC(path[0]) - 'a' + 1) == 0)
777 path += 2;
778 }
779
780 if (*path == NUL) /* drive name only */
781 return 0;
782
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000783#ifdef FEAT_MBYTE
784 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
785 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100786 WCHAR *p = enc_to_utf16((char_u *)path, NULL);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000787 int n;
788
789 if (p != NULL)
790 {
791 n = _wchdir(p);
792 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200793 return n;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000794 }
795 }
796#endif
797
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 return chdir(path); /* let the normal chdir() do the rest */
799}
800
801
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802#ifdef FEAT_GUI_MSWIN
803/*
804 * return non-zero if a character is available
805 */
806 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100807mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808{
809 /* never used */
810 return TRUE;
811}
812#endif
813
814
815/*
816 * set screen mode, always fails.
817 */
818 int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100819mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820{
821 EMSG(_(e_screenmode));
822 return FAIL;
823}
824
825
826#if defined(FEAT_LIBCALL) || defined(PROTO)
827/*
828 * Call a DLL routine which takes either a string or int param
829 * and returns an allocated string.
830 * Return OK if it worked, FAIL if not.
831 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832typedef LPTSTR (*MYSTRPROCSTR)(LPTSTR);
833typedef LPTSTR (*MYINTPROCSTR)(int);
834typedef int (*MYSTRPROCINT)(LPTSTR);
835typedef int (*MYINTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837/*
838 * Check if a pointer points to a valid NUL terminated string.
839 * Return the length of the string, including terminating NUL.
840 * Returns 0 for an invalid pointer, 1 for an empty string.
841 */
842 static size_t
843check_str_len(char_u *str)
844{
845 SYSTEM_INFO si;
846 MEMORY_BASIC_INFORMATION mbi;
847 size_t length = 0;
848 size_t i;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100849 const char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850
851 /* get page size */
852 GetSystemInfo(&si);
853
854 /* get memory information */
855 if (VirtualQuery(str, &mbi, sizeof(mbi)))
856 {
857 /* pre cast these (typing savers) */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000858 long_u dwStr = (long_u)str;
859 long_u dwBaseAddress = (long_u)mbi.BaseAddress;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860
861 /* get start address of page that str is on */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000862 long_u strPage = dwStr - (dwStr - dwBaseAddress) % si.dwPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863
864 /* get length from str to end of page */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000865 long_u pageLength = si.dwPageSize - (dwStr - strPage);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866
Bram Moolenaar442b4222010-05-24 21:34:22 +0200867 for (p = str; !IsBadReadPtr(p, (UINT)pageLength);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 p += pageLength, pageLength = si.dwPageSize)
869 for (i = 0; i < pageLength; ++i, ++length)
870 if (p[i] == NUL)
871 return length + 1;
872 }
873
874 return 0;
875}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200877/*
878 * Passed to do_in_runtimepath() to load a vim.ico file.
879 */
880 static void
881mch_icon_load_cb(char_u *fname, void *cookie)
882{
883 HANDLE *h = (HANDLE *)cookie;
884
885 *h = LoadImage(NULL,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100886 (LPSTR)fname,
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200887 IMAGE_ICON,
888 64,
889 64,
890 LR_LOADFROMFILE | LR_LOADMAP3DCOLORS);
891}
892
893/*
894 * Try loading an icon file from 'runtimepath'.
895 */
896 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100897mch_icon_load(HANDLE *iconp)
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200898{
899 return do_in_runtimepath((char_u *)"bitmaps/vim.ico",
Bram Moolenaar7f8989d2016-03-12 22:11:39 +0100900 0, mch_icon_load_cb, iconp);
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200901}
902
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 int
904mch_libcall(
905 char_u *libname,
906 char_u *funcname,
907 char_u *argstring, /* NULL when using a argint */
908 int argint,
909 char_u **string_result,/* NULL when using number_result */
910 int *number_result)
911{
912 HINSTANCE hinstLib;
913 MYSTRPROCSTR ProcAdd;
914 MYINTPROCSTR ProcAddI;
915 char_u *retval_str = NULL;
916 int retval_int = 0;
917 size_t len;
918
919 BOOL fRunTimeLinkSuccess = FALSE;
920
921 // Get a handle to the DLL module.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100922 hinstLib = vimLoadLib((char *)libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923
924 // If the handle is valid, try to get the function address.
925 if (hinstLib != NULL)
926 {
927#ifdef HAVE_TRY_EXCEPT
928 __try
929 {
930#endif
931 if (argstring != NULL)
932 {
933 /* Call with string argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100934 ProcAdd = (MYSTRPROCSTR)GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 if ((fRunTimeLinkSuccess = (ProcAdd != NULL)) != 0)
936 {
937 if (string_result == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100938 retval_int = ((MYSTRPROCINT)ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100940 retval_str = (char_u *)(ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 }
942 }
943 else
944 {
945 /* Call with number argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100946 ProcAddI = (MYINTPROCSTR) GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 if ((fRunTimeLinkSuccess = (ProcAddI != NULL)) != 0)
948 {
949 if (string_result == NULL)
950 retval_int = ((MYINTPROCINT)ProcAddI)(argint);
951 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100952 retval_str = (char_u *)(ProcAddI)(argint);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 }
954 }
955
956 // Save the string before we free the library.
957 // Assume that a "1" result is an illegal pointer.
958 if (string_result == NULL)
959 *number_result = retval_int;
960 else if (retval_str != NULL
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100961 && (len = check_str_len(retval_str)) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 {
963 *string_result = lalloc((long_u)len, TRUE);
964 if (*string_result != NULL)
965 mch_memmove(*string_result, retval_str, len);
966 }
967
968#ifdef HAVE_TRY_EXCEPT
969 }
970 __except(EXCEPTION_EXECUTE_HANDLER)
971 {
972 if (GetExceptionCode() == EXCEPTION_STACK_OVERFLOW)
973 RESETSTKOFLW();
974 fRunTimeLinkSuccess = 0;
975 }
976#endif
977
978 // Free the DLL module.
979 (void)FreeLibrary(hinstLib);
980 }
981
982 if (!fRunTimeLinkSuccess)
983 {
984 EMSG2(_(e_libcall), funcname);
985 return FAIL;
986 }
987
988 return OK;
989}
990#endif
991
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992/*
993 * Debugging helper: expose the MCH_WRITE_DUMP stuff to other modules
994 */
995 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100996DumpPutS(const char *psz UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997{
998# ifdef MCH_WRITE_DUMP
999 if (fdDump)
1000 {
1001 fputs(psz, fdDump);
1002 if (psz[strlen(psz) - 1] != '\n')
1003 fputc('\n', fdDump);
1004 fflush(fdDump);
1005 }
1006# endif
1007}
1008
1009#ifdef _DEBUG
1010
1011void __cdecl
1012Trace(
1013 char *pszFormat,
1014 ...)
1015{
1016 CHAR szBuff[2048];
1017 va_list args;
1018
1019 va_start(args, pszFormat);
1020 vsprintf(szBuff, pszFormat, args);
1021 va_end(args);
1022
1023 OutputDebugString(szBuff);
1024}
1025
1026#endif //_DEBUG
1027
Bram Moolenaar843ee412004-06-30 16:16:41 +00001028#if !defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001029# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030extern HWND g_hWnd; /* This is in os_win32.c. */
1031# endif
1032
1033/*
1034 * Showing the printer dialog is tricky since we have no GUI
1035 * window to parent it. The following routines are needed to
1036 * get the window parenting and Z-order to work properly.
1037 */
1038 static void
1039GetConsoleHwnd(void)
1040{
1041# define MY_BUFSIZE 1024 // Buffer size for console window titles.
1042
1043 char pszNewWindowTitle[MY_BUFSIZE]; // Contains fabricated WindowTitle.
1044 char pszOldWindowTitle[MY_BUFSIZE]; // Contains original WindowTitle.
1045
1046 /* Skip if it's already set. */
1047 if (s_hwnd != 0)
1048 return;
1049
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001050# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 /* Window handle may have been found by init code (Windows NT only) */
1052 if (g_hWnd != 0)
1053 {
1054 s_hwnd = g_hWnd;
1055 return;
1056 }
1057# endif
1058
1059 GetConsoleTitle(pszOldWindowTitle, MY_BUFSIZE);
1060
1061 wsprintf(pszNewWindowTitle, "%s/%d/%d",
1062 pszOldWindowTitle,
1063 GetTickCount(),
1064 GetCurrentProcessId());
1065 SetConsoleTitle(pszNewWindowTitle);
1066 Sleep(40);
1067 s_hwnd = FindWindow(NULL, pszNewWindowTitle);
1068
1069 SetConsoleTitle(pszOldWindowTitle);
1070}
Bram Moolenaar843ee412004-06-30 16:16:41 +00001071
1072/*
1073 * Console implementation of ":winpos".
1074 */
1075 int
1076mch_get_winpos(int *x, int *y)
1077{
1078 RECT rect;
1079
1080 GetConsoleHwnd();
1081 GetWindowRect(s_hwnd, &rect);
1082 *x = rect.left;
1083 *y = rect.top;
1084 return OK;
1085}
1086
1087/*
1088 * Console implementation of ":winpos x y".
1089 */
1090 void
1091mch_set_winpos(int x, int y)
1092{
1093 GetConsoleHwnd();
1094 SetWindowPos(s_hwnd, NULL, x, y, 0, 0,
1095 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
1096}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097#endif
1098
1099#if (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) || defined(PROTO)
1100
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101/*=================================================================
1102 * Win32 printer stuff
1103 */
1104
1105static HFONT prt_font_handles[2][2][2];
1106static PRINTDLG prt_dlg;
1107static const int boldface[2] = {FW_REGULAR, FW_BOLD};
1108static TEXTMETRIC prt_tm;
1109static int prt_line_height;
1110static int prt_number_width;
1111static int prt_left_margin;
1112static int prt_right_margin;
1113static int prt_top_margin;
1114static char_u szAppName[] = TEXT("VIM");
1115static HWND hDlgPrint;
1116static int *bUserAbort = NULL;
1117static char_u *prt_name = NULL;
1118
1119/* Defines which are also in vim.rc. */
1120#define IDC_BOX1 400
1121#define IDC_PRINTTEXT1 401
1122#define IDC_PRINTTEXT2 402
1123#define IDC_PROGRESS 403
1124
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001125#if !defined(FEAT_MBYTE)
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001126# define vimSetDlgItemText(h, i, s) SetDlgItemText(h, i, s)
1127#else
1128 static BOOL
1129vimSetDlgItemText(HWND hDlg, int nIDDlgItem, char_u *s)
1130{
1131 WCHAR *wp = NULL;
1132 BOOL ret;
1133
1134 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1135 {
1136 wp = enc_to_utf16(s, NULL);
1137 }
1138 if (wp != NULL)
1139 {
1140 ret = SetDlgItemTextW(hDlg, nIDDlgItem, wp);
1141 vim_free(wp);
1142 return ret;
1143 }
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001144 return SetDlgItemText(hDlg, nIDDlgItem, (LPCSTR)s);
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001145}
1146#endif
1147
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148/*
1149 * Convert BGR to RGB for Windows GDI calls
1150 */
1151 static COLORREF
1152swap_me(COLORREF colorref)
1153{
1154 int temp;
1155 char *ptr = (char *)&colorref;
1156
1157 temp = *(ptr);
1158 *(ptr ) = *(ptr + 2);
1159 *(ptr + 2) = temp;
1160 return colorref;
1161}
1162
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001163/* Attempt to make this work for old and new compilers */
Bram Moolenaar9f733d12011-09-21 20:09:42 +02001164#if !defined(_WIN64) && (!defined(_MSC_VER) || _MSC_VER < 1300)
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001165# define PDP_RETVAL BOOL
1166#else
1167# define PDP_RETVAL INT_PTR
1168#endif
1169
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001170 static PDP_RETVAL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001171PrintDlgProc(
1172 HWND hDlg,
1173 UINT message,
1174 WPARAM wParam UNUSED,
1175 LPARAM lParam UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176{
1177#ifdef FEAT_GETTEXT
1178 NONCLIENTMETRICS nm;
1179 static HFONT hfont;
1180#endif
1181
1182 switch (message)
1183 {
1184 case WM_INITDIALOG:
1185#ifdef FEAT_GETTEXT
1186 nm.cbSize = sizeof(NONCLIENTMETRICS);
1187 if (SystemParametersInfo(
1188 SPI_GETNONCLIENTMETRICS,
1189 sizeof(NONCLIENTMETRICS),
1190 &nm,
1191 0))
1192 {
1193 char buff[MAX_PATH];
1194 int i;
1195
1196 /* Translate the dialog texts */
1197 hfont = CreateFontIndirect(&nm.lfMessageFont);
1198 for (i = IDC_PRINTTEXT1; i <= IDC_PROGRESS; i++)
1199 {
1200 SendDlgItemMessage(hDlg, i, WM_SETFONT, (WPARAM)hfont, 1);
1201 if (GetDlgItemText(hDlg,i, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001202 vimSetDlgItemText(hDlg,i, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 }
1204 SendDlgItemMessage(hDlg, IDCANCEL,
1205 WM_SETFONT, (WPARAM)hfont, 1);
1206 if (GetDlgItemText(hDlg,IDCANCEL, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001207 vimSetDlgItemText(hDlg,IDCANCEL, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 }
1209#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001210 SetWindowText(hDlg, (LPCSTR)szAppName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 if (prt_name != NULL)
1212 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001213 vimSetDlgItemText(hDlg, IDC_PRINTTEXT2, (char_u *)prt_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 vim_free(prt_name);
1215 prt_name = NULL;
1216 }
1217 EnableMenuItem(GetSystemMenu(hDlg, FALSE), SC_CLOSE, MF_GRAYED);
1218#ifndef FEAT_GUI
1219 BringWindowToTop(s_hwnd);
1220#endif
1221 return TRUE;
1222
1223 case WM_COMMAND:
1224 *bUserAbort = TRUE;
1225 EnableWindow(GetParent(hDlg), TRUE);
1226 DestroyWindow(hDlg);
1227 hDlgPrint = NULL;
1228#ifdef FEAT_GETTEXT
1229 DeleteObject(hfont);
1230#endif
1231 return TRUE;
1232 }
1233 return FALSE;
1234}
1235
1236 static BOOL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001237AbortProc(HDC hdcPrn UNUSED, int iCode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238{
1239 MSG msg;
1240
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001241 while (!*bUserAbort && pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 {
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001243 if (!hDlgPrint || !pIsDialogMessage(hDlgPrint, &msg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 {
1245 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001246 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 }
1248 }
1249 return !*bUserAbort;
1250}
1251
1252#ifndef FEAT_GUI
1253
Bram Moolenaar26fdd7d2011-11-30 13:42:44 +01001254 static UINT_PTR CALLBACK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255PrintHookProc(
1256 HWND hDlg, // handle to dialog box
1257 UINT uiMsg, // message identifier
1258 WPARAM wParam, // message parameter
1259 LPARAM lParam // message parameter
1260 )
1261{
1262 HWND hwndOwner;
1263 RECT rc, rcDlg, rcOwner;
1264 PRINTDLG *pPD;
1265
1266 if (uiMsg == WM_INITDIALOG)
1267 {
1268 // Get the owner window and dialog box rectangles.
1269 if ((hwndOwner = GetParent(hDlg)) == NULL)
1270 hwndOwner = GetDesktopWindow();
1271
1272 GetWindowRect(hwndOwner, &rcOwner);
1273 GetWindowRect(hDlg, &rcDlg);
1274 CopyRect(&rc, &rcOwner);
1275
1276 // Offset the owner and dialog box rectangles so that
1277 // right and bottom values represent the width and
1278 // height, and then offset the owner again to discard
1279 // space taken up by the dialog box.
1280
1281 OffsetRect(&rcDlg, -rcDlg.left, -rcDlg.top);
1282 OffsetRect(&rc, -rc.left, -rc.top);
1283 OffsetRect(&rc, -rcDlg.right, -rcDlg.bottom);
1284
1285 // The new position is the sum of half the remaining
1286 // space and the owner's original position.
1287
1288 SetWindowPos(hDlg,
1289 HWND_TOP,
1290 rcOwner.left + (rc.right / 2),
1291 rcOwner.top + (rc.bottom / 2),
1292 0, 0, // ignores size arguments
1293 SWP_NOSIZE);
1294
1295 /* tackle the printdlg copiesctrl problem */
1296 pPD = (PRINTDLG *)lParam;
1297 pPD->nCopies = (WORD)pPD->lCustData;
1298 SetDlgItemInt( hDlg, edt3, pPD->nCopies, FALSE );
1299 /* Bring the window to top */
1300 BringWindowToTop(GetParent(hDlg));
1301 SetForegroundWindow(hDlg);
1302 }
1303
1304 return FALSE;
1305}
1306#endif
1307
1308 void
1309mch_print_cleanup(void)
1310{
1311 int pifItalic;
1312 int pifBold;
1313 int pifUnderline;
1314
1315 for (pifBold = 0; pifBold <= 1; pifBold++)
1316 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1317 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1318 DeleteObject(prt_font_handles[pifBold][pifItalic][pifUnderline]);
1319
1320 if (prt_dlg.hDC != NULL)
1321 DeleteDC(prt_dlg.hDC);
1322 if (!*bUserAbort)
1323 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1324}
1325
1326 static int
1327to_device_units(int idx, int dpi, int physsize, int offset, int def_number)
1328{
1329 int ret = 0;
1330 int u;
1331 int nr;
1332
1333 u = prt_get_unit(idx);
1334 if (u == PRT_UNIT_NONE)
1335 {
1336 u = PRT_UNIT_PERC;
1337 nr = def_number;
1338 }
1339 else
1340 nr = printer_opts[idx].number;
1341
1342 switch (u)
1343 {
1344 case PRT_UNIT_PERC:
1345 ret = (physsize * nr) / 100;
1346 break;
1347 case PRT_UNIT_INCH:
1348 ret = (nr * dpi);
1349 break;
1350 case PRT_UNIT_MM:
1351 ret = (nr * 10 * dpi) / 254;
1352 break;
1353 case PRT_UNIT_POINT:
1354 ret = (nr * 10 * dpi) / 720;
1355 break;
1356 }
1357
1358 if (ret < offset)
1359 return 0;
1360 else
1361 return ret - offset;
1362}
1363
1364 static int
1365prt_get_cpl(void)
1366{
1367 int hr;
1368 int phyw;
1369 int dvoff;
1370 int rev_offset;
1371 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372
1373 GetTextMetrics(prt_dlg.hDC, &prt_tm);
1374 prt_line_height = prt_tm.tmHeight + prt_tm.tmExternalLeading;
1375
1376 hr = GetDeviceCaps(prt_dlg.hDC, HORZRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALWIDTH);
1378 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSX);
1380
1381 rev_offset = phyw - (dvoff + hr);
1382
1383 prt_left_margin = to_device_units(OPT_PRINT_LEFT, dpi, phyw, dvoff, 10);
1384 if (prt_use_number())
1385 {
1386 prt_number_width = PRINT_NUMBER_WIDTH * prt_tm.tmAveCharWidth;
1387 prt_left_margin += prt_number_width;
1388 }
1389 else
1390 prt_number_width = 0;
1391
1392 prt_right_margin = hr - to_device_units(OPT_PRINT_RIGHT, dpi, phyw,
1393 rev_offset, 5);
1394
1395 return (prt_right_margin - prt_left_margin) / prt_tm.tmAveCharWidth;
1396}
1397
1398 static int
1399prt_get_lpp(void)
1400{
1401 int vr;
1402 int phyw;
1403 int dvoff;
1404 int rev_offset;
1405 int bottom_margin;
1406 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407
1408 vr = GetDeviceCaps(prt_dlg.hDC, VERTRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALHEIGHT);
1410 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSY);
1412
1413 rev_offset = phyw - (dvoff + vr);
1414
1415 prt_top_margin = to_device_units(OPT_PRINT_TOP, dpi, phyw, dvoff, 5);
1416
1417 /* adjust top margin if there is a header */
1418 prt_top_margin += prt_line_height * prt_header_height();
1419
1420 bottom_margin = vr - to_device_units(OPT_PRINT_BOT, dpi, phyw,
1421 rev_offset, 5);
1422
1423 return (bottom_margin - prt_top_margin) / prt_line_height;
1424}
1425
1426 int
1427mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit)
1428{
1429 static HGLOBAL stored_dm = NULL;
1430 static HGLOBAL stored_devn = NULL;
1431 static int stored_nCopies = 1;
1432 static int stored_nFlags = 0;
1433
1434 LOGFONT fLogFont;
1435 int pifItalic;
1436 int pifBold;
1437 int pifUnderline;
1438
1439 DEVMODE *mem;
1440 DEVNAMES *devname;
1441 int i;
1442
1443 bUserAbort = &(psettings->user_abort);
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001444 vim_memset(&prt_dlg, 0, sizeof(PRINTDLG));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445 prt_dlg.lStructSize = sizeof(PRINTDLG);
1446#ifndef FEAT_GUI
1447 GetConsoleHwnd(); /* get value of s_hwnd */
1448#endif
1449 prt_dlg.hwndOwner = s_hwnd;
1450 prt_dlg.Flags = PD_NOPAGENUMS | PD_NOSELECTION | PD_RETURNDC;
1451 if (!forceit)
1452 {
1453 prt_dlg.hDevMode = stored_dm;
1454 prt_dlg.hDevNames = stored_devn;
1455 prt_dlg.lCustData = stored_nCopies; // work around bug in print dialog
1456#ifndef FEAT_GUI
1457 /*
1458 * Use hook to prevent console window being sent to back
1459 */
1460 prt_dlg.lpfnPrintHook = PrintHookProc;
1461 prt_dlg.Flags |= PD_ENABLEPRINTHOOK;
1462#endif
1463 prt_dlg.Flags |= stored_nFlags;
1464 }
1465
1466 /*
1467 * If bang present, return default printer setup with no dialog
1468 * never show dialog if we are running over telnet
1469 */
1470 if (forceit
1471#ifndef FEAT_GUI
1472 || !term_console
1473#endif
1474 )
1475 {
1476 prt_dlg.Flags |= PD_RETURNDEFAULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 /*
1478 * MSDN suggests setting the first parameter to WINSPOOL for
1479 * NT, but NULL appears to work just as well.
1480 */
1481 if (*p_pdev != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001482 prt_dlg.hDC = CreateDC(NULL, (LPCSTR)p_pdev, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 {
1485 prt_dlg.Flags |= PD_RETURNDEFAULT;
1486 if (PrintDlg(&prt_dlg) == 0)
1487 goto init_fail_dlg;
1488 }
1489 }
1490 else if (PrintDlg(&prt_dlg) == 0)
1491 goto init_fail_dlg;
1492 else
1493 {
1494 /*
1495 * keep the previous driver context
1496 */
1497 stored_dm = prt_dlg.hDevMode;
1498 stored_devn = prt_dlg.hDevNames;
1499 stored_nFlags = prt_dlg.Flags;
1500 stored_nCopies = prt_dlg.nCopies;
1501 }
1502
1503 if (prt_dlg.hDC == NULL)
1504 {
1505 EMSG(_("E237: Printer selection failed"));
1506 mch_print_cleanup();
1507 return FALSE;
1508 }
1509
1510 /* Not all printer drivers report the support of color (or grey) in the
1511 * same way. Let's set has_color if there appears to be some way to print
1512 * more than B&W. */
1513 i = GetDeviceCaps(prt_dlg.hDC, NUMCOLORS);
1514 psettings->has_color = (GetDeviceCaps(prt_dlg.hDC, BITSPIXEL) > 1
1515 || GetDeviceCaps(prt_dlg.hDC, PLANES) > 1
1516 || i > 2 || i == -1);
1517
1518 /* Ensure all font styles are baseline aligned */
1519 SetTextAlign(prt_dlg.hDC, TA_BASELINE|TA_LEFT);
1520
1521 /*
1522 * On some windows systems the nCopies parameter is not
1523 * passed back correctly. It must be retrieved from the
1524 * hDevMode struct.
1525 */
1526 mem = (DEVMODE *)GlobalLock(prt_dlg.hDevMode);
1527 if (mem != NULL)
1528 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 if (mem->dmCopies != 1)
1530 stored_nCopies = mem->dmCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 if ((mem->dmFields & DM_DUPLEX) && (mem->dmDuplex & ~DMDUP_SIMPLEX))
1532 psettings->duplex = TRUE;
1533 if ((mem->dmFields & DM_COLOR) && (mem->dmColor & DMCOLOR_COLOR))
1534 psettings->has_color = TRUE;
1535 }
1536 GlobalUnlock(prt_dlg.hDevMode);
1537
1538 devname = (DEVNAMES *)GlobalLock(prt_dlg.hDevNames);
1539 if (devname != 0)
1540 {
1541 char_u *printer_name = (char_u *)devname + devname->wDeviceOffset;
1542 char_u *port_name = (char_u *)devname +devname->wOutputOffset;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001543 char_u *text = (char_u *)_("to %s on %s");
Bram Moolenaarf191d552014-10-09 17:05:56 +02001544#ifdef FEAT_MBYTE
1545 char_u *printer_name_orig = printer_name;
1546 char_u *port_name_orig = port_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547
Bram Moolenaarf191d552014-10-09 17:05:56 +02001548 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1549 {
1550 char_u *to_free = NULL;
1551 int maxlen;
1552
Bram Moolenaar861d80a2014-10-16 20:35:36 +02001553 acp_to_enc(printer_name, (int)STRLEN(printer_name), &to_free,
1554 &maxlen);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001555 if (to_free != NULL)
1556 printer_name = to_free;
Bram Moolenaar861d80a2014-10-16 20:35:36 +02001557 acp_to_enc(port_name, (int)STRLEN(port_name), &to_free, &maxlen);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001558 if (to_free != NULL)
1559 port_name = to_free;
1560 }
1561#endif
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00001562 prt_name = alloc((unsigned)(STRLEN(printer_name) + STRLEN(port_name)
1563 + STRLEN(text)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 if (prt_name != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001565 wsprintf((char *)prt_name, (const char *)text,
1566 printer_name, port_name);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001567#ifdef FEAT_MBYTE
1568 if (printer_name != printer_name_orig)
1569 vim_free(printer_name);
1570 if (port_name != port_name_orig)
1571 vim_free(port_name);
1572#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 }
1574 GlobalUnlock(prt_dlg.hDevNames);
1575
1576 /*
1577 * Initialise the font according to 'printfont'
1578 */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001579 vim_memset(&fLogFont, 0, sizeof(fLogFont));
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001580 if (get_logfont(&fLogFont, p_pfn, prt_dlg.hDC, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 {
1582 EMSG2(_("E613: Unknown printer font: %s"), p_pfn);
1583 mch_print_cleanup();
1584 return FALSE;
1585 }
1586
1587 for (pifBold = 0; pifBold <= 1; pifBold++)
1588 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1589 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1590 {
1591 fLogFont.lfWeight = boldface[pifBold];
1592 fLogFont.lfItalic = pifItalic;
1593 fLogFont.lfUnderline = pifUnderline;
1594 prt_font_handles[pifBold][pifItalic][pifUnderline]
1595 = CreateFontIndirect(&fLogFont);
1596 }
1597
1598 SetBkMode(prt_dlg.hDC, OPAQUE);
1599 SelectObject(prt_dlg.hDC, prt_font_handles[0][0][0]);
1600
1601 /*
1602 * Fill in the settings struct
1603 */
1604 psettings->chars_per_line = prt_get_cpl();
1605 psettings->lines_per_page = prt_get_lpp();
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001606 if (prt_dlg.Flags & PD_USEDEVMODECOPIESANDCOLLATE)
1607 {
1608 psettings->n_collated_copies = (prt_dlg.Flags & PD_COLLATE)
1609 ? prt_dlg.nCopies : 1;
1610 psettings->n_uncollated_copies = (prt_dlg.Flags & PD_COLLATE)
1611 ? 1 : prt_dlg.nCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001613 if (psettings->n_collated_copies == 0)
1614 psettings->n_collated_copies = 1;
1615
1616 if (psettings->n_uncollated_copies == 0)
1617 psettings->n_uncollated_copies = 1;
Bram Moolenaarb04a98f2016-12-01 20:32:29 +01001618 }
1619 else
1620 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 psettings->n_collated_copies = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 psettings->n_uncollated_copies = 1;
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001623 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624
1625 psettings->jobname = jobname;
1626
1627 return TRUE;
1628
1629init_fail_dlg:
1630 {
1631 DWORD err = CommDlgExtendedError();
1632
1633 if (err)
1634 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 char_u *buf;
1636
1637 /* I suspect FormatMessage() doesn't work for values returned by
1638 * CommDlgExtendedError(). What does? */
1639 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
1640 FORMAT_MESSAGE_FROM_SYSTEM |
1641 FORMAT_MESSAGE_IGNORE_INSERTS,
1642 NULL, err, 0, (LPTSTR)(&buf), 0, NULL);
1643 EMSG2(_("E238: Print error: %s"),
1644 buf == NULL ? (char_u *)_("Unknown") : buf);
1645 LocalFree((LPVOID)(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 }
1647 else
1648 msg_clr_eos(); /* Maybe canceled */
1649
1650 mch_print_cleanup();
1651 return FALSE;
1652 }
1653}
1654
1655
1656 int
1657mch_print_begin(prt_settings_T *psettings)
1658{
1659 int ret;
1660 static DOCINFO di;
1661 char szBuffer[300];
1662
1663 hDlgPrint = CreateDialog(GetModuleHandle(NULL), TEXT("PrintDlgBox"),
1664 prt_dlg.hwndOwner, PrintDlgProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 SetAbortProc(prt_dlg.hDC, AbortProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 wsprintf(szBuffer, _("Printing '%s'"), gettail(psettings->jobname));
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001667 vimSetDlgItemText(hDlgPrint, IDC_PRINTTEXT1, (char_u *)szBuffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001669 vim_memset(&di, 0, sizeof(DOCINFO));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 di.cbSize = sizeof(DOCINFO);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001671 di.lpszDocName = (LPCSTR)psettings->jobname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 ret = StartDoc(prt_dlg.hDC, &di);
1673
1674#ifdef FEAT_GUI
1675 /* Give focus back to main window (when using MDI). */
1676 SetFocus(s_hwnd);
1677#endif
1678
1679 return (ret > 0);
1680}
1681
1682 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001683mch_print_end(prt_settings_T *psettings UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684{
1685 EndDoc(prt_dlg.hDC);
1686 if (!*bUserAbort)
1687 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1688}
1689
1690 int
1691mch_print_end_page(void)
1692{
1693 return (EndPage(prt_dlg.hDC) > 0);
1694}
1695
1696 int
1697mch_print_begin_page(char_u *msg)
1698{
1699 if (msg != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001700 vimSetDlgItemText(hDlgPrint, IDC_PROGRESS, msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 return (StartPage(prt_dlg.hDC) > 0);
1702}
1703
1704 int
1705mch_print_blank_page(void)
1706{
1707 return (mch_print_begin_page(NULL) ? (mch_print_end_page()) : FALSE);
1708}
1709
1710static int prt_pos_x = 0;
1711static int prt_pos_y = 0;
1712
1713 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001714mch_print_start_line(int margin, int page_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715{
1716 if (margin)
1717 prt_pos_x = -prt_number_width;
1718 else
1719 prt_pos_x = 0;
1720 prt_pos_y = page_line * prt_line_height
1721 + prt_tm.tmAscent + prt_tm.tmExternalLeading;
1722}
1723
1724 int
1725mch_print_text_out(char_u *p, int len)
1726{
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001727#if defined(FEAT_PROPORTIONAL_FONTS) || defined(FEAT_MBYTE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 SIZE sz;
1729#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001730#if defined(FEAT_MBYTE)
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001731 WCHAR *wp = NULL;
1732 int wlen = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001734 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1735 {
1736 wp = enc_to_utf16(p, &wlen);
1737 }
1738 if (wp != NULL)
1739 {
1740 int ret = FALSE;
1741
1742 TextOutW(prt_dlg.hDC, prt_pos_x + prt_left_margin,
1743 prt_pos_y + prt_top_margin, wp, wlen);
1744 GetTextExtentPoint32W(prt_dlg.hDC, wp, wlen, &sz);
1745 vim_free(wp);
1746 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
1747 /* This is wrong when printing spaces for a TAB. */
1748 if (p[len] != NUL)
1749 {
1750 wlen = MB_PTR2LEN(p + len);
1751 wp = enc_to_utf16(p + len, &wlen);
1752 if (wp != NULL)
1753 {
1754 GetTextExtentPoint32W(prt_dlg.hDC, wp, 1, &sz);
1755 ret = (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
1756 vim_free(wp);
1757 }
1758 }
1759 return ret;
1760 }
1761#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 TextOut(prt_dlg.hDC, prt_pos_x + prt_left_margin,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001763 prt_pos_y + prt_top_margin,
1764 (LPCSTR)p, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765#ifndef FEAT_PROPORTIONAL_FONTS
1766 prt_pos_x += len * prt_tm.tmAveCharWidth;
1767 return (prt_pos_x + prt_left_margin + prt_tm.tmAveCharWidth
1768 + prt_tm.tmOverhang > prt_right_margin);
1769#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001770 GetTextExtentPoint32(prt_dlg.hDC, (LPCSTR)p, len, &sz);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
1772 /* This is wrong when printing spaces for a TAB. */
1773 if (p[len] == NUL)
1774 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 GetTextExtentPoint32(prt_dlg.hDC, p + len, 1, &sz);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 return (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
1777#endif
1778}
1779
1780 void
1781mch_print_set_font(int iBold, int iItalic, int iUnderline)
1782{
1783 SelectObject(prt_dlg.hDC, prt_font_handles[iBold][iItalic][iUnderline]);
1784}
1785
1786 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001787mch_print_set_bg(long_u bgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001789 SetBkColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1790 swap_me((COLORREF)bgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 /*
1792 * With a white background we can draw characters transparent, which is
1793 * good for italic characters that overlap to the next char cell.
1794 */
1795 if (bgcol == 0xffffffUL)
1796 SetBkMode(prt_dlg.hDC, TRANSPARENT);
1797 else
1798 SetBkMode(prt_dlg.hDC, OPAQUE);
1799}
1800
1801 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001802mch_print_set_fg(long_u fgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001804 SetTextColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1805 swap_me((COLORREF)fgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806}
1807
1808#endif /*FEAT_PRINTER && !FEAT_POSTSCRIPT*/
1809
Bram Moolenaar58d98232005-07-23 22:25:46 +00001810
1811
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812#if defined(FEAT_SHORTCUT) || defined(PROTO)
Bram Moolenaar82881492012-11-20 16:53:39 +01001813# ifndef PROTO
1814# include <shlobj.h>
1815# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816
1817/*
1818 * When "fname" is the name of a shortcut (*.lnk) resolve the file it points
1819 * to and return that name in allocated memory.
1820 * Otherwise NULL is returned.
1821 */
1822 char_u *
1823mch_resolve_shortcut(char_u *fname)
1824{
1825 HRESULT hr;
1826 IShellLink *psl = NULL;
1827 IPersistFile *ppf = NULL;
1828 OLECHAR wsz[MAX_PATH];
1829 WIN32_FIND_DATA ffd; // we get those free of charge
Bram Moolenaar604729e2013-08-30 16:44:19 +02001830 CHAR buf[MAX_PATH]; // could have simply reused 'wsz'...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 char_u *rfname = NULL;
1832 int len;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001833# ifdef FEAT_MBYTE
1834 IShellLinkW *pslw = NULL;
1835 WIN32_FIND_DATAW ffdw; // we get those free of charge
1836# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837
1838 /* Check if the file name ends in ".lnk". Avoid calling
1839 * CoCreateInstance(), it's quite slow. */
1840 if (fname == NULL)
1841 return rfname;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001842 len = (int)STRLEN(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 if (len <= 4 || STRNICMP(fname + len - 4, ".lnk", 4) != 0)
1844 return rfname;
1845
1846 CoInitialize(NULL);
1847
Bram Moolenaar604729e2013-08-30 16:44:19 +02001848# ifdef FEAT_MBYTE
1849 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1850 {
1851 // create a link manager object and request its interface
1852 hr = CoCreateInstance(
1853 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
1854 &IID_IShellLinkW, (void**)&pslw);
1855 if (hr == S_OK)
1856 {
1857 WCHAR *p = enc_to_utf16(fname, NULL);
1858
1859 if (p != NULL)
1860 {
1861 // Get a pointer to the IPersistFile interface.
1862 hr = pslw->lpVtbl->QueryInterface(
1863 pslw, &IID_IPersistFile, (void**)&ppf);
1864 if (hr != S_OK)
1865 goto shortcut_errorw;
1866
1867 // "load" the name and resolve the link
1868 hr = ppf->lpVtbl->Load(ppf, p, STGM_READ);
1869 if (hr != S_OK)
1870 goto shortcut_errorw;
1871# if 0 // This makes Vim wait a long time if the target does not exist.
1872 hr = pslw->lpVtbl->Resolve(pslw, NULL, SLR_NO_UI);
1873 if (hr != S_OK)
1874 goto shortcut_errorw;
1875# endif
1876
1877 // Get the path to the link target.
1878 ZeroMemory(wsz, MAX_PATH * sizeof(WCHAR));
1879 hr = pslw->lpVtbl->GetPath(pslw, wsz, MAX_PATH, &ffdw, 0);
1880 if (hr == S_OK && wsz[0] != NUL)
1881 rfname = utf16_to_enc(wsz, NULL);
1882
1883shortcut_errorw:
1884 vim_free(p);
Bram Moolenaarcd981f22014-02-11 17:06:00 +01001885 goto shortcut_end;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001886 }
1887 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001888 goto shortcut_end;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001889 }
1890# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 // create a link manager object and request its interface
1892 hr = CoCreateInstance(
1893 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
1894 &IID_IShellLink, (void**)&psl);
1895 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001896 goto shortcut_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897
1898 // Get a pointer to the IPersistFile interface.
1899 hr = psl->lpVtbl->QueryInterface(
1900 psl, &IID_IPersistFile, (void**)&ppf);
1901 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001902 goto shortcut_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903
1904 // full path string must be in Unicode.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001905 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)fname, -1, wsz, MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00001907 // "load" the name and resolve the link
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 hr = ppf->lpVtbl->Load(ppf, wsz, STGM_READ);
1909 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001910 goto shortcut_end;
1911# if 0 // This makes Vim wait a long time if the target doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 hr = psl->lpVtbl->Resolve(psl, NULL, SLR_NO_UI);
1913 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001914 goto shortcut_end;
1915# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916
1917 // Get the path to the link target.
1918 ZeroMemory(buf, MAX_PATH);
1919 hr = psl->lpVtbl->GetPath(psl, buf, MAX_PATH, &ffd, 0);
1920 if (hr == S_OK && buf[0] != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001921 rfname = vim_strsave((char_u *)buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922
Bram Moolenaar604729e2013-08-30 16:44:19 +02001923shortcut_end:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 // Release all interface pointers (both belong to the same object)
1925 if (ppf != NULL)
1926 ppf->lpVtbl->Release(ppf);
1927 if (psl != NULL)
1928 psl->lpVtbl->Release(psl);
Bram Moolenaar604729e2013-08-30 16:44:19 +02001929# ifdef FEAT_MBYTE
1930 if (pslw != NULL)
1931 pslw->lpVtbl->Release(pslw);
1932# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933
1934 CoUninitialize();
1935 return rfname;
1936}
1937#endif
1938
1939#if (defined(FEAT_EVAL) && !defined(FEAT_GUI)) || defined(PROTO)
1940/*
1941 * Bring ourselves to the foreground. Does work if the OS doesn't allow it.
1942 */
1943 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001944win32_set_foreground(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945{
1946# ifndef FEAT_GUI
1947 GetConsoleHwnd(); /* get value of s_hwnd */
1948# endif
1949 if (s_hwnd != 0)
1950 SetForegroundWindow(s_hwnd);
1951}
1952#endif
1953
1954#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
1955/*
1956 * Client-server code for Vim
1957 *
1958 * Originally written by Paul Moore
1959 */
1960
1961/* In order to handle inter-process messages, we need to have a window. But
1962 * the functions in this module can be called before the main GUI window is
1963 * created (and may also be called in the console version, where there is no
1964 * GUI window at all).
1965 *
1966 * So we create a hidden window, and arrange to destroy it on exit.
1967 */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001968HWND message_window = 0; /* window that's handling messages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969
1970#define VIM_CLASSNAME "VIM_MESSAGES"
1971#define VIM_CLASSNAME_LEN (sizeof(VIM_CLASSNAME) - 1)
1972
1973/* Communication is via WM_COPYDATA messages. The message type is send in
1974 * the dwData parameter. Types are defined here. */
1975#define COPYDATA_KEYS 0
1976#define COPYDATA_REPLY 1
1977#define COPYDATA_EXPR 10
1978#define COPYDATA_RESULT 11
1979#define COPYDATA_ERROR_RESULT 12
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001980#define COPYDATA_ENCODING 20
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981
1982/* This is a structure containing a server HWND and its name. */
1983struct server_id
1984{
1985 HWND hwnd;
1986 char_u *name;
1987};
1988
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001989/* Last received 'encoding' that the client uses. */
1990static char_u *client_enc = NULL;
1991
1992/*
1993 * Tell the other side what encoding we are using.
1994 * Errors are ignored.
1995 */
1996 static void
1997serverSendEnc(HWND target)
1998{
1999 COPYDATASTRUCT data;
2000
2001 data.dwData = COPYDATA_ENCODING;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002002#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002003 data.cbData = (DWORD)STRLEN(p_enc) + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002004 data.lpData = p_enc;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002005#else
Bram Moolenaar8765a4a2010-07-27 22:41:43 +02002006 data.cbData = (DWORD)STRLEN("latin1") + 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002007 data.lpData = "latin1";
2008#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002009 (void)SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2010 (LPARAM)(&data));
2011}
2012
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013/*
2014 * Clean up on exit. This destroys the hidden message window.
2015 */
2016 static void
2017#ifdef __BORLANDC__
2018 _RTLENTRYF
2019#endif
2020CleanUpMessaging(void)
2021{
2022 if (message_window != 0)
2023 {
2024 DestroyWindow(message_window);
2025 message_window = 0;
2026 }
2027}
2028
2029static int save_reply(HWND server, char_u *reply, int expr);
2030
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002031/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 * The window procedure for the hidden message window.
2033 * It handles callback messages and notifications from servers.
2034 * In order to process these messages, it is necessary to run a
2035 * message loop. Code which may run before the main message loop
2036 * is started (in the GUI) is careful to pump messages when it needs
2037 * to. Features which require message delivery during normal use will
2038 * not work in the console version - this basically means those
2039 * features which allow Vim to act as a server, rather than a client.
2040 */
2041 static LRESULT CALLBACK
2042Messaging_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
2043{
2044 if (msg == WM_COPYDATA)
2045 {
2046 /* This is a message from another Vim. The dwData member of the
2047 * COPYDATASTRUCT determines the type of message:
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002048 * COPYDATA_ENCODING:
2049 * The encoding that the client uses. Following messages will
2050 * use this encoding, convert if needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 * COPYDATA_KEYS:
2052 * A key sequence. We are a server, and a client wants these keys
2053 * adding to the input queue.
2054 * COPYDATA_REPLY:
2055 * A reply. We are a client, and a server has sent this message
2056 * in response to a request. (server2client())
2057 * COPYDATA_EXPR:
2058 * An expression. We are a server, and a client wants us to
2059 * evaluate this expression.
2060 * COPYDATA_RESULT:
2061 * A reply. We are a client, and a server has sent this message
2062 * in response to a COPYDATA_EXPR.
2063 * COPYDATA_ERROR_RESULT:
2064 * A reply. We are a client, and a server has sent this message
2065 * in response to a COPYDATA_EXPR that failed to evaluate.
2066 */
2067 COPYDATASTRUCT *data = (COPYDATASTRUCT*)lParam;
2068 HWND sender = (HWND)wParam;
2069 COPYDATASTRUCT reply;
2070 char_u *res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 int retval;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002072 char_u *str;
2073 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074
2075 switch (data->dwData)
2076 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002077 case COPYDATA_ENCODING:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002078# ifdef FEAT_MBYTE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002079 /* Remember the encoding that the client uses. */
2080 vim_free(client_enc);
2081 client_enc = enc_canonize((char_u *)data->lpData);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002082# endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002083 return 1;
2084
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 case COPYDATA_KEYS:
2086 /* Remember who sent this, for <client> */
2087 clientWindow = sender;
2088
2089 /* Add the received keys to the input buffer. The loop waiting
2090 * for the user to do something should check the input buffer. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002091 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2092 server_to_input_buf(str);
2093 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094
2095# ifdef FEAT_GUI
2096 /* Wake up the main GUI loop. */
2097 if (s_hwnd != 0)
2098 PostMessage(s_hwnd, WM_NULL, 0, 0);
2099# endif
2100 return 1;
2101
2102 case COPYDATA_EXPR:
2103 /* Remember who sent this, for <client> */
2104 clientWindow = sender;
2105
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002106 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2107 res = eval_client_expr_to_string(str);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002108
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 if (res == NULL)
2110 {
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002111 char *err = _(e_invexprmsg);
2112 size_t len = STRLEN(str) + STRLEN(err) + 5;
2113
2114 res = alloc(len);
2115 if (res != NULL)
2116 vim_snprintf((char *)res, len, "%s: \"%s\"", err, str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 reply.dwData = COPYDATA_ERROR_RESULT;
2118 }
2119 else
2120 reply.dwData = COPYDATA_RESULT;
2121 reply.lpData = res;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002122 reply.cbData = (DWORD)STRLEN(res) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002124 serverSendEnc(sender);
Bram Moolenaar5246cd72013-06-16 16:41:47 +02002125 retval = (int)SendMessage(sender, WM_COPYDATA,
2126 (WPARAM)message_window, (LPARAM)(&reply));
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002127 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 vim_free(res);
2129 return retval;
2130
2131 case COPYDATA_REPLY:
2132 case COPYDATA_RESULT:
2133 case COPYDATA_ERROR_RESULT:
2134 if (data->lpData != NULL)
2135 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002136 str = serverConvert(client_enc, (char_u *)data->lpData,
2137 &tofree);
2138 if (tofree == NULL)
2139 str = vim_strsave(str);
2140 if (save_reply(sender, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 (data->dwData == COPYDATA_REPLY ? 0 :
2142 (data->dwData == COPYDATA_RESULT ? 1 :
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002143 2))) == FAIL)
2144 vim_free(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145#ifdef FEAT_AUTOCMD
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002146 else if (data->dwData == COPYDATA_REPLY)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 {
Bram Moolenaar427d51c2013-06-16 16:01:25 +02002148 char_u winstr[30];
2149
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002150 sprintf((char *)winstr, PRINTF_HEX_LONG_U, (long_u)sender);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002151 apply_autocmds(EVENT_REMOTEREPLY, winstr, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 TRUE, curbuf);
2153 }
2154#endif
2155 }
2156 return 1;
2157 }
2158
2159 return 0;
2160 }
2161
2162 else if (msg == WM_ACTIVATE && wParam == WA_ACTIVE)
2163 {
2164 /* When the message window is activated (brought to the foreground),
2165 * this actually applies to the text window. */
2166#ifndef FEAT_GUI
2167 GetConsoleHwnd(); /* get value of s_hwnd */
2168#endif
2169 if (s_hwnd != 0)
2170 {
2171 SetForegroundWindow(s_hwnd);
2172 return 0;
2173 }
2174 }
2175
2176 return DefWindowProc(hwnd, msg, wParam, lParam);
2177}
2178
2179/*
2180 * Initialise the message handling process. This involves creating a window
2181 * to handle messages - the window will not be visible.
2182 */
2183 void
2184serverInitMessaging(void)
2185{
2186 WNDCLASS wndclass;
2187 HINSTANCE s_hinst;
2188
2189 /* Clean up on exit */
2190 atexit(CleanUpMessaging);
2191
2192 /* Register a window class - we only really care
2193 * about the window procedure
2194 */
2195 s_hinst = (HINSTANCE)GetModuleHandle(0);
2196 wndclass.style = 0;
2197 wndclass.lpfnWndProc = Messaging_WndProc;
2198 wndclass.cbClsExtra = 0;
2199 wndclass.cbWndExtra = 0;
2200 wndclass.hInstance = s_hinst;
2201 wndclass.hIcon = NULL;
2202 wndclass.hCursor = NULL;
2203 wndclass.hbrBackground = NULL;
2204 wndclass.lpszMenuName = NULL;
2205 wndclass.lpszClassName = VIM_CLASSNAME;
2206 RegisterClass(&wndclass);
2207
2208 /* Create the message window. It will be hidden, so the details don't
2209 * matter. Don't use WS_OVERLAPPEDWINDOW, it will make a shortcut remove
2210 * focus from gvim. */
2211 message_window = CreateWindow(VIM_CLASSNAME, "",
2212 WS_POPUPWINDOW | WS_CAPTION,
2213 CW_USEDEFAULT, CW_USEDEFAULT,
2214 100, 100, NULL, NULL,
2215 s_hinst, NULL);
2216}
2217
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002218/* Used by serverSendToVim() to find an alternate server name. */
2219static char_u *altname_buf_ptr = NULL;
2220
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221/*
2222 * Get the title of the window "hwnd", which is the Vim server name, in
2223 * "name[namelen]" and return the length.
2224 * Returns zero if window "hwnd" is not a Vim server.
2225 */
2226 static int
2227getVimServerName(HWND hwnd, char *name, int namelen)
2228{
2229 int len;
2230 char buffer[VIM_CLASSNAME_LEN + 1];
2231
2232 /* Ignore windows which aren't Vim message windows */
2233 len = GetClassName(hwnd, buffer, sizeof(buffer));
2234 if (len != VIM_CLASSNAME_LEN || STRCMP(buffer, VIM_CLASSNAME) != 0)
2235 return 0;
2236
2237 /* Get the title of the window */
2238 return GetWindowText(hwnd, name, namelen);
2239}
2240
2241 static BOOL CALLBACK
2242enumWindowsGetServer(HWND hwnd, LPARAM lparam)
2243{
2244 struct server_id *id = (struct server_id *)lparam;
2245 char server[MAX_PATH];
2246
2247 /* Get the title of the window */
2248 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2249 return TRUE;
2250
2251 /* If this is the server we're looking for, return its HWND */
2252 if (STRICMP(server, id->name) == 0)
2253 {
2254 id->hwnd = hwnd;
2255 return FALSE;
2256 }
2257
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002258 /* If we are looking for an alternate server, remember this name. */
2259 if (altname_buf_ptr != NULL
2260 && STRNICMP(server, id->name, STRLEN(id->name)) == 0
2261 && vim_isdigit(server[STRLEN(id->name)]))
2262 {
2263 STRCPY(altname_buf_ptr, server);
2264 altname_buf_ptr = NULL; /* don't use another name */
2265 }
2266
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 /* Otherwise, keep looking */
2268 return TRUE;
2269}
2270
2271 static BOOL CALLBACK
2272enumWindowsGetNames(HWND hwnd, LPARAM lparam)
2273{
2274 garray_T *ga = (garray_T *)lparam;
2275 char server[MAX_PATH];
2276
2277 /* Get the title of the window */
2278 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2279 return TRUE;
2280
2281 /* Add the name to the list */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002282 ga_concat(ga, (char_u *)server);
2283 ga_concat(ga, (char_u *)"\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 return TRUE;
2285}
2286
2287 static HWND
2288findServer(char_u *name)
2289{
2290 struct server_id id;
2291
2292 id.name = name;
2293 id.hwnd = 0;
2294
2295 EnumWindows(enumWindowsGetServer, (LPARAM)(&id));
2296
2297 return id.hwnd;
2298}
2299
2300 void
2301serverSetName(char_u *name)
2302{
2303 char_u *ok_name;
2304 HWND hwnd = 0;
2305 int i = 0;
2306 char_u *p;
2307
2308 /* Leave enough space for a 9-digit suffix to ensure uniqueness! */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002309 ok_name = alloc((unsigned)STRLEN(name) + 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310
2311 STRCPY(ok_name, name);
2312 p = ok_name + STRLEN(name);
2313
2314 for (;;)
2315 {
2316 /* This is inefficient - we're doing an EnumWindows loop for each
2317 * possible name. It would be better to grab all names in one go,
2318 * and scan the list each time...
2319 */
2320 hwnd = findServer(ok_name);
2321 if (hwnd == 0)
2322 break;
2323
2324 ++i;
2325 if (i >= 1000)
2326 break;
2327
2328 sprintf((char *)p, "%d", i);
2329 }
2330
2331 if (hwnd != 0)
2332 vim_free(ok_name);
2333 else
2334 {
2335 /* Remember the name */
2336 serverName = ok_name;
2337#ifdef FEAT_TITLE
2338 need_maketitle = TRUE; /* update Vim window title later */
2339#endif
2340
2341 /* Update the message window title */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002342 SetWindowText(message_window, (LPCSTR)ok_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343
2344#ifdef FEAT_EVAL
2345 /* Set the servername variable */
2346 set_vim_var_string(VV_SEND_SERVER, serverName, -1);
2347#endif
2348 }
2349}
2350
2351 char_u *
2352serverGetVimNames(void)
2353{
2354 garray_T ga;
2355
2356 ga_init2(&ga, 1, 100);
2357
2358 EnumWindows(enumWindowsGetNames, (LPARAM)(&ga));
Bram Moolenaar269ec652004-07-29 08:43:53 +00002359 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360
2361 return ga.ga_data;
2362}
2363
2364 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002365serverSendReply(
2366 char_u *name, /* Where to send. */
2367 char_u *reply) /* What to send. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368{
2369 HWND target;
2370 COPYDATASTRUCT data;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002371 long_u n = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372
2373 /* The "name" argument is a magic cookie obtained from expand("<client>").
2374 * It should be of the form 0xXXXXX - i.e. a C hex literal, which is the
2375 * value of the client's message window HWND.
2376 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002377 sscanf((char *)name, SCANF_HEX_LONG_U, &n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 if (n == 0)
2379 return -1;
2380
2381 target = (HWND)n;
2382 if (!IsWindow(target))
2383 return -1;
2384
2385 data.dwData = COPYDATA_REPLY;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002386 data.cbData = (DWORD)STRLEN(reply) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 data.lpData = reply;
2388
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002389 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2391 (LPARAM)(&data)))
2392 return 0;
2393
2394 return -1;
2395}
2396
2397 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002398serverSendToVim(
2399 char_u *name, /* Where to send. */
2400 char_u *cmd, /* What to send. */
2401 char_u **result, /* Result of eval'ed expression */
2402 void *ptarget, /* HWND of server */
2403 int asExpr, /* Expression or keys? */
2404 int silent) /* don't complain about no server */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405{
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002406 HWND target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 COPYDATASTRUCT data;
2408 char_u *retval = NULL;
2409 int retcode = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002410 char_u altname_buf[MAX_PATH];
2411
Bram Moolenaar7416f3e2017-03-18 18:10:13 +01002412 /* Execute locally if no display or target is ourselves */
2413 if (serverName != NULL && STRICMP(name, serverName) == 0)
2414 return sendToLocalVim(cmd, asExpr, result);
2415
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002416 /* If the server name does not end in a digit then we look for an
2417 * alternate name. e.g. when "name" is GVIM the we may find GVIM2. */
2418 if (STRLEN(name) > 1 && !vim_isdigit(name[STRLEN(name) - 1]))
2419 altname_buf_ptr = altname_buf;
2420 altname_buf[0] = NUL;
2421 target = findServer(name);
2422 altname_buf_ptr = NULL;
2423 if (target == 0 && altname_buf[0] != NUL)
2424 /* Use another server name we found. */
2425 target = findServer(altname_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426
2427 if (target == 0)
2428 {
2429 if (!silent)
2430 EMSG2(_(e_noserver), name);
2431 return -1;
2432 }
2433
2434 if (ptarget)
2435 *(HWND *)ptarget = target;
2436
2437 data.dwData = asExpr ? COPYDATA_EXPR : COPYDATA_KEYS;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002438 data.cbData = (DWORD)STRLEN(cmd) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 data.lpData = cmd;
2440
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002441 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2443 (LPARAM)(&data)) == 0)
2444 return -1;
2445
2446 if (asExpr)
2447 retval = serverGetReply(target, &retcode, TRUE, TRUE);
2448
2449 if (result == NULL)
2450 vim_free(retval);
2451 else
2452 *result = retval; /* Caller assumes responsibility for freeing */
2453
2454 return retcode;
2455}
2456
2457/*
2458 * Bring the server to the foreground.
2459 */
2460 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002461serverForeground(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462{
2463 HWND target = findServer(name);
2464
2465 if (target != 0)
2466 SetForegroundWindow(target);
2467}
2468
2469/* Replies from server need to be stored until the client picks them up via
2470 * remote_read(). So we maintain a list of server-id/reply pairs.
2471 * Note that there could be multiple replies from one server pending if the
2472 * client is slow picking them up.
2473 * We just store the replies in a simple list. When we remove an entry, we
2474 * move list entries down to fill the gap.
2475 * The server ID is simply the HWND.
2476 */
2477typedef struct
2478{
2479 HWND server; /* server window */
2480 char_u *reply; /* reply string */
2481 int expr_result; /* 0 for REPLY, 1 for RESULT 2 for error */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002482} reply_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483
2484static garray_T reply_list = {0, 0, sizeof(reply_T), 5, 0};
2485
2486#define REPLY_ITEM(i) ((reply_T *)(reply_list.ga_data) + (i))
2487#define REPLY_COUNT (reply_list.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488
2489/* Flag which is used to wait for a reply */
2490static int reply_received = 0;
2491
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002492/*
2493 * Store a reply. "reply" must be allocated memory (or NULL).
2494 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 static int
2496save_reply(HWND server, char_u *reply, int expr)
2497{
2498 reply_T *rep;
2499
2500 if (ga_grow(&reply_list, 1) == FAIL)
2501 return FAIL;
2502
2503 rep = REPLY_ITEM(REPLY_COUNT);
2504 rep->server = server;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002505 rep->reply = reply;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 rep->expr_result = expr;
2507 if (rep->reply == NULL)
2508 return FAIL;
2509
2510 ++REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 reply_received = 1;
2512 return OK;
2513}
2514
2515/*
2516 * Get a reply from server "server".
2517 * When "expr_res" is non NULL, get the result of an expression, otherwise a
2518 * server2client() message.
2519 * When non NULL, point to return code. 0 => OK, -1 => ERROR
2520 * If "remove" is TRUE, consume the message, the caller must free it then.
2521 * if "wait" is TRUE block until a message arrives (or the server exits).
2522 */
2523 char_u *
2524serverGetReply(HWND server, int *expr_res, int remove, int wait)
2525{
2526 int i;
2527 char_u *reply;
2528 reply_T *rep;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002529 int did_process = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530
2531 /* When waiting, loop until the message waiting for is received. */
2532 for (;;)
2533 {
2534 /* Reset this here, in case a message arrives while we are going
2535 * through the already received messages. */
2536 reply_received = 0;
2537
2538 for (i = 0; i < REPLY_COUNT; ++i)
2539 {
2540 rep = REPLY_ITEM(i);
2541 if (rep->server == server
2542 && ((rep->expr_result != 0) == (expr_res != NULL)))
2543 {
2544 /* Save the values we've found for later */
2545 reply = rep->reply;
2546 if (expr_res != NULL)
2547 *expr_res = rep->expr_result == 1 ? 0 : -1;
2548
2549 if (remove)
2550 {
2551 /* Move the rest of the list down to fill the gap */
2552 mch_memmove(rep, rep + 1,
2553 (REPLY_COUNT - i - 1) * sizeof(reply_T));
2554 --REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 }
2556
2557 /* Return the reply to the caller, who takes on responsibility
2558 * for freeing it if "remove" is TRUE. */
2559 return reply;
2560 }
2561 }
2562
2563 /* If we got here, we didn't find a reply. Return immediately if the
2564 * "wait" parameter isn't set. */
2565 if (!wait)
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002566 {
2567 /* Process pending messages once. Without this, looping on
2568 * remote_peek() would never get the reply. */
2569 if (!did_process)
2570 {
2571 did_process = TRUE;
2572 serverProcessPendingMessages();
2573 continue;
2574 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 break;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002576 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577
2578 /* We need to wait for a reply. Enter a message loop until the
2579 * "reply_received" flag gets set. */
2580
2581 /* Loop until we receive a reply */
2582 while (reply_received == 0)
2583 {
Bram Moolenaar42205552017-03-18 19:42:22 +01002584#ifdef FEAT_TIMERS
2585 check_due_timer();
2586#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 /* Wait for a SendMessage() call to us. This could be the reply
2588 * we are waiting for. Use a timeout of a second, to catch the
2589 * situation that the server died unexpectedly. */
2590 MsgWaitForMultipleObjects(0, NULL, TRUE, 1000, QS_ALLINPUT);
2591
2592 /* If the server has died, give up */
2593 if (!IsWindow(server))
2594 return NULL;
2595
2596 serverProcessPendingMessages();
2597 }
2598 }
2599
2600 return NULL;
2601}
2602
2603/*
2604 * Process any messages in the Windows message queue.
2605 */
2606 void
2607serverProcessPendingMessages(void)
2608{
2609 MSG msg;
2610
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002611 while (pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 {
2613 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002614 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 }
2616}
2617
2618#endif /* FEAT_CLIENTSERVER */
2619
2620#if defined(FEAT_GUI) || (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) \
2621 || defined(PROTO)
2622
2623struct charset_pair
2624{
2625 char *name;
2626 BYTE charset;
2627};
2628
2629static struct charset_pair
2630charset_pairs[] =
2631{
2632 {"ANSI", ANSI_CHARSET},
2633 {"CHINESEBIG5", CHINESEBIG5_CHARSET},
2634 {"DEFAULT", DEFAULT_CHARSET},
2635 {"HANGEUL", HANGEUL_CHARSET},
2636 {"OEM", OEM_CHARSET},
2637 {"SHIFTJIS", SHIFTJIS_CHARSET},
2638 {"SYMBOL", SYMBOL_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 {"ARABIC", ARABIC_CHARSET},
2640 {"BALTIC", BALTIC_CHARSET},
2641 {"EASTEUROPE", EASTEUROPE_CHARSET},
2642 {"GB2312", GB2312_CHARSET},
2643 {"GREEK", GREEK_CHARSET},
2644 {"HEBREW", HEBREW_CHARSET},
2645 {"JOHAB", JOHAB_CHARSET},
2646 {"MAC", MAC_CHARSET},
2647 {"RUSSIAN", RUSSIAN_CHARSET},
2648 {"THAI", THAI_CHARSET},
2649 {"TURKISH", TURKISH_CHARSET},
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002650#ifdef VIETNAMESE_CHARSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 {"VIETNAMESE", VIETNAMESE_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652#endif
2653 {NULL, 0}
2654};
2655
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002656struct quality_pair
2657{
2658 char *name;
2659 DWORD quality;
2660};
2661
2662static struct quality_pair
2663quality_pairs[] = {
2664#ifdef CLEARTYPE_QUALITY
2665 {"CLEARTYPE", CLEARTYPE_QUALITY},
2666#endif
2667#ifdef ANTIALIASED_QUALITY
2668 {"ANTIALIASED", ANTIALIASED_QUALITY},
2669#endif
Bram Moolenaar73a733e2016-05-11 21:05:05 +02002670#ifdef NONANTIALIASED_QUALITY
2671 {"NONANTIALIASED", NONANTIALIASED_QUALITY},
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002672#endif
2673#ifdef PROOF_QUALITY
2674 {"PROOF", PROOF_QUALITY},
2675#endif
Bram Moolenaar4c9ce052016-04-04 21:06:19 +02002676#ifdef DRAFT_QUALITY
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002677 {"DRAFT", DRAFT_QUALITY},
2678#endif
2679 {"DEFAULT", DEFAULT_QUALITY},
2680 {NULL, 0}
2681};
2682
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683/*
2684 * Convert a charset ID to a name.
2685 * Return NULL when not recognized.
2686 */
2687 char *
2688charset_id2name(int id)
2689{
2690 struct charset_pair *cp;
2691
2692 for (cp = charset_pairs; cp->name != NULL; ++cp)
2693 if ((BYTE)id == cp->charset)
2694 break;
2695 return cp->name;
2696}
2697
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002698/*
2699 * Convert a quality ID to a name.
2700 * Return NULL when not recognized.
2701 */
2702 char *
2703quality_id2name(DWORD id)
2704{
2705 struct quality_pair *qp;
2706
2707 for (qp = quality_pairs; qp->name != NULL; ++qp)
2708 if (id == qp->quality)
2709 break;
2710 return qp->name;
2711}
2712
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713static const LOGFONT s_lfDefault =
2714{
2715 -12, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, DEFAULT_CHARSET,
2716 OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
2717 PROOF_QUALITY, FIXED_PITCH | FF_DONTCARE,
2718 "Fixedsys" /* see _ReadVimIni */
2719};
2720
2721/* Initialise the "current height" to -12 (same as s_lfDefault) just
2722 * in case the user specifies a font in "guifont" with no size before a font
2723 * with an explicit size has been set. This defaults the size to this value
2724 * (-12 equates to roughly 9pt).
2725 */
2726int current_font_height = -12; /* also used in gui_w48.c */
2727
2728/* Convert a string representing a point size into pixels. The string should
2729 * be a positive decimal number, with an optional decimal point (eg, "12", or
2730 * "10.5"). The pixel value is returned, and a pointer to the next unconverted
2731 * character is stored in *end. The flag "vertical" says whether this
2732 * calculation is for a vertical (height) size or a horizontal (width) one.
2733 */
2734 static int
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002735points_to_pixels(char_u *str, char_u **end, int vertical, long_i pprinter_dc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736{
2737 int pixels;
2738 int points = 0;
2739 int divisor = 0;
2740 HWND hwnd = (HWND)0;
2741 HDC hdc;
2742 HDC printer_dc = (HDC)pprinter_dc;
2743
2744 while (*str != NUL)
2745 {
2746 if (*str == '.' && divisor == 0)
2747 {
2748 /* Start keeping a divisor, for later */
2749 divisor = 1;
2750 }
2751 else
2752 {
2753 if (!VIM_ISDIGIT(*str))
2754 break;
2755
2756 points *= 10;
2757 points += *str - '0';
2758 divisor *= 10;
2759 }
2760 ++str;
2761 }
2762
2763 if (divisor == 0)
2764 divisor = 1;
2765
2766 if (printer_dc == NULL)
2767 {
2768 hwnd = GetDesktopWindow();
2769 hdc = GetWindowDC(hwnd);
2770 }
2771 else
2772 hdc = printer_dc;
2773
2774 pixels = MulDiv(points,
2775 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX),
2776 72 * divisor);
2777
2778 if (printer_dc == NULL)
2779 ReleaseDC(hwnd, hdc);
2780
2781 *end = str;
2782 return pixels;
2783}
2784
2785 static int CALLBACK
2786font_enumproc(
2787 ENUMLOGFONT *elf,
Bram Moolenaar1266d672017-02-01 13:43:36 +01002788 NEWTEXTMETRIC *ntm UNUSED,
2789 int type UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 LPARAM lparam)
2791{
2792 /* Return value:
2793 * 0 = terminate now (monospace & ANSI)
2794 * 1 = continue, still no luck...
2795 * 2 = continue, but we have an acceptable LOGFONT
2796 * (monospace, not ANSI)
2797 * We use these values, as EnumFontFamilies returns 1 if the
2798 * callback function is never called. So, we check the return as
2799 * 0 = perfect, 2 = OK, 1 = no good...
2800 * It's not pretty, but it works!
2801 */
2802
2803 LOGFONT *lf = (LOGFONT *)(lparam);
2804
2805#ifndef FEAT_PROPORTIONAL_FONTS
2806 /* Ignore non-monospace fonts without further ado */
2807 if ((ntm->tmPitchAndFamily & 1) != 0)
2808 return 1;
2809#endif
2810
2811 /* Remember this LOGFONT as a "possible" */
2812 *lf = elf->elfLogFont;
2813
2814 /* Terminate the scan as soon as we find an ANSI font */
2815 if (lf->lfCharSet == ANSI_CHARSET
2816 || lf->lfCharSet == OEM_CHARSET
2817 || lf->lfCharSet == DEFAULT_CHARSET)
2818 return 0;
2819
2820 /* Continue the scan - we have a non-ANSI font */
2821 return 2;
2822}
2823
2824 static int
2825init_logfont(LOGFONT *lf)
2826{
2827 int n;
2828 HWND hwnd = GetDesktopWindow();
2829 HDC hdc = GetWindowDC(hwnd);
2830
2831 n = EnumFontFamilies(hdc,
2832 (LPCSTR)lf->lfFaceName,
2833 (FONTENUMPROC)font_enumproc,
2834 (LPARAM)lf);
2835
2836 ReleaseDC(hwnd, hdc);
2837
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002838 /* If we couldn't find a usable font, return failure */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 if (n == 1)
2840 return FAIL;
2841
2842 /* Tidy up the rest of the LOGFONT structure. We set to a basic
2843 * font - get_logfont() sets bold, italic, etc based on the user's
2844 * input.
2845 */
2846 lf->lfHeight = current_font_height;
2847 lf->lfWidth = 0;
2848 lf->lfItalic = FALSE;
2849 lf->lfUnderline = FALSE;
2850 lf->lfStrikeOut = FALSE;
2851 lf->lfWeight = FW_NORMAL;
2852
2853 /* Return success */
2854 return OK;
2855}
2856
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002857/*
2858 * Get font info from "name" into logfont "lf".
2859 * Return OK for a valid name, FAIL otherwise.
2860 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 int
2862get_logfont(
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002863 LOGFONT *lf,
2864 char_u *name,
2865 HDC printer_dc,
2866 int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867{
2868 char_u *p;
2869 int i;
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002870 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 static LOGFONT *lastlf = NULL;
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002872#ifdef FEAT_MBYTE
2873 char_u *acpname = NULL;
2874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875
2876 *lf = s_lfDefault;
2877 if (name == NULL)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002878 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002880#ifdef FEAT_MBYTE
2881 /* Convert 'name' from 'encoding' to the current codepage, because
2882 * lf->lfFaceName uses the current codepage.
2883 * TODO: Use Wide APIs instead of ANSI APIs. */
2884 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2885 {
2886 int len;
Bram Moolenaar418f81b2016-02-16 20:12:02 +01002887 enc_to_acp(name, (int)STRLEN(name), &acpname, &len);
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002888 name = acpname;
2889 }
2890#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 if (STRCMP(name, "*") == 0)
2892 {
2893#if defined(FEAT_GUI_W32)
2894 CHOOSEFONT cf;
2895 /* if name is "*", bring up std font dialog: */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02002896 vim_memset(&cf, 0, sizeof(cf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 cf.lStructSize = sizeof(cf);
2898 cf.hwndOwner = s_hwnd;
2899 cf.Flags = CF_SCREENFONTS | CF_FIXEDPITCHONLY | CF_INITTOLOGFONTSTRUCT;
2900 if (lastlf != NULL)
2901 *lf = *lastlf;
2902 cf.lpLogFont = lf;
2903 cf.nFontType = 0 ; //REGULAR_FONTTYPE;
2904 if (ChooseFont(&cf))
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002905 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906#endif
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002907 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 }
2909
2910 /*
2911 * Split name up, it could be <name>:h<height>:w<width> etc.
2912 */
2913 for (p = name; *p && *p != ':'; p++)
2914 {
Bram Moolenaar38bc4952016-11-10 17:10:51 +01002915 if (p - name + 1 >= LF_FACESIZE)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002916 goto theend; /* Name too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 lf->lfFaceName[p - name] = *p;
2918 }
2919 if (p != name)
2920 lf->lfFaceName[p - name] = NUL;
2921
2922 /* First set defaults */
2923 lf->lfHeight = -12;
2924 lf->lfWidth = 0;
2925 lf->lfWeight = FW_NORMAL;
2926 lf->lfItalic = FALSE;
2927 lf->lfUnderline = FALSE;
2928 lf->lfStrikeOut = FALSE;
2929
2930 /*
2931 * If the font can't be found, try replacing '_' by ' '.
2932 */
2933 if (init_logfont(lf) == FAIL)
2934 {
2935 int did_replace = FALSE;
2936
2937 for (i = 0; lf->lfFaceName[i]; ++i)
2938 if (lf->lfFaceName[i] == '_')
2939 {
2940 lf->lfFaceName[i] = ' ';
2941 did_replace = TRUE;
2942 }
2943 if (!did_replace || init_logfont(lf) == FAIL)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002944 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 }
2946
2947 while (*p == ':')
2948 p++;
2949
2950 /* Set the values found after ':' */
2951 while (*p)
2952 {
2953 switch (*p++)
2954 {
2955 case 'h':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002956 lf->lfHeight = - points_to_pixels(p, &p, TRUE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957 break;
2958 case 'w':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002959 lf->lfWidth = points_to_pixels(p, &p, FALSE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 break;
2961 case 'b':
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 lf->lfWeight = FW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 break;
2964 case 'i':
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 lf->lfItalic = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 break;
2967 case 'u':
2968 lf->lfUnderline = TRUE;
2969 break;
2970 case 's':
2971 lf->lfStrikeOut = TRUE;
2972 break;
2973 case 'c':
2974 {
2975 struct charset_pair *cp;
2976
2977 for (cp = charset_pairs; cp->name != NULL; ++cp)
2978 if (STRNCMP(p, cp->name, strlen(cp->name)) == 0)
2979 {
2980 lf->lfCharSet = cp->charset;
2981 p += strlen(cp->name);
2982 break;
2983 }
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002984 if (cp->name == NULL && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 {
Bram Moolenaar051b7822005-05-19 21:00:46 +00002986 vim_snprintf((char *)IObuff, IOSIZE,
2987 _("E244: Illegal charset name \"%s\" in font name \"%s\""), p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 EMSG(IObuff);
2989 break;
2990 }
2991 break;
2992 }
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002993 case 'q':
2994 {
2995 struct quality_pair *qp;
2996
2997 for (qp = quality_pairs; qp->name != NULL; ++qp)
2998 if (STRNCMP(p, qp->name, strlen(qp->name)) == 0)
2999 {
3000 lf->lfQuality = qp->quality;
3001 p += strlen(qp->name);
3002 break;
3003 }
3004 if (qp->name == NULL && verbose)
3005 {
3006 vim_snprintf((char *)IObuff, IOSIZE,
3007 _("E244: Illegal quality name \"%s\" in font name \"%s\""), p, name);
3008 EMSG(IObuff);
3009 break;
3010 }
3011 break;
3012 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 default:
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003014 if (verbose)
3015 {
Bram Moolenaar051b7822005-05-19 21:00:46 +00003016 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003017 _("E245: Illegal char '%c' in font name \"%s\""),
3018 p[-1], name);
3019 EMSG(IObuff);
3020 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003021 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 }
3023 while (*p == ':')
3024 p++;
3025 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003026 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 /* ron: init lastlf */
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003030 if (ret == OK && printer_dc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 {
3032 vim_free(lastlf);
3033 lastlf = (LOGFONT *)alloc(sizeof(LOGFONT));
3034 if (lastlf != NULL)
3035 mch_memmove(lastlf, lf, sizeof(LOGFONT));
3036 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003037#ifdef FEAT_MBYTE
3038 vim_free(acpname);
3039#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003041 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042}
3043
3044#endif /* defined(FEAT_GUI) || defined(FEAT_PRINTER) */
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003045
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003046#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003047/*
3048 * Initialize the Winsock dll.
3049 */
3050 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003051channel_init_winsock(void)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003052{
3053 WSADATA wsaData;
3054 int wsaerr;
3055
3056 if (WSInitialized)
3057 return;
3058
3059 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
3060 if (wsaerr == 0)
3061 WSInitialized = TRUE;
3062}
3063#endif