blob: 374a2399c566991c2d7d3625903c8f2e1dc3bf85 [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 {
456 /* don't replace backslash in backtick quoted strings */
457 int len = STRLEN(p);
458 if (len > 2 && *(p + len - 1) == '`')
459 return;
460 }
461
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000462 while (*p)
463 {
464 if (*p == psepcN)
465 *p = psepc;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100466 MB_PTR_ADV(p);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468}
469
Bram Moolenaar8767f522016-07-01 17:17:39 +0200470/* Use 64-bit stat functions if available. */
471#ifdef HAVE_STAT64
472# undef stat
473# undef _stat
474# undef _wstat
475# undef _fstat
476# define stat _stat64
477# define _stat _stat64
478# define _wstat _wstat64
479# define _fstat _fstat64
480#endif
481
Bram Moolenaar9d1685d2014-01-14 12:18:45 +0100482#if (defined(_MSC_VER) && (_MSC_VER >= 1300)) || defined(__MINGW32__)
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200483# define OPEN_OH_ARGTYPE intptr_t
484#else
485# define OPEN_OH_ARGTYPE long
486#endif
487
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200488 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200489stat_symlink_aware(const char *name, stat_T *stp)
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200490{
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100491#if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__)
492 /* Work around for VC12 or earlier (and MinGW). stat() can't handle
493 * symlinks properly.
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200494 * VC9 or earlier: stat() doesn't support a symlink at all. It retrieves
495 * status of a symlink itself.
496 * VC10: stat() supports a symlink to a normal file, but it doesn't support
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100497 * a symlink to a directory (always returns an error).
498 * VC11 and VC12: stat() doesn't return an error for a symlink to a
499 * directory, but it doesn't set S_IFDIR flag.
500 * MinGW: Same as VC9. */
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200501 WIN32_FIND_DATA findData;
502 HANDLE hFind, h;
503 DWORD attr = 0;
504 BOOL is_symlink = FALSE;
505
506 hFind = FindFirstFile(name, &findData);
507 if (hFind != INVALID_HANDLE_VALUE)
508 {
509 attr = findData.dwFileAttributes;
510 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT)
511 && (findData.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
512 is_symlink = TRUE;
513 FindClose(hFind);
514 }
515 if (is_symlink)
516 {
517 h = CreateFile(name, FILE_READ_ATTRIBUTES,
518 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
519 OPEN_EXISTING,
520 (attr & FILE_ATTRIBUTE_DIRECTORY)
521 ? FILE_FLAG_BACKUP_SEMANTICS : 0,
522 NULL);
523 if (h != INVALID_HANDLE_VALUE)
524 {
525 int fd, n;
526
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200527 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200528 n = _fstat(fd, (struct _stat *)stp);
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100529 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY))
530 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR;
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200531 _close(fd);
532 return n;
533 }
534 }
535#endif
536 return stat(name, stp);
537}
538
539#ifdef FEAT_MBYTE
540 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200541wstat_symlink_aware(const WCHAR *name, stat_T *stp)
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200542{
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100543# if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__)
544 /* Work around for VC12 or earlier (and MinGW). _wstat() can't handle
545 * symlinks properly.
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200546 * VC9 or earlier: _wstat() doesn't support a symlink at all. It retrieves
547 * status of a symlink itself.
548 * VC10: _wstat() supports a symlink to a normal file, but it doesn't
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100549 * support a symlink to a directory (always returns an error).
550 * VC11 and VC12: _wstat() doesn't return an error for a symlink to a
551 * directory, but it doesn't set S_IFDIR flag.
552 * MinGW: Same as VC9. */
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200553 int n;
554 BOOL is_symlink = FALSE;
555 HANDLE hFind, h;
556 DWORD attr = 0;
557 WIN32_FIND_DATAW findDataW;
558
559 hFind = FindFirstFileW(name, &findDataW);
560 if (hFind != INVALID_HANDLE_VALUE)
561 {
562 attr = findDataW.dwFileAttributes;
563 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT)
564 && (findDataW.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
565 is_symlink = TRUE;
566 FindClose(hFind);
567 }
568 if (is_symlink)
569 {
570 h = CreateFileW(name, FILE_READ_ATTRIBUTES,
571 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
572 OPEN_EXISTING,
573 (attr & FILE_ATTRIBUTE_DIRECTORY)
574 ? FILE_FLAG_BACKUP_SEMANTICS : 0,
575 NULL);
576 if (h != INVALID_HANDLE_VALUE)
577 {
578 int fd;
579
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200580 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200581 n = _fstat(fd, (struct _stat *)stp);
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100582 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY))
583 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR;
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200584 _close(fd);
585 return n;
586 }
587 }
588# endif
Bram Moolenaar8767f522016-07-01 17:17:39 +0200589 return _wstat(name, (struct _stat *)stp);
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200590}
591#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592
593/*
594 * stat() can't handle a trailing '/' or '\', remove it first.
595 */
596 int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200597vim_stat(const char *name, stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598{
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200599#ifdef FEAT_MBYTE
600 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
601 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
602 * UTF-8. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100603 char_u buf[_MAX_PATH * 3 + 1];
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200604#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100605 char_u buf[_MAX_PATH + 1];
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200606#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100607 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200609 vim_strncpy((char_u *)buf, (char_u *)name, sizeof(buf) - 1);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100610 p = buf + STRLEN(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 if (p > buf)
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100612 MB_PTR_BACK(buf, p);
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100613
614 /* Remove trailing '\\' except root path. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 if (p > buf && (*p == '\\' || *p == '/') && p[-1] != ':')
616 *p = NUL;
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100617
618 if ((buf[0] == '\\' && buf[1] == '\\') || (buf[0] == '/' && buf[1] == '/'))
619 {
620 /* UNC root path must be followed by '\\'. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100621 p = vim_strpbrk(buf + 2, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100622 if (p != NULL)
623 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100624 p = vim_strpbrk(p + 1, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100625 if (p == NULL)
626 STRCAT(buf, "\\");
627 }
628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629#ifdef FEAT_MBYTE
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200630 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000632 WCHAR *wp = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 int n;
634
635 if (wp != NULL)
636 {
Bram Moolenaar8767f522016-07-01 17:17:39 +0200637 n = wstat_symlink_aware(wp, stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638 vim_free(wp);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200639 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 }
641 }
642#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100643 return stat_symlink_aware((char *)buf, stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644}
645
646#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
647 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100648mch_settmode(int tmode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649{
650 /* nothing to do */
651}
652
653 int
654mch_get_shellsize(void)
655{
656 /* never used */
657 return OK;
658}
659
660 void
661mch_set_shellsize(void)
662{
663 /* never used */
664}
665
666/*
667 * Rows and/or Columns has changed.
668 */
669 void
670mch_new_shellsize(void)
671{
672 /* never used */
673}
674
675#endif
676
677/*
678 * We have no job control, so fake it by starting a new shell.
679 */
680 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100681mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682{
683 suspend_shell();
684}
685
686#if defined(USE_MCH_ERRMSG) || defined(PROTO)
687
688#ifdef display_errors
689# undef display_errors
690#endif
691
692/*
693 * Display the saved error message(s).
694 */
695 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100696display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697{
698 char *p;
699
700 if (error_ga.ga_data != NULL)
701 {
702 /* avoid putting up a message box with blanks only */
703 for (p = (char *)error_ga.ga_data; *p; ++p)
704 if (!isspace(*p))
705 {
Bram Moolenaarc17ef8e2006-03-25 21:48:58 +0000706 (void)gui_mch_dialog(
707#ifdef FEAT_GUI
708 gui.starting ? VIM_INFO :
709#endif
710 VIM_ERROR,
711#ifdef FEAT_GUI
712 gui.starting ? (char_u *)_("Message") :
713#endif
714 (char_u *)_("Error"),
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100715 (char_u *)p, (char_u *)_("&Ok"),
716 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 break;
718 }
719 ga_clear(&error_ga);
720 }
721}
722#endif
723
724
725/*
726 * Return TRUE if "p" contain a wildcard that can be expanded by
727 * dos_expandpath().
728 */
729 int
730mch_has_exp_wildcard(char_u *p)
731{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100732 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 {
734 if (vim_strchr((char_u *)"?*[", *p) != NULL
735 || (*p == '~' && p[1] != NUL))
736 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 }
738 return FALSE;
739}
740
741/*
742 * Return TRUE if "p" contain a wildcard or a "~1" kind of thing (could be a
743 * shortened file name).
744 */
745 int
746mch_has_wildcard(char_u *p)
747{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100748 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 {
750 if (vim_strchr((char_u *)
751# ifdef VIM_BACKTICK
752 "?*$[`"
753# else
754 "?*$["
755# endif
756 , *p) != NULL
757 || (*p == '~' && p[1] != NUL))
758 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 }
760 return FALSE;
761}
762
763
764/*
765 * The normal _chdir() does not change the default drive. This one does.
766 * Returning 0 implies success; -1 implies failure.
767 */
768 int
769mch_chdir(char *path)
770{
771 if (path[0] == NUL) /* just checking... */
772 return -1;
773
Bram Moolenaara2974d72009-07-14 16:38:36 +0000774 if (p_verbose >= 5)
775 {
776 verbose_enter();
777 smsg((char_u *)"chdir(%s)", path);
778 verbose_leave();
779 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 if (isalpha(path[0]) && path[1] == ':') /* has a drive name */
781 {
782 /* If we can change to the drive, skip that part of the path. If we
783 * can't then the current directory may be invalid, try using chdir()
784 * with the whole path. */
785 if (_chdrive(TOLOWER_ASC(path[0]) - 'a' + 1) == 0)
786 path += 2;
787 }
788
789 if (*path == NUL) /* drive name only */
790 return 0;
791
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000792#ifdef FEAT_MBYTE
793 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
794 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100795 WCHAR *p = enc_to_utf16((char_u *)path, NULL);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000796 int n;
797
798 if (p != NULL)
799 {
800 n = _wchdir(p);
801 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200802 return n;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000803 }
804 }
805#endif
806
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 return chdir(path); /* let the normal chdir() do the rest */
808}
809
810
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811#ifdef FEAT_GUI_MSWIN
812/*
813 * return non-zero if a character is available
814 */
815 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100816mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817{
818 /* never used */
819 return TRUE;
820}
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200821
822# if defined(FEAT_TERMINAL) || defined(PROTO)
823/*
824 * Check for any pending input or messages.
825 */
826 int
827mch_check_messages(void)
828{
829 /* TODO: check for messages */
830 return TRUE;
831}
832# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833#endif
834
835
836/*
837 * set screen mode, always fails.
838 */
839 int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100840mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841{
842 EMSG(_(e_screenmode));
843 return FAIL;
844}
845
846
847#if defined(FEAT_LIBCALL) || defined(PROTO)
848/*
849 * Call a DLL routine which takes either a string or int param
850 * and returns an allocated string.
851 * Return OK if it worked, FAIL if not.
852 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853typedef LPTSTR (*MYSTRPROCSTR)(LPTSTR);
854typedef LPTSTR (*MYINTPROCSTR)(int);
855typedef int (*MYSTRPROCINT)(LPTSTR);
856typedef int (*MYINTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858/*
859 * Check if a pointer points to a valid NUL terminated string.
860 * Return the length of the string, including terminating NUL.
861 * Returns 0 for an invalid pointer, 1 for an empty string.
862 */
863 static size_t
864check_str_len(char_u *str)
865{
866 SYSTEM_INFO si;
867 MEMORY_BASIC_INFORMATION mbi;
868 size_t length = 0;
869 size_t i;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100870 const char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871
872 /* get page size */
873 GetSystemInfo(&si);
874
875 /* get memory information */
876 if (VirtualQuery(str, &mbi, sizeof(mbi)))
877 {
878 /* pre cast these (typing savers) */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000879 long_u dwStr = (long_u)str;
880 long_u dwBaseAddress = (long_u)mbi.BaseAddress;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881
882 /* get start address of page that str is on */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000883 long_u strPage = dwStr - (dwStr - dwBaseAddress) % si.dwPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884
885 /* get length from str to end of page */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000886 long_u pageLength = si.dwPageSize - (dwStr - strPage);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887
Bram Moolenaar442b4222010-05-24 21:34:22 +0200888 for (p = str; !IsBadReadPtr(p, (UINT)pageLength);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 p += pageLength, pageLength = si.dwPageSize)
890 for (i = 0; i < pageLength; ++i, ++length)
891 if (p[i] == NUL)
892 return length + 1;
893 }
894
895 return 0;
896}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200898/*
899 * Passed to do_in_runtimepath() to load a vim.ico file.
900 */
901 static void
902mch_icon_load_cb(char_u *fname, void *cookie)
903{
904 HANDLE *h = (HANDLE *)cookie;
905
906 *h = LoadImage(NULL,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100907 (LPSTR)fname,
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200908 IMAGE_ICON,
909 64,
910 64,
911 LR_LOADFROMFILE | LR_LOADMAP3DCOLORS);
912}
913
914/*
915 * Try loading an icon file from 'runtimepath'.
916 */
917 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100918mch_icon_load(HANDLE *iconp)
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200919{
920 return do_in_runtimepath((char_u *)"bitmaps/vim.ico",
Bram Moolenaar7f8989d2016-03-12 22:11:39 +0100921 0, mch_icon_load_cb, iconp);
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200922}
923
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 int
925mch_libcall(
926 char_u *libname,
927 char_u *funcname,
928 char_u *argstring, /* NULL when using a argint */
929 int argint,
930 char_u **string_result,/* NULL when using number_result */
931 int *number_result)
932{
933 HINSTANCE hinstLib;
934 MYSTRPROCSTR ProcAdd;
935 MYINTPROCSTR ProcAddI;
936 char_u *retval_str = NULL;
937 int retval_int = 0;
938 size_t len;
939
940 BOOL fRunTimeLinkSuccess = FALSE;
941
942 // Get a handle to the DLL module.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100943 hinstLib = vimLoadLib((char *)libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944
945 // If the handle is valid, try to get the function address.
946 if (hinstLib != NULL)
947 {
948#ifdef HAVE_TRY_EXCEPT
949 __try
950 {
951#endif
952 if (argstring != NULL)
953 {
954 /* Call with string argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100955 ProcAdd = (MYSTRPROCSTR)GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 if ((fRunTimeLinkSuccess = (ProcAdd != NULL)) != 0)
957 {
958 if (string_result == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100959 retval_int = ((MYSTRPROCINT)ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100961 retval_str = (char_u *)(ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 }
963 }
964 else
965 {
966 /* Call with number argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100967 ProcAddI = (MYINTPROCSTR) GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 if ((fRunTimeLinkSuccess = (ProcAddI != NULL)) != 0)
969 {
970 if (string_result == NULL)
971 retval_int = ((MYINTPROCINT)ProcAddI)(argint);
972 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100973 retval_str = (char_u *)(ProcAddI)(argint);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 }
975 }
976
977 // Save the string before we free the library.
978 // Assume that a "1" result is an illegal pointer.
979 if (string_result == NULL)
980 *number_result = retval_int;
981 else if (retval_str != NULL
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100982 && (len = check_str_len(retval_str)) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 {
984 *string_result = lalloc((long_u)len, TRUE);
985 if (*string_result != NULL)
986 mch_memmove(*string_result, retval_str, len);
987 }
988
989#ifdef HAVE_TRY_EXCEPT
990 }
991 __except(EXCEPTION_EXECUTE_HANDLER)
992 {
993 if (GetExceptionCode() == EXCEPTION_STACK_OVERFLOW)
994 RESETSTKOFLW();
995 fRunTimeLinkSuccess = 0;
996 }
997#endif
998
999 // Free the DLL module.
1000 (void)FreeLibrary(hinstLib);
1001 }
1002
1003 if (!fRunTimeLinkSuccess)
1004 {
1005 EMSG2(_(e_libcall), funcname);
1006 return FAIL;
1007 }
1008
1009 return OK;
1010}
1011#endif
1012
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013/*
1014 * Debugging helper: expose the MCH_WRITE_DUMP stuff to other modules
1015 */
1016 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001017DumpPutS(const char *psz UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018{
1019# ifdef MCH_WRITE_DUMP
1020 if (fdDump)
1021 {
1022 fputs(psz, fdDump);
1023 if (psz[strlen(psz) - 1] != '\n')
1024 fputc('\n', fdDump);
1025 fflush(fdDump);
1026 }
1027# endif
1028}
1029
1030#ifdef _DEBUG
1031
1032void __cdecl
1033Trace(
1034 char *pszFormat,
1035 ...)
1036{
1037 CHAR szBuff[2048];
1038 va_list args;
1039
1040 va_start(args, pszFormat);
1041 vsprintf(szBuff, pszFormat, args);
1042 va_end(args);
1043
1044 OutputDebugString(szBuff);
1045}
1046
1047#endif //_DEBUG
1048
Bram Moolenaar843ee412004-06-30 16:16:41 +00001049#if !defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001050# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051extern HWND g_hWnd; /* This is in os_win32.c. */
1052# endif
1053
1054/*
1055 * Showing the printer dialog is tricky since we have no GUI
1056 * window to parent it. The following routines are needed to
1057 * get the window parenting and Z-order to work properly.
1058 */
1059 static void
1060GetConsoleHwnd(void)
1061{
1062# define MY_BUFSIZE 1024 // Buffer size for console window titles.
1063
1064 char pszNewWindowTitle[MY_BUFSIZE]; // Contains fabricated WindowTitle.
1065 char pszOldWindowTitle[MY_BUFSIZE]; // Contains original WindowTitle.
1066
1067 /* Skip if it's already set. */
1068 if (s_hwnd != 0)
1069 return;
1070
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001071# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 /* Window handle may have been found by init code (Windows NT only) */
1073 if (g_hWnd != 0)
1074 {
1075 s_hwnd = g_hWnd;
1076 return;
1077 }
1078# endif
1079
1080 GetConsoleTitle(pszOldWindowTitle, MY_BUFSIZE);
1081
1082 wsprintf(pszNewWindowTitle, "%s/%d/%d",
1083 pszOldWindowTitle,
1084 GetTickCount(),
1085 GetCurrentProcessId());
1086 SetConsoleTitle(pszNewWindowTitle);
1087 Sleep(40);
1088 s_hwnd = FindWindow(NULL, pszNewWindowTitle);
1089
1090 SetConsoleTitle(pszOldWindowTitle);
1091}
Bram Moolenaar843ee412004-06-30 16:16:41 +00001092
1093/*
1094 * Console implementation of ":winpos".
1095 */
1096 int
1097mch_get_winpos(int *x, int *y)
1098{
1099 RECT rect;
1100
1101 GetConsoleHwnd();
1102 GetWindowRect(s_hwnd, &rect);
1103 *x = rect.left;
1104 *y = rect.top;
1105 return OK;
1106}
1107
1108/*
1109 * Console implementation of ":winpos x y".
1110 */
1111 void
1112mch_set_winpos(int x, int y)
1113{
1114 GetConsoleHwnd();
1115 SetWindowPos(s_hwnd, NULL, x, y, 0, 0,
1116 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
1117}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118#endif
1119
1120#if (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) || defined(PROTO)
1121
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122/*=================================================================
1123 * Win32 printer stuff
1124 */
1125
1126static HFONT prt_font_handles[2][2][2];
1127static PRINTDLG prt_dlg;
1128static const int boldface[2] = {FW_REGULAR, FW_BOLD};
1129static TEXTMETRIC prt_tm;
1130static int prt_line_height;
1131static int prt_number_width;
1132static int prt_left_margin;
1133static int prt_right_margin;
1134static int prt_top_margin;
1135static char_u szAppName[] = TEXT("VIM");
1136static HWND hDlgPrint;
1137static int *bUserAbort = NULL;
1138static char_u *prt_name = NULL;
1139
1140/* Defines which are also in vim.rc. */
1141#define IDC_BOX1 400
1142#define IDC_PRINTTEXT1 401
1143#define IDC_PRINTTEXT2 402
1144#define IDC_PROGRESS 403
1145
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001146#if !defined(FEAT_MBYTE)
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001147# define vimSetDlgItemText(h, i, s) SetDlgItemText(h, i, s)
1148#else
1149 static BOOL
1150vimSetDlgItemText(HWND hDlg, int nIDDlgItem, char_u *s)
1151{
1152 WCHAR *wp = NULL;
1153 BOOL ret;
1154
1155 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1156 {
1157 wp = enc_to_utf16(s, NULL);
1158 }
1159 if (wp != NULL)
1160 {
1161 ret = SetDlgItemTextW(hDlg, nIDDlgItem, wp);
1162 vim_free(wp);
1163 return ret;
1164 }
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001165 return SetDlgItemText(hDlg, nIDDlgItem, (LPCSTR)s);
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001166}
1167#endif
1168
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169/*
1170 * Convert BGR to RGB for Windows GDI calls
1171 */
1172 static COLORREF
1173swap_me(COLORREF colorref)
1174{
1175 int temp;
1176 char *ptr = (char *)&colorref;
1177
1178 temp = *(ptr);
1179 *(ptr ) = *(ptr + 2);
1180 *(ptr + 2) = temp;
1181 return colorref;
1182}
1183
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001184/* Attempt to make this work for old and new compilers */
Bram Moolenaar9f733d12011-09-21 20:09:42 +02001185#if !defined(_WIN64) && (!defined(_MSC_VER) || _MSC_VER < 1300)
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001186# define PDP_RETVAL BOOL
1187#else
1188# define PDP_RETVAL INT_PTR
1189#endif
1190
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001191 static PDP_RETVAL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001192PrintDlgProc(
1193 HWND hDlg,
1194 UINT message,
1195 WPARAM wParam UNUSED,
1196 LPARAM lParam UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197{
1198#ifdef FEAT_GETTEXT
1199 NONCLIENTMETRICS nm;
1200 static HFONT hfont;
1201#endif
1202
1203 switch (message)
1204 {
1205 case WM_INITDIALOG:
1206#ifdef FEAT_GETTEXT
1207 nm.cbSize = sizeof(NONCLIENTMETRICS);
1208 if (SystemParametersInfo(
1209 SPI_GETNONCLIENTMETRICS,
1210 sizeof(NONCLIENTMETRICS),
1211 &nm,
1212 0))
1213 {
1214 char buff[MAX_PATH];
1215 int i;
1216
1217 /* Translate the dialog texts */
1218 hfont = CreateFontIndirect(&nm.lfMessageFont);
1219 for (i = IDC_PRINTTEXT1; i <= IDC_PROGRESS; i++)
1220 {
1221 SendDlgItemMessage(hDlg, i, WM_SETFONT, (WPARAM)hfont, 1);
1222 if (GetDlgItemText(hDlg,i, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001223 vimSetDlgItemText(hDlg,i, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 }
1225 SendDlgItemMessage(hDlg, IDCANCEL,
1226 WM_SETFONT, (WPARAM)hfont, 1);
1227 if (GetDlgItemText(hDlg,IDCANCEL, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001228 vimSetDlgItemText(hDlg,IDCANCEL, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 }
1230#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001231 SetWindowText(hDlg, (LPCSTR)szAppName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 if (prt_name != NULL)
1233 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001234 vimSetDlgItemText(hDlg, IDC_PRINTTEXT2, (char_u *)prt_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 vim_free(prt_name);
1236 prt_name = NULL;
1237 }
1238 EnableMenuItem(GetSystemMenu(hDlg, FALSE), SC_CLOSE, MF_GRAYED);
1239#ifndef FEAT_GUI
1240 BringWindowToTop(s_hwnd);
1241#endif
1242 return TRUE;
1243
1244 case WM_COMMAND:
1245 *bUserAbort = TRUE;
1246 EnableWindow(GetParent(hDlg), TRUE);
1247 DestroyWindow(hDlg);
1248 hDlgPrint = NULL;
1249#ifdef FEAT_GETTEXT
1250 DeleteObject(hfont);
1251#endif
1252 return TRUE;
1253 }
1254 return FALSE;
1255}
1256
1257 static BOOL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001258AbortProc(HDC hdcPrn UNUSED, int iCode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259{
1260 MSG msg;
1261
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001262 while (!*bUserAbort && pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 {
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001264 if (!hDlgPrint || !pIsDialogMessage(hDlgPrint, &msg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 {
1266 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001267 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 }
1269 }
1270 return !*bUserAbort;
1271}
1272
1273#ifndef FEAT_GUI
1274
Bram Moolenaar26fdd7d2011-11-30 13:42:44 +01001275 static UINT_PTR CALLBACK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276PrintHookProc(
1277 HWND hDlg, // handle to dialog box
1278 UINT uiMsg, // message identifier
1279 WPARAM wParam, // message parameter
1280 LPARAM lParam // message parameter
1281 )
1282{
1283 HWND hwndOwner;
1284 RECT rc, rcDlg, rcOwner;
1285 PRINTDLG *pPD;
1286
1287 if (uiMsg == WM_INITDIALOG)
1288 {
1289 // Get the owner window and dialog box rectangles.
1290 if ((hwndOwner = GetParent(hDlg)) == NULL)
1291 hwndOwner = GetDesktopWindow();
1292
1293 GetWindowRect(hwndOwner, &rcOwner);
1294 GetWindowRect(hDlg, &rcDlg);
1295 CopyRect(&rc, &rcOwner);
1296
1297 // Offset the owner and dialog box rectangles so that
1298 // right and bottom values represent the width and
1299 // height, and then offset the owner again to discard
1300 // space taken up by the dialog box.
1301
1302 OffsetRect(&rcDlg, -rcDlg.left, -rcDlg.top);
1303 OffsetRect(&rc, -rc.left, -rc.top);
1304 OffsetRect(&rc, -rcDlg.right, -rcDlg.bottom);
1305
1306 // The new position is the sum of half the remaining
1307 // space and the owner's original position.
1308
1309 SetWindowPos(hDlg,
1310 HWND_TOP,
1311 rcOwner.left + (rc.right / 2),
1312 rcOwner.top + (rc.bottom / 2),
1313 0, 0, // ignores size arguments
1314 SWP_NOSIZE);
1315
1316 /* tackle the printdlg copiesctrl problem */
1317 pPD = (PRINTDLG *)lParam;
1318 pPD->nCopies = (WORD)pPD->lCustData;
1319 SetDlgItemInt( hDlg, edt3, pPD->nCopies, FALSE );
1320 /* Bring the window to top */
1321 BringWindowToTop(GetParent(hDlg));
1322 SetForegroundWindow(hDlg);
1323 }
1324
1325 return FALSE;
1326}
1327#endif
1328
1329 void
1330mch_print_cleanup(void)
1331{
1332 int pifItalic;
1333 int pifBold;
1334 int pifUnderline;
1335
1336 for (pifBold = 0; pifBold <= 1; pifBold++)
1337 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1338 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1339 DeleteObject(prt_font_handles[pifBold][pifItalic][pifUnderline]);
1340
1341 if (prt_dlg.hDC != NULL)
1342 DeleteDC(prt_dlg.hDC);
1343 if (!*bUserAbort)
1344 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1345}
1346
1347 static int
1348to_device_units(int idx, int dpi, int physsize, int offset, int def_number)
1349{
1350 int ret = 0;
1351 int u;
1352 int nr;
1353
1354 u = prt_get_unit(idx);
1355 if (u == PRT_UNIT_NONE)
1356 {
1357 u = PRT_UNIT_PERC;
1358 nr = def_number;
1359 }
1360 else
1361 nr = printer_opts[idx].number;
1362
1363 switch (u)
1364 {
1365 case PRT_UNIT_PERC:
1366 ret = (physsize * nr) / 100;
1367 break;
1368 case PRT_UNIT_INCH:
1369 ret = (nr * dpi);
1370 break;
1371 case PRT_UNIT_MM:
1372 ret = (nr * 10 * dpi) / 254;
1373 break;
1374 case PRT_UNIT_POINT:
1375 ret = (nr * 10 * dpi) / 720;
1376 break;
1377 }
1378
1379 if (ret < offset)
1380 return 0;
1381 else
1382 return ret - offset;
1383}
1384
1385 static int
1386prt_get_cpl(void)
1387{
1388 int hr;
1389 int phyw;
1390 int dvoff;
1391 int rev_offset;
1392 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393
1394 GetTextMetrics(prt_dlg.hDC, &prt_tm);
1395 prt_line_height = prt_tm.tmHeight + prt_tm.tmExternalLeading;
1396
1397 hr = GetDeviceCaps(prt_dlg.hDC, HORZRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALWIDTH);
1399 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSX);
1401
1402 rev_offset = phyw - (dvoff + hr);
1403
1404 prt_left_margin = to_device_units(OPT_PRINT_LEFT, dpi, phyw, dvoff, 10);
1405 if (prt_use_number())
1406 {
1407 prt_number_width = PRINT_NUMBER_WIDTH * prt_tm.tmAveCharWidth;
1408 prt_left_margin += prt_number_width;
1409 }
1410 else
1411 prt_number_width = 0;
1412
1413 prt_right_margin = hr - to_device_units(OPT_PRINT_RIGHT, dpi, phyw,
1414 rev_offset, 5);
1415
1416 return (prt_right_margin - prt_left_margin) / prt_tm.tmAveCharWidth;
1417}
1418
1419 static int
1420prt_get_lpp(void)
1421{
1422 int vr;
1423 int phyw;
1424 int dvoff;
1425 int rev_offset;
1426 int bottom_margin;
1427 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428
1429 vr = GetDeviceCaps(prt_dlg.hDC, VERTRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALHEIGHT);
1431 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSY);
1433
1434 rev_offset = phyw - (dvoff + vr);
1435
1436 prt_top_margin = to_device_units(OPT_PRINT_TOP, dpi, phyw, dvoff, 5);
1437
1438 /* adjust top margin if there is a header */
1439 prt_top_margin += prt_line_height * prt_header_height();
1440
1441 bottom_margin = vr - to_device_units(OPT_PRINT_BOT, dpi, phyw,
1442 rev_offset, 5);
1443
1444 return (bottom_margin - prt_top_margin) / prt_line_height;
1445}
1446
1447 int
1448mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit)
1449{
1450 static HGLOBAL stored_dm = NULL;
1451 static HGLOBAL stored_devn = NULL;
1452 static int stored_nCopies = 1;
1453 static int stored_nFlags = 0;
1454
1455 LOGFONT fLogFont;
1456 int pifItalic;
1457 int pifBold;
1458 int pifUnderline;
1459
1460 DEVMODE *mem;
1461 DEVNAMES *devname;
1462 int i;
1463
1464 bUserAbort = &(psettings->user_abort);
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001465 vim_memset(&prt_dlg, 0, sizeof(PRINTDLG));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 prt_dlg.lStructSize = sizeof(PRINTDLG);
1467#ifndef FEAT_GUI
1468 GetConsoleHwnd(); /* get value of s_hwnd */
1469#endif
1470 prt_dlg.hwndOwner = s_hwnd;
1471 prt_dlg.Flags = PD_NOPAGENUMS | PD_NOSELECTION | PD_RETURNDC;
1472 if (!forceit)
1473 {
1474 prt_dlg.hDevMode = stored_dm;
1475 prt_dlg.hDevNames = stored_devn;
1476 prt_dlg.lCustData = stored_nCopies; // work around bug in print dialog
1477#ifndef FEAT_GUI
1478 /*
1479 * Use hook to prevent console window being sent to back
1480 */
1481 prt_dlg.lpfnPrintHook = PrintHookProc;
1482 prt_dlg.Flags |= PD_ENABLEPRINTHOOK;
1483#endif
1484 prt_dlg.Flags |= stored_nFlags;
1485 }
1486
1487 /*
1488 * If bang present, return default printer setup with no dialog
1489 * never show dialog if we are running over telnet
1490 */
1491 if (forceit
1492#ifndef FEAT_GUI
1493 || !term_console
1494#endif
1495 )
1496 {
1497 prt_dlg.Flags |= PD_RETURNDEFAULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 /*
1499 * MSDN suggests setting the first parameter to WINSPOOL for
1500 * NT, but NULL appears to work just as well.
1501 */
1502 if (*p_pdev != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001503 prt_dlg.hDC = CreateDC(NULL, (LPCSTR)p_pdev, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 {
1506 prt_dlg.Flags |= PD_RETURNDEFAULT;
1507 if (PrintDlg(&prt_dlg) == 0)
1508 goto init_fail_dlg;
1509 }
1510 }
1511 else if (PrintDlg(&prt_dlg) == 0)
1512 goto init_fail_dlg;
1513 else
1514 {
1515 /*
1516 * keep the previous driver context
1517 */
1518 stored_dm = prt_dlg.hDevMode;
1519 stored_devn = prt_dlg.hDevNames;
1520 stored_nFlags = prt_dlg.Flags;
1521 stored_nCopies = prt_dlg.nCopies;
1522 }
1523
1524 if (prt_dlg.hDC == NULL)
1525 {
1526 EMSG(_("E237: Printer selection failed"));
1527 mch_print_cleanup();
1528 return FALSE;
1529 }
1530
1531 /* Not all printer drivers report the support of color (or grey) in the
1532 * same way. Let's set has_color if there appears to be some way to print
1533 * more than B&W. */
1534 i = GetDeviceCaps(prt_dlg.hDC, NUMCOLORS);
1535 psettings->has_color = (GetDeviceCaps(prt_dlg.hDC, BITSPIXEL) > 1
1536 || GetDeviceCaps(prt_dlg.hDC, PLANES) > 1
1537 || i > 2 || i == -1);
1538
1539 /* Ensure all font styles are baseline aligned */
1540 SetTextAlign(prt_dlg.hDC, TA_BASELINE|TA_LEFT);
1541
1542 /*
1543 * On some windows systems the nCopies parameter is not
1544 * passed back correctly. It must be retrieved from the
1545 * hDevMode struct.
1546 */
1547 mem = (DEVMODE *)GlobalLock(prt_dlg.hDevMode);
1548 if (mem != NULL)
1549 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 if (mem->dmCopies != 1)
1551 stored_nCopies = mem->dmCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 if ((mem->dmFields & DM_DUPLEX) && (mem->dmDuplex & ~DMDUP_SIMPLEX))
1553 psettings->duplex = TRUE;
1554 if ((mem->dmFields & DM_COLOR) && (mem->dmColor & DMCOLOR_COLOR))
1555 psettings->has_color = TRUE;
1556 }
1557 GlobalUnlock(prt_dlg.hDevMode);
1558
1559 devname = (DEVNAMES *)GlobalLock(prt_dlg.hDevNames);
1560 if (devname != 0)
1561 {
1562 char_u *printer_name = (char_u *)devname + devname->wDeviceOffset;
1563 char_u *port_name = (char_u *)devname +devname->wOutputOffset;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001564 char_u *text = (char_u *)_("to %s on %s");
Bram Moolenaarf191d552014-10-09 17:05:56 +02001565#ifdef FEAT_MBYTE
1566 char_u *printer_name_orig = printer_name;
1567 char_u *port_name_orig = port_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568
Bram Moolenaarf191d552014-10-09 17:05:56 +02001569 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1570 {
1571 char_u *to_free = NULL;
1572 int maxlen;
1573
Bram Moolenaar861d80a2014-10-16 20:35:36 +02001574 acp_to_enc(printer_name, (int)STRLEN(printer_name), &to_free,
1575 &maxlen);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001576 if (to_free != NULL)
1577 printer_name = to_free;
Bram Moolenaar861d80a2014-10-16 20:35:36 +02001578 acp_to_enc(port_name, (int)STRLEN(port_name), &to_free, &maxlen);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001579 if (to_free != NULL)
1580 port_name = to_free;
1581 }
1582#endif
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00001583 prt_name = alloc((unsigned)(STRLEN(printer_name) + STRLEN(port_name)
1584 + STRLEN(text)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 if (prt_name != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001586 wsprintf((char *)prt_name, (const char *)text,
1587 printer_name, port_name);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001588#ifdef FEAT_MBYTE
1589 if (printer_name != printer_name_orig)
1590 vim_free(printer_name);
1591 if (port_name != port_name_orig)
1592 vim_free(port_name);
1593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 }
1595 GlobalUnlock(prt_dlg.hDevNames);
1596
1597 /*
1598 * Initialise the font according to 'printfont'
1599 */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001600 vim_memset(&fLogFont, 0, sizeof(fLogFont));
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001601 if (get_logfont(&fLogFont, p_pfn, prt_dlg.hDC, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 {
1603 EMSG2(_("E613: Unknown printer font: %s"), p_pfn);
1604 mch_print_cleanup();
1605 return FALSE;
1606 }
1607
1608 for (pifBold = 0; pifBold <= 1; pifBold++)
1609 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1610 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1611 {
1612 fLogFont.lfWeight = boldface[pifBold];
1613 fLogFont.lfItalic = pifItalic;
1614 fLogFont.lfUnderline = pifUnderline;
1615 prt_font_handles[pifBold][pifItalic][pifUnderline]
1616 = CreateFontIndirect(&fLogFont);
1617 }
1618
1619 SetBkMode(prt_dlg.hDC, OPAQUE);
1620 SelectObject(prt_dlg.hDC, prt_font_handles[0][0][0]);
1621
1622 /*
1623 * Fill in the settings struct
1624 */
1625 psettings->chars_per_line = prt_get_cpl();
1626 psettings->lines_per_page = prt_get_lpp();
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001627 if (prt_dlg.Flags & PD_USEDEVMODECOPIESANDCOLLATE)
1628 {
1629 psettings->n_collated_copies = (prt_dlg.Flags & PD_COLLATE)
1630 ? prt_dlg.nCopies : 1;
1631 psettings->n_uncollated_copies = (prt_dlg.Flags & PD_COLLATE)
1632 ? 1 : prt_dlg.nCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001634 if (psettings->n_collated_copies == 0)
1635 psettings->n_collated_copies = 1;
1636
1637 if (psettings->n_uncollated_copies == 0)
1638 psettings->n_uncollated_copies = 1;
Bram Moolenaarb04a98f2016-12-01 20:32:29 +01001639 }
1640 else
1641 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 psettings->n_collated_copies = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 psettings->n_uncollated_copies = 1;
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001644 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645
1646 psettings->jobname = jobname;
1647
1648 return TRUE;
1649
1650init_fail_dlg:
1651 {
1652 DWORD err = CommDlgExtendedError();
1653
1654 if (err)
1655 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 char_u *buf;
1657
1658 /* I suspect FormatMessage() doesn't work for values returned by
1659 * CommDlgExtendedError(). What does? */
1660 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
1661 FORMAT_MESSAGE_FROM_SYSTEM |
1662 FORMAT_MESSAGE_IGNORE_INSERTS,
1663 NULL, err, 0, (LPTSTR)(&buf), 0, NULL);
1664 EMSG2(_("E238: Print error: %s"),
1665 buf == NULL ? (char_u *)_("Unknown") : buf);
1666 LocalFree((LPVOID)(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 }
1668 else
1669 msg_clr_eos(); /* Maybe canceled */
1670
1671 mch_print_cleanup();
1672 return FALSE;
1673 }
1674}
1675
1676
1677 int
1678mch_print_begin(prt_settings_T *psettings)
1679{
1680 int ret;
1681 static DOCINFO di;
1682 char szBuffer[300];
1683
1684 hDlgPrint = CreateDialog(GetModuleHandle(NULL), TEXT("PrintDlgBox"),
1685 prt_dlg.hwndOwner, PrintDlgProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 SetAbortProc(prt_dlg.hDC, AbortProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 wsprintf(szBuffer, _("Printing '%s'"), gettail(psettings->jobname));
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001688 vimSetDlgItemText(hDlgPrint, IDC_PRINTTEXT1, (char_u *)szBuffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001690 vim_memset(&di, 0, sizeof(DOCINFO));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 di.cbSize = sizeof(DOCINFO);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001692 di.lpszDocName = (LPCSTR)psettings->jobname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 ret = StartDoc(prt_dlg.hDC, &di);
1694
1695#ifdef FEAT_GUI
1696 /* Give focus back to main window (when using MDI). */
1697 SetFocus(s_hwnd);
1698#endif
1699
1700 return (ret > 0);
1701}
1702
1703 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001704mch_print_end(prt_settings_T *psettings UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705{
1706 EndDoc(prt_dlg.hDC);
1707 if (!*bUserAbort)
1708 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1709}
1710
1711 int
1712mch_print_end_page(void)
1713{
1714 return (EndPage(prt_dlg.hDC) > 0);
1715}
1716
1717 int
1718mch_print_begin_page(char_u *msg)
1719{
1720 if (msg != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001721 vimSetDlgItemText(hDlgPrint, IDC_PROGRESS, msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 return (StartPage(prt_dlg.hDC) > 0);
1723}
1724
1725 int
1726mch_print_blank_page(void)
1727{
1728 return (mch_print_begin_page(NULL) ? (mch_print_end_page()) : FALSE);
1729}
1730
1731static int prt_pos_x = 0;
1732static int prt_pos_y = 0;
1733
1734 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001735mch_print_start_line(int margin, int page_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736{
1737 if (margin)
1738 prt_pos_x = -prt_number_width;
1739 else
1740 prt_pos_x = 0;
1741 prt_pos_y = page_line * prt_line_height
1742 + prt_tm.tmAscent + prt_tm.tmExternalLeading;
1743}
1744
1745 int
1746mch_print_text_out(char_u *p, int len)
1747{
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001748#if defined(FEAT_PROPORTIONAL_FONTS) || defined(FEAT_MBYTE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 SIZE sz;
1750#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001751#if defined(FEAT_MBYTE)
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001752 WCHAR *wp = NULL;
1753 int wlen = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001755 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1756 {
1757 wp = enc_to_utf16(p, &wlen);
1758 }
1759 if (wp != NULL)
1760 {
1761 int ret = FALSE;
1762
1763 TextOutW(prt_dlg.hDC, prt_pos_x + prt_left_margin,
1764 prt_pos_y + prt_top_margin, wp, wlen);
1765 GetTextExtentPoint32W(prt_dlg.hDC, wp, wlen, &sz);
1766 vim_free(wp);
1767 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
1768 /* This is wrong when printing spaces for a TAB. */
1769 if (p[len] != NUL)
1770 {
1771 wlen = MB_PTR2LEN(p + len);
1772 wp = enc_to_utf16(p + len, &wlen);
1773 if (wp != NULL)
1774 {
1775 GetTextExtentPoint32W(prt_dlg.hDC, wp, 1, &sz);
1776 ret = (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
1777 vim_free(wp);
1778 }
1779 }
1780 return ret;
1781 }
1782#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 TextOut(prt_dlg.hDC, prt_pos_x + prt_left_margin,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001784 prt_pos_y + prt_top_margin,
1785 (LPCSTR)p, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786#ifndef FEAT_PROPORTIONAL_FONTS
1787 prt_pos_x += len * prt_tm.tmAveCharWidth;
1788 return (prt_pos_x + prt_left_margin + prt_tm.tmAveCharWidth
1789 + prt_tm.tmOverhang > prt_right_margin);
1790#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001791 GetTextExtentPoint32(prt_dlg.hDC, (LPCSTR)p, len, &sz);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
1793 /* This is wrong when printing spaces for a TAB. */
1794 if (p[len] == NUL)
1795 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 GetTextExtentPoint32(prt_dlg.hDC, p + len, 1, &sz);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 return (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
1798#endif
1799}
1800
1801 void
1802mch_print_set_font(int iBold, int iItalic, int iUnderline)
1803{
1804 SelectObject(prt_dlg.hDC, prt_font_handles[iBold][iItalic][iUnderline]);
1805}
1806
1807 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001808mch_print_set_bg(long_u bgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001810 SetBkColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1811 swap_me((COLORREF)bgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 /*
1813 * With a white background we can draw characters transparent, which is
1814 * good for italic characters that overlap to the next char cell.
1815 */
1816 if (bgcol == 0xffffffUL)
1817 SetBkMode(prt_dlg.hDC, TRANSPARENT);
1818 else
1819 SetBkMode(prt_dlg.hDC, OPAQUE);
1820}
1821
1822 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001823mch_print_set_fg(long_u fgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001825 SetTextColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1826 swap_me((COLORREF)fgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827}
1828
1829#endif /*FEAT_PRINTER && !FEAT_POSTSCRIPT*/
1830
Bram Moolenaar58d98232005-07-23 22:25:46 +00001831
1832
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833#if defined(FEAT_SHORTCUT) || defined(PROTO)
Bram Moolenaar82881492012-11-20 16:53:39 +01001834# ifndef PROTO
1835# include <shlobj.h>
1836# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837
1838/*
1839 * When "fname" is the name of a shortcut (*.lnk) resolve the file it points
1840 * to and return that name in allocated memory.
1841 * Otherwise NULL is returned.
1842 */
1843 char_u *
1844mch_resolve_shortcut(char_u *fname)
1845{
1846 HRESULT hr;
1847 IShellLink *psl = NULL;
1848 IPersistFile *ppf = NULL;
1849 OLECHAR wsz[MAX_PATH];
1850 WIN32_FIND_DATA ffd; // we get those free of charge
Bram Moolenaar604729e2013-08-30 16:44:19 +02001851 CHAR buf[MAX_PATH]; // could have simply reused 'wsz'...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 char_u *rfname = NULL;
1853 int len;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001854# ifdef FEAT_MBYTE
1855 IShellLinkW *pslw = NULL;
1856 WIN32_FIND_DATAW ffdw; // we get those free of charge
1857# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858
1859 /* Check if the file name ends in ".lnk". Avoid calling
1860 * CoCreateInstance(), it's quite slow. */
1861 if (fname == NULL)
1862 return rfname;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001863 len = (int)STRLEN(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 if (len <= 4 || STRNICMP(fname + len - 4, ".lnk", 4) != 0)
1865 return rfname;
1866
1867 CoInitialize(NULL);
1868
Bram Moolenaar604729e2013-08-30 16:44:19 +02001869# ifdef FEAT_MBYTE
1870 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1871 {
1872 // create a link manager object and request its interface
1873 hr = CoCreateInstance(
1874 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
1875 &IID_IShellLinkW, (void**)&pslw);
1876 if (hr == S_OK)
1877 {
1878 WCHAR *p = enc_to_utf16(fname, NULL);
1879
1880 if (p != NULL)
1881 {
1882 // Get a pointer to the IPersistFile interface.
1883 hr = pslw->lpVtbl->QueryInterface(
1884 pslw, &IID_IPersistFile, (void**)&ppf);
1885 if (hr != S_OK)
1886 goto shortcut_errorw;
1887
1888 // "load" the name and resolve the link
1889 hr = ppf->lpVtbl->Load(ppf, p, STGM_READ);
1890 if (hr != S_OK)
1891 goto shortcut_errorw;
1892# if 0 // This makes Vim wait a long time if the target does not exist.
1893 hr = pslw->lpVtbl->Resolve(pslw, NULL, SLR_NO_UI);
1894 if (hr != S_OK)
1895 goto shortcut_errorw;
1896# endif
1897
1898 // Get the path to the link target.
1899 ZeroMemory(wsz, MAX_PATH * sizeof(WCHAR));
1900 hr = pslw->lpVtbl->GetPath(pslw, wsz, MAX_PATH, &ffdw, 0);
1901 if (hr == S_OK && wsz[0] != NUL)
1902 rfname = utf16_to_enc(wsz, NULL);
1903
1904shortcut_errorw:
1905 vim_free(p);
Bram Moolenaarcd981f22014-02-11 17:06:00 +01001906 goto shortcut_end;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001907 }
1908 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001909 goto shortcut_end;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001910 }
1911# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 // create a link manager object and request its interface
1913 hr = CoCreateInstance(
1914 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
1915 &IID_IShellLink, (void**)&psl);
1916 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001917 goto shortcut_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918
1919 // Get a pointer to the IPersistFile interface.
1920 hr = psl->lpVtbl->QueryInterface(
1921 psl, &IID_IPersistFile, (void**)&ppf);
1922 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001923 goto shortcut_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924
1925 // full path string must be in Unicode.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001926 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)fname, -1, wsz, MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00001928 // "load" the name and resolve the link
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 hr = ppf->lpVtbl->Load(ppf, wsz, STGM_READ);
1930 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001931 goto shortcut_end;
1932# if 0 // This makes Vim wait a long time if the target doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 hr = psl->lpVtbl->Resolve(psl, NULL, SLR_NO_UI);
1934 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001935 goto shortcut_end;
1936# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937
1938 // Get the path to the link target.
1939 ZeroMemory(buf, MAX_PATH);
1940 hr = psl->lpVtbl->GetPath(psl, buf, MAX_PATH, &ffd, 0);
1941 if (hr == S_OK && buf[0] != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001942 rfname = vim_strsave((char_u *)buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943
Bram Moolenaar604729e2013-08-30 16:44:19 +02001944shortcut_end:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 // Release all interface pointers (both belong to the same object)
1946 if (ppf != NULL)
1947 ppf->lpVtbl->Release(ppf);
1948 if (psl != NULL)
1949 psl->lpVtbl->Release(psl);
Bram Moolenaar604729e2013-08-30 16:44:19 +02001950# ifdef FEAT_MBYTE
1951 if (pslw != NULL)
1952 pslw->lpVtbl->Release(pslw);
1953# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954
1955 CoUninitialize();
1956 return rfname;
1957}
1958#endif
1959
1960#if (defined(FEAT_EVAL) && !defined(FEAT_GUI)) || defined(PROTO)
1961/*
1962 * Bring ourselves to the foreground. Does work if the OS doesn't allow it.
1963 */
1964 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001965win32_set_foreground(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966{
1967# ifndef FEAT_GUI
1968 GetConsoleHwnd(); /* get value of s_hwnd */
1969# endif
1970 if (s_hwnd != 0)
1971 SetForegroundWindow(s_hwnd);
1972}
1973#endif
1974
1975#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
1976/*
1977 * Client-server code for Vim
1978 *
1979 * Originally written by Paul Moore
1980 */
1981
1982/* In order to handle inter-process messages, we need to have a window. But
1983 * the functions in this module can be called before the main GUI window is
1984 * created (and may also be called in the console version, where there is no
1985 * GUI window at all).
1986 *
1987 * So we create a hidden window, and arrange to destroy it on exit.
1988 */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001989HWND message_window = 0; /* window that's handling messages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990
1991#define VIM_CLASSNAME "VIM_MESSAGES"
1992#define VIM_CLASSNAME_LEN (sizeof(VIM_CLASSNAME) - 1)
1993
1994/* Communication is via WM_COPYDATA messages. The message type is send in
1995 * the dwData parameter. Types are defined here. */
1996#define COPYDATA_KEYS 0
1997#define COPYDATA_REPLY 1
1998#define COPYDATA_EXPR 10
1999#define COPYDATA_RESULT 11
2000#define COPYDATA_ERROR_RESULT 12
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002001#define COPYDATA_ENCODING 20
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002
2003/* This is a structure containing a server HWND and its name. */
2004struct server_id
2005{
2006 HWND hwnd;
2007 char_u *name;
2008};
2009
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002010/* Last received 'encoding' that the client uses. */
2011static char_u *client_enc = NULL;
2012
2013/*
2014 * Tell the other side what encoding we are using.
2015 * Errors are ignored.
2016 */
2017 static void
2018serverSendEnc(HWND target)
2019{
2020 COPYDATASTRUCT data;
2021
2022 data.dwData = COPYDATA_ENCODING;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002023#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002024 data.cbData = (DWORD)STRLEN(p_enc) + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002025 data.lpData = p_enc;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002026#else
Bram Moolenaar8765a4a2010-07-27 22:41:43 +02002027 data.cbData = (DWORD)STRLEN("latin1") + 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002028 data.lpData = "latin1";
2029#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002030 (void)SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2031 (LPARAM)(&data));
2032}
2033
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034/*
2035 * Clean up on exit. This destroys the hidden message window.
2036 */
2037 static void
2038#ifdef __BORLANDC__
2039 _RTLENTRYF
2040#endif
2041CleanUpMessaging(void)
2042{
2043 if (message_window != 0)
2044 {
2045 DestroyWindow(message_window);
2046 message_window = 0;
2047 }
2048}
2049
2050static int save_reply(HWND server, char_u *reply, int expr);
2051
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002052/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 * The window procedure for the hidden message window.
2054 * It handles callback messages and notifications from servers.
2055 * In order to process these messages, it is necessary to run a
2056 * message loop. Code which may run before the main message loop
2057 * is started (in the GUI) is careful to pump messages when it needs
2058 * to. Features which require message delivery during normal use will
2059 * not work in the console version - this basically means those
2060 * features which allow Vim to act as a server, rather than a client.
2061 */
2062 static LRESULT CALLBACK
2063Messaging_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
2064{
2065 if (msg == WM_COPYDATA)
2066 {
2067 /* This is a message from another Vim. The dwData member of the
2068 * COPYDATASTRUCT determines the type of message:
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002069 * COPYDATA_ENCODING:
2070 * The encoding that the client uses. Following messages will
2071 * use this encoding, convert if needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 * COPYDATA_KEYS:
2073 * A key sequence. We are a server, and a client wants these keys
2074 * adding to the input queue.
2075 * COPYDATA_REPLY:
2076 * A reply. We are a client, and a server has sent this message
2077 * in response to a request. (server2client())
2078 * COPYDATA_EXPR:
2079 * An expression. We are a server, and a client wants us to
2080 * evaluate this expression.
2081 * COPYDATA_RESULT:
2082 * A reply. We are a client, and a server has sent this message
2083 * in response to a COPYDATA_EXPR.
2084 * COPYDATA_ERROR_RESULT:
2085 * A reply. We are a client, and a server has sent this message
2086 * in response to a COPYDATA_EXPR that failed to evaluate.
2087 */
2088 COPYDATASTRUCT *data = (COPYDATASTRUCT*)lParam;
2089 HWND sender = (HWND)wParam;
2090 COPYDATASTRUCT reply;
2091 char_u *res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 int retval;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002093 char_u *str;
2094 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095
2096 switch (data->dwData)
2097 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002098 case COPYDATA_ENCODING:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002099# ifdef FEAT_MBYTE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002100 /* Remember the encoding that the client uses. */
2101 vim_free(client_enc);
2102 client_enc = enc_canonize((char_u *)data->lpData);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002103# endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002104 return 1;
2105
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 case COPYDATA_KEYS:
2107 /* Remember who sent this, for <client> */
2108 clientWindow = sender;
2109
2110 /* Add the received keys to the input buffer. The loop waiting
2111 * for the user to do something should check the input buffer. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002112 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2113 server_to_input_buf(str);
2114 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115
2116# ifdef FEAT_GUI
2117 /* Wake up the main GUI loop. */
2118 if (s_hwnd != 0)
2119 PostMessage(s_hwnd, WM_NULL, 0, 0);
2120# endif
2121 return 1;
2122
2123 case COPYDATA_EXPR:
2124 /* Remember who sent this, for <client> */
2125 clientWindow = sender;
2126
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002127 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2128 res = eval_client_expr_to_string(str);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002129
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 if (res == NULL)
2131 {
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002132 char *err = _(e_invexprmsg);
2133 size_t len = STRLEN(str) + STRLEN(err) + 5;
2134
Bram Moolenaar1662ce12017-03-19 21:47:50 +01002135 res = alloc((unsigned)len);
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002136 if (res != NULL)
2137 vim_snprintf((char *)res, len, "%s: \"%s\"", err, str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 reply.dwData = COPYDATA_ERROR_RESULT;
2139 }
2140 else
2141 reply.dwData = COPYDATA_RESULT;
2142 reply.lpData = res;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002143 reply.cbData = (DWORD)STRLEN(res) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002145 serverSendEnc(sender);
Bram Moolenaar5246cd72013-06-16 16:41:47 +02002146 retval = (int)SendMessage(sender, WM_COPYDATA,
2147 (WPARAM)message_window, (LPARAM)(&reply));
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002148 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 vim_free(res);
2150 return retval;
2151
2152 case COPYDATA_REPLY:
2153 case COPYDATA_RESULT:
2154 case COPYDATA_ERROR_RESULT:
2155 if (data->lpData != NULL)
2156 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002157 str = serverConvert(client_enc, (char_u *)data->lpData,
2158 &tofree);
2159 if (tofree == NULL)
2160 str = vim_strsave(str);
2161 if (save_reply(sender, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 (data->dwData == COPYDATA_REPLY ? 0 :
2163 (data->dwData == COPYDATA_RESULT ? 1 :
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002164 2))) == FAIL)
2165 vim_free(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166#ifdef FEAT_AUTOCMD
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002167 else if (data->dwData == COPYDATA_REPLY)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 {
Bram Moolenaar427d51c2013-06-16 16:01:25 +02002169 char_u winstr[30];
2170
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002171 sprintf((char *)winstr, PRINTF_HEX_LONG_U, (long_u)sender);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002172 apply_autocmds(EVENT_REMOTEREPLY, winstr, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 TRUE, curbuf);
2174 }
2175#endif
2176 }
2177 return 1;
2178 }
2179
2180 return 0;
2181 }
2182
2183 else if (msg == WM_ACTIVATE && wParam == WA_ACTIVE)
2184 {
2185 /* When the message window is activated (brought to the foreground),
2186 * this actually applies to the text window. */
2187#ifndef FEAT_GUI
2188 GetConsoleHwnd(); /* get value of s_hwnd */
2189#endif
2190 if (s_hwnd != 0)
2191 {
2192 SetForegroundWindow(s_hwnd);
2193 return 0;
2194 }
2195 }
2196
2197 return DefWindowProc(hwnd, msg, wParam, lParam);
2198}
2199
2200/*
2201 * Initialise the message handling process. This involves creating a window
2202 * to handle messages - the window will not be visible.
2203 */
2204 void
2205serverInitMessaging(void)
2206{
2207 WNDCLASS wndclass;
2208 HINSTANCE s_hinst;
2209
2210 /* Clean up on exit */
2211 atexit(CleanUpMessaging);
2212
2213 /* Register a window class - we only really care
2214 * about the window procedure
2215 */
2216 s_hinst = (HINSTANCE)GetModuleHandle(0);
2217 wndclass.style = 0;
2218 wndclass.lpfnWndProc = Messaging_WndProc;
2219 wndclass.cbClsExtra = 0;
2220 wndclass.cbWndExtra = 0;
2221 wndclass.hInstance = s_hinst;
2222 wndclass.hIcon = NULL;
2223 wndclass.hCursor = NULL;
2224 wndclass.hbrBackground = NULL;
2225 wndclass.lpszMenuName = NULL;
2226 wndclass.lpszClassName = VIM_CLASSNAME;
2227 RegisterClass(&wndclass);
2228
2229 /* Create the message window. It will be hidden, so the details don't
2230 * matter. Don't use WS_OVERLAPPEDWINDOW, it will make a shortcut remove
2231 * focus from gvim. */
2232 message_window = CreateWindow(VIM_CLASSNAME, "",
2233 WS_POPUPWINDOW | WS_CAPTION,
2234 CW_USEDEFAULT, CW_USEDEFAULT,
2235 100, 100, NULL, NULL,
2236 s_hinst, NULL);
2237}
2238
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002239/* Used by serverSendToVim() to find an alternate server name. */
2240static char_u *altname_buf_ptr = NULL;
2241
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242/*
2243 * Get the title of the window "hwnd", which is the Vim server name, in
2244 * "name[namelen]" and return the length.
2245 * Returns zero if window "hwnd" is not a Vim server.
2246 */
2247 static int
2248getVimServerName(HWND hwnd, char *name, int namelen)
2249{
2250 int len;
2251 char buffer[VIM_CLASSNAME_LEN + 1];
2252
2253 /* Ignore windows which aren't Vim message windows */
2254 len = GetClassName(hwnd, buffer, sizeof(buffer));
2255 if (len != VIM_CLASSNAME_LEN || STRCMP(buffer, VIM_CLASSNAME) != 0)
2256 return 0;
2257
2258 /* Get the title of the window */
2259 return GetWindowText(hwnd, name, namelen);
2260}
2261
2262 static BOOL CALLBACK
2263enumWindowsGetServer(HWND hwnd, LPARAM lparam)
2264{
2265 struct server_id *id = (struct server_id *)lparam;
2266 char server[MAX_PATH];
2267
2268 /* Get the title of the window */
2269 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2270 return TRUE;
2271
2272 /* If this is the server we're looking for, return its HWND */
2273 if (STRICMP(server, id->name) == 0)
2274 {
2275 id->hwnd = hwnd;
2276 return FALSE;
2277 }
2278
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002279 /* If we are looking for an alternate server, remember this name. */
2280 if (altname_buf_ptr != NULL
2281 && STRNICMP(server, id->name, STRLEN(id->name)) == 0
2282 && vim_isdigit(server[STRLEN(id->name)]))
2283 {
2284 STRCPY(altname_buf_ptr, server);
2285 altname_buf_ptr = NULL; /* don't use another name */
2286 }
2287
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 /* Otherwise, keep looking */
2289 return TRUE;
2290}
2291
2292 static BOOL CALLBACK
2293enumWindowsGetNames(HWND hwnd, LPARAM lparam)
2294{
2295 garray_T *ga = (garray_T *)lparam;
2296 char server[MAX_PATH];
2297
2298 /* Get the title of the window */
2299 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2300 return TRUE;
2301
2302 /* Add the name to the list */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002303 ga_concat(ga, (char_u *)server);
2304 ga_concat(ga, (char_u *)"\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 return TRUE;
2306}
2307
2308 static HWND
2309findServer(char_u *name)
2310{
2311 struct server_id id;
2312
2313 id.name = name;
2314 id.hwnd = 0;
2315
2316 EnumWindows(enumWindowsGetServer, (LPARAM)(&id));
2317
2318 return id.hwnd;
2319}
2320
2321 void
2322serverSetName(char_u *name)
2323{
2324 char_u *ok_name;
2325 HWND hwnd = 0;
2326 int i = 0;
2327 char_u *p;
2328
2329 /* Leave enough space for a 9-digit suffix to ensure uniqueness! */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002330 ok_name = alloc((unsigned)STRLEN(name) + 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331
2332 STRCPY(ok_name, name);
2333 p = ok_name + STRLEN(name);
2334
2335 for (;;)
2336 {
2337 /* This is inefficient - we're doing an EnumWindows loop for each
2338 * possible name. It would be better to grab all names in one go,
2339 * and scan the list each time...
2340 */
2341 hwnd = findServer(ok_name);
2342 if (hwnd == 0)
2343 break;
2344
2345 ++i;
2346 if (i >= 1000)
2347 break;
2348
2349 sprintf((char *)p, "%d", i);
2350 }
2351
2352 if (hwnd != 0)
2353 vim_free(ok_name);
2354 else
2355 {
2356 /* Remember the name */
2357 serverName = ok_name;
2358#ifdef FEAT_TITLE
2359 need_maketitle = TRUE; /* update Vim window title later */
2360#endif
2361
2362 /* Update the message window title */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002363 SetWindowText(message_window, (LPCSTR)ok_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364
2365#ifdef FEAT_EVAL
2366 /* Set the servername variable */
2367 set_vim_var_string(VV_SEND_SERVER, serverName, -1);
2368#endif
2369 }
2370}
2371
2372 char_u *
2373serverGetVimNames(void)
2374{
2375 garray_T ga;
2376
2377 ga_init2(&ga, 1, 100);
2378
2379 EnumWindows(enumWindowsGetNames, (LPARAM)(&ga));
Bram Moolenaar269ec652004-07-29 08:43:53 +00002380 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381
2382 return ga.ga_data;
2383}
2384
2385 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002386serverSendReply(
2387 char_u *name, /* Where to send. */
2388 char_u *reply) /* What to send. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389{
2390 HWND target;
2391 COPYDATASTRUCT data;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002392 long_u n = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393
2394 /* The "name" argument is a magic cookie obtained from expand("<client>").
2395 * It should be of the form 0xXXXXX - i.e. a C hex literal, which is the
2396 * value of the client's message window HWND.
2397 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002398 sscanf((char *)name, SCANF_HEX_LONG_U, &n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 if (n == 0)
2400 return -1;
2401
2402 target = (HWND)n;
2403 if (!IsWindow(target))
2404 return -1;
2405
2406 data.dwData = COPYDATA_REPLY;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002407 data.cbData = (DWORD)STRLEN(reply) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 data.lpData = reply;
2409
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002410 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2412 (LPARAM)(&data)))
2413 return 0;
2414
2415 return -1;
2416}
2417
2418 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002419serverSendToVim(
2420 char_u *name, /* Where to send. */
2421 char_u *cmd, /* What to send. */
2422 char_u **result, /* Result of eval'ed expression */
2423 void *ptarget, /* HWND of server */
2424 int asExpr, /* Expression or keys? */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002425 int timeout, /* timeout in seconds or zero */
Bram Moolenaar05540972016-01-30 20:31:25 +01002426 int silent) /* don't complain about no server */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427{
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002428 HWND target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 COPYDATASTRUCT data;
2430 char_u *retval = NULL;
2431 int retcode = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002432 char_u altname_buf[MAX_PATH];
2433
Bram Moolenaar7416f3e2017-03-18 18:10:13 +01002434 /* Execute locally if no display or target is ourselves */
2435 if (serverName != NULL && STRICMP(name, serverName) == 0)
2436 return sendToLocalVim(cmd, asExpr, result);
2437
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002438 /* If the server name does not end in a digit then we look for an
2439 * alternate name. e.g. when "name" is GVIM the we may find GVIM2. */
2440 if (STRLEN(name) > 1 && !vim_isdigit(name[STRLEN(name) - 1]))
2441 altname_buf_ptr = altname_buf;
2442 altname_buf[0] = NUL;
2443 target = findServer(name);
2444 altname_buf_ptr = NULL;
2445 if (target == 0 && altname_buf[0] != NUL)
2446 /* Use another server name we found. */
2447 target = findServer(altname_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448
2449 if (target == 0)
2450 {
2451 if (!silent)
2452 EMSG2(_(e_noserver), name);
2453 return -1;
2454 }
2455
2456 if (ptarget)
2457 *(HWND *)ptarget = target;
2458
2459 data.dwData = asExpr ? COPYDATA_EXPR : COPYDATA_KEYS;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002460 data.cbData = (DWORD)STRLEN(cmd) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 data.lpData = cmd;
2462
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002463 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2465 (LPARAM)(&data)) == 0)
2466 return -1;
2467
2468 if (asExpr)
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002469 retval = serverGetReply(target, &retcode, TRUE, TRUE, timeout);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470
2471 if (result == NULL)
2472 vim_free(retval);
2473 else
2474 *result = retval; /* Caller assumes responsibility for freeing */
2475
2476 return retcode;
2477}
2478
2479/*
2480 * Bring the server to the foreground.
2481 */
2482 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002483serverForeground(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484{
2485 HWND target = findServer(name);
2486
2487 if (target != 0)
2488 SetForegroundWindow(target);
2489}
2490
2491/* Replies from server need to be stored until the client picks them up via
2492 * remote_read(). So we maintain a list of server-id/reply pairs.
2493 * Note that there could be multiple replies from one server pending if the
2494 * client is slow picking them up.
2495 * We just store the replies in a simple list. When we remove an entry, we
2496 * move list entries down to fill the gap.
2497 * The server ID is simply the HWND.
2498 */
2499typedef struct
2500{
2501 HWND server; /* server window */
2502 char_u *reply; /* reply string */
2503 int expr_result; /* 0 for REPLY, 1 for RESULT 2 for error */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002504} reply_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505
2506static garray_T reply_list = {0, 0, sizeof(reply_T), 5, 0};
2507
2508#define REPLY_ITEM(i) ((reply_T *)(reply_list.ga_data) + (i))
2509#define REPLY_COUNT (reply_list.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510
2511/* Flag which is used to wait for a reply */
2512static int reply_received = 0;
2513
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002514/*
2515 * Store a reply. "reply" must be allocated memory (or NULL).
2516 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 static int
2518save_reply(HWND server, char_u *reply, int expr)
2519{
2520 reply_T *rep;
2521
2522 if (ga_grow(&reply_list, 1) == FAIL)
2523 return FAIL;
2524
2525 rep = REPLY_ITEM(REPLY_COUNT);
2526 rep->server = server;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002527 rep->reply = reply;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 rep->expr_result = expr;
2529 if (rep->reply == NULL)
2530 return FAIL;
2531
2532 ++REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 reply_received = 1;
2534 return OK;
2535}
2536
2537/*
2538 * Get a reply from server "server".
2539 * When "expr_res" is non NULL, get the result of an expression, otherwise a
2540 * server2client() message.
2541 * When non NULL, point to return code. 0 => OK, -1 => ERROR
2542 * If "remove" is TRUE, consume the message, the caller must free it then.
2543 * if "wait" is TRUE block until a message arrives (or the server exits).
2544 */
2545 char_u *
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002546serverGetReply(HWND server, int *expr_res, int remove, int wait, int timeout)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547{
2548 int i;
2549 char_u *reply;
2550 reply_T *rep;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002551 int did_process = FALSE;
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002552 time_t start;
2553 time_t now;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554
2555 /* When waiting, loop until the message waiting for is received. */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002556 time(&start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 for (;;)
2558 {
2559 /* Reset this here, in case a message arrives while we are going
2560 * through the already received messages. */
2561 reply_received = 0;
2562
2563 for (i = 0; i < REPLY_COUNT; ++i)
2564 {
2565 rep = REPLY_ITEM(i);
2566 if (rep->server == server
2567 && ((rep->expr_result != 0) == (expr_res != NULL)))
2568 {
2569 /* Save the values we've found for later */
2570 reply = rep->reply;
2571 if (expr_res != NULL)
2572 *expr_res = rep->expr_result == 1 ? 0 : -1;
2573
2574 if (remove)
2575 {
2576 /* Move the rest of the list down to fill the gap */
2577 mch_memmove(rep, rep + 1,
2578 (REPLY_COUNT - i - 1) * sizeof(reply_T));
2579 --REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 }
2581
2582 /* Return the reply to the caller, who takes on responsibility
2583 * for freeing it if "remove" is TRUE. */
2584 return reply;
2585 }
2586 }
2587
2588 /* If we got here, we didn't find a reply. Return immediately if the
2589 * "wait" parameter isn't set. */
2590 if (!wait)
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002591 {
2592 /* Process pending messages once. Without this, looping on
2593 * remote_peek() would never get the reply. */
2594 if (!did_process)
2595 {
2596 did_process = TRUE;
2597 serverProcessPendingMessages();
2598 continue;
2599 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 break;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002601 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602
2603 /* We need to wait for a reply. Enter a message loop until the
2604 * "reply_received" flag gets set. */
2605
2606 /* Loop until we receive a reply */
2607 while (reply_received == 0)
2608 {
Bram Moolenaar42205552017-03-18 19:42:22 +01002609#ifdef FEAT_TIMERS
2610 check_due_timer();
2611#endif
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002612 time(&now);
2613 if (timeout > 0 && (now - start) >= timeout)
2614 break;
2615
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 /* Wait for a SendMessage() call to us. This could be the reply
2617 * we are waiting for. Use a timeout of a second, to catch the
2618 * situation that the server died unexpectedly. */
2619 MsgWaitForMultipleObjects(0, NULL, TRUE, 1000, QS_ALLINPUT);
2620
2621 /* If the server has died, give up */
2622 if (!IsWindow(server))
2623 return NULL;
2624
2625 serverProcessPendingMessages();
2626 }
2627 }
2628
2629 return NULL;
2630}
2631
2632/*
2633 * Process any messages in the Windows message queue.
2634 */
2635 void
2636serverProcessPendingMessages(void)
2637{
2638 MSG msg;
2639
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002640 while (pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 {
2642 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002643 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 }
2645}
2646
2647#endif /* FEAT_CLIENTSERVER */
2648
2649#if defined(FEAT_GUI) || (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) \
2650 || defined(PROTO)
2651
2652struct charset_pair
2653{
2654 char *name;
2655 BYTE charset;
2656};
2657
2658static struct charset_pair
2659charset_pairs[] =
2660{
2661 {"ANSI", ANSI_CHARSET},
2662 {"CHINESEBIG5", CHINESEBIG5_CHARSET},
2663 {"DEFAULT", DEFAULT_CHARSET},
2664 {"HANGEUL", HANGEUL_CHARSET},
2665 {"OEM", OEM_CHARSET},
2666 {"SHIFTJIS", SHIFTJIS_CHARSET},
2667 {"SYMBOL", SYMBOL_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 {"ARABIC", ARABIC_CHARSET},
2669 {"BALTIC", BALTIC_CHARSET},
2670 {"EASTEUROPE", EASTEUROPE_CHARSET},
2671 {"GB2312", GB2312_CHARSET},
2672 {"GREEK", GREEK_CHARSET},
2673 {"HEBREW", HEBREW_CHARSET},
2674 {"JOHAB", JOHAB_CHARSET},
2675 {"MAC", MAC_CHARSET},
2676 {"RUSSIAN", RUSSIAN_CHARSET},
2677 {"THAI", THAI_CHARSET},
2678 {"TURKISH", TURKISH_CHARSET},
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002679#ifdef VIETNAMESE_CHARSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680 {"VIETNAMESE", VIETNAMESE_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681#endif
2682 {NULL, 0}
2683};
2684
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002685struct quality_pair
2686{
2687 char *name;
2688 DWORD quality;
2689};
2690
2691static struct quality_pair
2692quality_pairs[] = {
2693#ifdef CLEARTYPE_QUALITY
2694 {"CLEARTYPE", CLEARTYPE_QUALITY},
2695#endif
2696#ifdef ANTIALIASED_QUALITY
2697 {"ANTIALIASED", ANTIALIASED_QUALITY},
2698#endif
Bram Moolenaar73a733e2016-05-11 21:05:05 +02002699#ifdef NONANTIALIASED_QUALITY
2700 {"NONANTIALIASED", NONANTIALIASED_QUALITY},
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002701#endif
2702#ifdef PROOF_QUALITY
2703 {"PROOF", PROOF_QUALITY},
2704#endif
Bram Moolenaar4c9ce052016-04-04 21:06:19 +02002705#ifdef DRAFT_QUALITY
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002706 {"DRAFT", DRAFT_QUALITY},
2707#endif
2708 {"DEFAULT", DEFAULT_QUALITY},
2709 {NULL, 0}
2710};
2711
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712/*
2713 * Convert a charset ID to a name.
2714 * Return NULL when not recognized.
2715 */
2716 char *
2717charset_id2name(int id)
2718{
2719 struct charset_pair *cp;
2720
2721 for (cp = charset_pairs; cp->name != NULL; ++cp)
2722 if ((BYTE)id == cp->charset)
2723 break;
2724 return cp->name;
2725}
2726
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002727/*
2728 * Convert a quality ID to a name.
2729 * Return NULL when not recognized.
2730 */
2731 char *
2732quality_id2name(DWORD id)
2733{
2734 struct quality_pair *qp;
2735
2736 for (qp = quality_pairs; qp->name != NULL; ++qp)
2737 if (id == qp->quality)
2738 break;
2739 return qp->name;
2740}
2741
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742static const LOGFONT s_lfDefault =
2743{
2744 -12, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, DEFAULT_CHARSET,
2745 OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
2746 PROOF_QUALITY, FIXED_PITCH | FF_DONTCARE,
2747 "Fixedsys" /* see _ReadVimIni */
2748};
2749
2750/* Initialise the "current height" to -12 (same as s_lfDefault) just
2751 * in case the user specifies a font in "guifont" with no size before a font
2752 * with an explicit size has been set. This defaults the size to this value
2753 * (-12 equates to roughly 9pt).
2754 */
2755int current_font_height = -12; /* also used in gui_w48.c */
2756
2757/* Convert a string representing a point size into pixels. The string should
2758 * be a positive decimal number, with an optional decimal point (eg, "12", or
2759 * "10.5"). The pixel value is returned, and a pointer to the next unconverted
2760 * character is stored in *end. The flag "vertical" says whether this
2761 * calculation is for a vertical (height) size or a horizontal (width) one.
2762 */
2763 static int
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002764points_to_pixels(char_u *str, char_u **end, int vertical, long_i pprinter_dc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765{
2766 int pixels;
2767 int points = 0;
2768 int divisor = 0;
2769 HWND hwnd = (HWND)0;
2770 HDC hdc;
2771 HDC printer_dc = (HDC)pprinter_dc;
2772
2773 while (*str != NUL)
2774 {
2775 if (*str == '.' && divisor == 0)
2776 {
2777 /* Start keeping a divisor, for later */
2778 divisor = 1;
2779 }
2780 else
2781 {
2782 if (!VIM_ISDIGIT(*str))
2783 break;
2784
2785 points *= 10;
2786 points += *str - '0';
2787 divisor *= 10;
2788 }
2789 ++str;
2790 }
2791
2792 if (divisor == 0)
2793 divisor = 1;
2794
2795 if (printer_dc == NULL)
2796 {
2797 hwnd = GetDesktopWindow();
2798 hdc = GetWindowDC(hwnd);
2799 }
2800 else
2801 hdc = printer_dc;
2802
2803 pixels = MulDiv(points,
2804 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX),
2805 72 * divisor);
2806
2807 if (printer_dc == NULL)
2808 ReleaseDC(hwnd, hdc);
2809
2810 *end = str;
2811 return pixels;
2812}
2813
2814 static int CALLBACK
2815font_enumproc(
2816 ENUMLOGFONT *elf,
Bram Moolenaar1266d672017-02-01 13:43:36 +01002817 NEWTEXTMETRIC *ntm UNUSED,
2818 int type UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 LPARAM lparam)
2820{
2821 /* Return value:
2822 * 0 = terminate now (monospace & ANSI)
2823 * 1 = continue, still no luck...
2824 * 2 = continue, but we have an acceptable LOGFONT
2825 * (monospace, not ANSI)
2826 * We use these values, as EnumFontFamilies returns 1 if the
2827 * callback function is never called. So, we check the return as
2828 * 0 = perfect, 2 = OK, 1 = no good...
2829 * It's not pretty, but it works!
2830 */
2831
2832 LOGFONT *lf = (LOGFONT *)(lparam);
2833
2834#ifndef FEAT_PROPORTIONAL_FONTS
2835 /* Ignore non-monospace fonts without further ado */
2836 if ((ntm->tmPitchAndFamily & 1) != 0)
2837 return 1;
2838#endif
2839
2840 /* Remember this LOGFONT as a "possible" */
2841 *lf = elf->elfLogFont;
2842
2843 /* Terminate the scan as soon as we find an ANSI font */
2844 if (lf->lfCharSet == ANSI_CHARSET
2845 || lf->lfCharSet == OEM_CHARSET
2846 || lf->lfCharSet == DEFAULT_CHARSET)
2847 return 0;
2848
2849 /* Continue the scan - we have a non-ANSI font */
2850 return 2;
2851}
2852
2853 static int
2854init_logfont(LOGFONT *lf)
2855{
2856 int n;
2857 HWND hwnd = GetDesktopWindow();
2858 HDC hdc = GetWindowDC(hwnd);
2859
2860 n = EnumFontFamilies(hdc,
2861 (LPCSTR)lf->lfFaceName,
2862 (FONTENUMPROC)font_enumproc,
2863 (LPARAM)lf);
2864
2865 ReleaseDC(hwnd, hdc);
2866
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002867 /* If we couldn't find a usable font, return failure */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 if (n == 1)
2869 return FAIL;
2870
2871 /* Tidy up the rest of the LOGFONT structure. We set to a basic
2872 * font - get_logfont() sets bold, italic, etc based on the user's
2873 * input.
2874 */
2875 lf->lfHeight = current_font_height;
2876 lf->lfWidth = 0;
2877 lf->lfItalic = FALSE;
2878 lf->lfUnderline = FALSE;
2879 lf->lfStrikeOut = FALSE;
2880 lf->lfWeight = FW_NORMAL;
2881
2882 /* Return success */
2883 return OK;
2884}
2885
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002886/*
2887 * Get font info from "name" into logfont "lf".
2888 * Return OK for a valid name, FAIL otherwise.
2889 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 int
2891get_logfont(
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002892 LOGFONT *lf,
2893 char_u *name,
2894 HDC printer_dc,
2895 int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896{
2897 char_u *p;
2898 int i;
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002899 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 static LOGFONT *lastlf = NULL;
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002901#ifdef FEAT_MBYTE
2902 char_u *acpname = NULL;
2903#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904
2905 *lf = s_lfDefault;
2906 if (name == NULL)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002907 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002909#ifdef FEAT_MBYTE
2910 /* Convert 'name' from 'encoding' to the current codepage, because
2911 * lf->lfFaceName uses the current codepage.
2912 * TODO: Use Wide APIs instead of ANSI APIs. */
2913 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2914 {
2915 int len;
Bram Moolenaar418f81b2016-02-16 20:12:02 +01002916 enc_to_acp(name, (int)STRLEN(name), &acpname, &len);
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002917 name = acpname;
2918 }
2919#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 if (STRCMP(name, "*") == 0)
2921 {
2922#if defined(FEAT_GUI_W32)
2923 CHOOSEFONT cf;
2924 /* if name is "*", bring up std font dialog: */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02002925 vim_memset(&cf, 0, sizeof(cf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 cf.lStructSize = sizeof(cf);
2927 cf.hwndOwner = s_hwnd;
2928 cf.Flags = CF_SCREENFONTS | CF_FIXEDPITCHONLY | CF_INITTOLOGFONTSTRUCT;
2929 if (lastlf != NULL)
2930 *lf = *lastlf;
2931 cf.lpLogFont = lf;
2932 cf.nFontType = 0 ; //REGULAR_FONTTYPE;
2933 if (ChooseFont(&cf))
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002934 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935#endif
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002936 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 }
2938
2939 /*
2940 * Split name up, it could be <name>:h<height>:w<width> etc.
2941 */
2942 for (p = name; *p && *p != ':'; p++)
2943 {
Bram Moolenaar38bc4952016-11-10 17:10:51 +01002944 if (p - name + 1 >= LF_FACESIZE)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002945 goto theend; /* Name too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 lf->lfFaceName[p - name] = *p;
2947 }
2948 if (p != name)
2949 lf->lfFaceName[p - name] = NUL;
2950
2951 /* First set defaults */
2952 lf->lfHeight = -12;
2953 lf->lfWidth = 0;
2954 lf->lfWeight = FW_NORMAL;
2955 lf->lfItalic = FALSE;
2956 lf->lfUnderline = FALSE;
2957 lf->lfStrikeOut = FALSE;
2958
2959 /*
2960 * If the font can't be found, try replacing '_' by ' '.
2961 */
2962 if (init_logfont(lf) == FAIL)
2963 {
2964 int did_replace = FALSE;
2965
2966 for (i = 0; lf->lfFaceName[i]; ++i)
2967 if (lf->lfFaceName[i] == '_')
2968 {
2969 lf->lfFaceName[i] = ' ';
2970 did_replace = TRUE;
2971 }
2972 if (!did_replace || init_logfont(lf) == FAIL)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002973 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 }
2975
2976 while (*p == ':')
2977 p++;
2978
2979 /* Set the values found after ':' */
2980 while (*p)
2981 {
2982 switch (*p++)
2983 {
2984 case 'h':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002985 lf->lfHeight = - points_to_pixels(p, &p, TRUE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 break;
2987 case 'w':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002988 lf->lfWidth = points_to_pixels(p, &p, FALSE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 break;
2990 case 'b':
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 lf->lfWeight = FW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 break;
2993 case 'i':
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 lf->lfItalic = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 break;
2996 case 'u':
2997 lf->lfUnderline = TRUE;
2998 break;
2999 case 's':
3000 lf->lfStrikeOut = TRUE;
3001 break;
3002 case 'c':
3003 {
3004 struct charset_pair *cp;
3005
3006 for (cp = charset_pairs; cp->name != NULL; ++cp)
3007 if (STRNCMP(p, cp->name, strlen(cp->name)) == 0)
3008 {
3009 lf->lfCharSet = cp->charset;
3010 p += strlen(cp->name);
3011 break;
3012 }
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003013 if (cp->name == NULL && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 {
Bram Moolenaar051b7822005-05-19 21:00:46 +00003015 vim_snprintf((char *)IObuff, IOSIZE,
3016 _("E244: Illegal charset name \"%s\" in font name \"%s\""), p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 EMSG(IObuff);
3018 break;
3019 }
3020 break;
3021 }
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02003022 case 'q':
3023 {
3024 struct quality_pair *qp;
3025
3026 for (qp = quality_pairs; qp->name != NULL; ++qp)
3027 if (STRNCMP(p, qp->name, strlen(qp->name)) == 0)
3028 {
3029 lf->lfQuality = qp->quality;
3030 p += strlen(qp->name);
3031 break;
3032 }
3033 if (qp->name == NULL && verbose)
3034 {
3035 vim_snprintf((char *)IObuff, IOSIZE,
3036 _("E244: Illegal quality name \"%s\" in font name \"%s\""), p, name);
3037 EMSG(IObuff);
3038 break;
3039 }
3040 break;
3041 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042 default:
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003043 if (verbose)
3044 {
Bram Moolenaar051b7822005-05-19 21:00:46 +00003045 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003046 _("E245: Illegal char '%c' in font name \"%s\""),
3047 p[-1], name);
3048 EMSG(IObuff);
3049 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003050 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 }
3052 while (*p == ':')
3053 p++;
3054 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003055 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 /* ron: init lastlf */
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003059 if (ret == OK && printer_dc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 {
3061 vim_free(lastlf);
3062 lastlf = (LOGFONT *)alloc(sizeof(LOGFONT));
3063 if (lastlf != NULL)
3064 mch_memmove(lastlf, lf, sizeof(LOGFONT));
3065 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003066#ifdef FEAT_MBYTE
3067 vim_free(acpname);
3068#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003070 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071}
3072
3073#endif /* defined(FEAT_GUI) || defined(FEAT_PRINTER) */
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003074
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003075#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003076/*
3077 * Initialize the Winsock dll.
3078 */
3079 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003080channel_init_winsock(void)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003081{
3082 WSADATA wsaData;
3083 int wsaerr;
3084
3085 if (WSInitialized)
3086 return;
3087
3088 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
3089 if (wsaerr == 0)
3090 WSInitialized = TRUE;
3091}
3092#endif