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