blob: c638aa678f2bd842dda1aab8fb9d8bc50953c439 [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
Bram Moolenaar4f974752019-02-17 17:44:42 +010035# if defined(FEAT_TITLE) && !defined(FEAT_GUI_MSWIN)
Bram Moolenaar82881492012-11-20 16:53:39 +010036# 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;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +010088typedef int ENUMLOGFONTW;
Bram Moolenaar071d4272004-06-13 20:20:40 +000089typedef int HANDLE;
90typedef int HDC;
91typedef int HFONT;
92typedef int HICON;
93typedef int HWND;
94typedef int INPUT_RECORD;
95typedef int KEY_EVENT_RECORD;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +010096typedef int LOGFONTW;
Bram Moolenaar071d4272004-06-13 20:20:40 +000097typedef 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;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +0100106typedef int NEWTEXTMETRICW;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107typedef int PACL;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200108typedef int PRINTDLGW;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109typedef 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;
Bram Moolenaarc447d8d2018-12-18 21:56:28 +0100117typedef int WNDENUMPROC;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118typedef int WORD;
119typedef int WPARAM;
120typedef void VOID;
121#endif
122
123/* Record all output and all keyboard & mouse input */
124/* #define MCH_WRITE_DUMP */
125
126#ifdef MCH_WRITE_DUMP
127FILE* fdDump = NULL;
128#endif
129
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130#ifndef FEAT_GUI_MSWIN
131extern char g_szOrigTitle[];
132#endif
133
134#ifdef FEAT_GUI
135extern HWND s_hwnd;
136#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137static HWND s_hwnd = 0; /* console window handle, set by GetConsoleHwnd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138#endif
139
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100140#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf12d9832016-01-29 21:11:25 +0100141int WSInitialized = FALSE; /* WinSock is initialized */
142#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143
144/* Don't generate prototypes here, because some systems do have these
145 * functions. */
146#if defined(__GNUC__) && !defined(PROTO)
147# ifndef __MINGW32__
148int _stricoll(char *a, char *b)
149{
150 // the ANSI-ish correct way is to use strxfrm():
151 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32
152 strxfrm(a_buff, a, 512);
153 strxfrm(b_buff, b, 512);
154 return strcoll(a_buff, b_buff);
155}
156
157char * _fullpath(char *buf, char *fname, int len)
158{
159 LPTSTR toss;
160
161 return (char *)GetFullPathName(fname, len, buf, &toss);
162}
163# endif
164
Bram Moolenaaraf62ff32013-03-19 14:48:29 +0100165# if !defined(__MINGW32__) || (__GNUC__ < 4)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166int _chdrive(int drive)
167{
168 char temp [3] = "-:";
169 temp[0] = drive + 'A' - 1;
170 return !SetCurrentDirectory(temp);
171}
Bram Moolenaaraf62ff32013-03-19 14:48:29 +0100172# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173#else
174# ifdef __BORLANDC__
175/* being a more ANSI compliant compiler, BorlandC doesn't define _stricoll:
176 * but it does in BC 5.02! */
177# if __BORLANDC__ < 0x502
178int _stricoll(char *a, char *b)
179{
180# if 1
181 // this is fast but not correct:
182 return stricmp(a, b);
183# else
184 // the ANSI-ish correct way is to use strxfrm():
185 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32
186 strxfrm(a_buff, a, 512);
187 strxfrm(b_buff, b, 512);
188 return strcoll(a_buff, b_buff);
189# endif
190}
191# endif
192# endif
193#endif
194
195
196#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
197/*
198 * GUI version of mch_exit().
199 * Shut down and exit with status `r'
200 * Careful: mch_exit() may be called before mch_init()!
201 */
202 void
203mch_exit(int r)
204{
Bram Moolenaar955f1982017-02-05 15:10:51 +0100205 exiting = TRUE;
206
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 display_errors();
208
209 ml_close_all(TRUE); /* remove all memfiles */
210
211# ifdef FEAT_OLE
212 UninitOLE();
213# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100214# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 if (WSInitialized)
216 {
217 WSInitialized = FALSE;
218 WSACleanup();
219 }
220# endif
221#ifdef DYNAMIC_GETTEXT
222 dyn_libintl_end();
223#endif
224
225 if (gui.in_use)
226 gui_exit(r);
Bram Moolenaar85c79d32007-02-20 01:59:20 +0000227
228#ifdef EXITFREE
229 free_all_mem();
230#endif
231
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 exit(r);
233}
234
235#endif /* FEAT_GUI_MSWIN */
236
237
238/*
239 * Init the tables for toupper() and tolower().
240 */
241 void
242mch_early_init(void)
243{
244 int i;
245
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246 PlatformId();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247
248 /* Init the tables for toupper() and tolower() */
249 for (i = 0; i < 256; ++i)
250 toupper_tab[i] = tolower_tab[i] = i;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100251 CharUpperBuff((LPSTR)toupper_tab, 256);
252 CharLowerBuff((LPSTR)tolower_tab, 256);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253}
254
255
256/*
257 * Return TRUE if the input comes from a terminal, FALSE otherwise.
258 */
259 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100260mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261{
262#ifdef FEAT_GUI_MSWIN
263 return OK; /* GUI always has a tty */
264#else
265 if (isatty(read_cmd_fd))
266 return TRUE;
267 return FALSE;
268#endif
269}
270
271#ifdef FEAT_TITLE
272/*
273 * mch_settitle(): set titlebar of our window
274 */
275 void
276mch_settitle(
277 char_u *title,
278 char_u *icon)
279{
280# ifdef FEAT_GUI_MSWIN
281 gui_mch_settitle(title, icon);
282# else
283 if (title != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000284 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200285 WCHAR *wp = enc_to_utf16(title, NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000286
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200287 if (wp == NULL)
288 return;
289
290 SetConsoleTitleW(wp);
291 vim_free(wp);
292 return;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000293 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294# endif
295}
296
297
298/*
299 * Restore the window/icon title.
300 * which is one of:
Bram Moolenaar40385db2018-08-07 22:31:44 +0200301 * SAVE_RESTORE_TITLE: Just restore title
302 * SAVE_RESTORE_ICON: Just restore icon (which we don't have)
303 * SAVE_RESTORE_BOTH: Restore title and icon (which we don't have)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304 */
305 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100306mch_restore_title(int which UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307{
308#ifndef FEAT_GUI_MSWIN
Bram Moolenaar1df52d72014-10-15 22:50:10 +0200309 SetConsoleTitle(g_szOrigTitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310#endif
311}
312
313
314/*
315 * Return TRUE if we can restore the title (we can)
316 */
317 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100318mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319{
320 return TRUE;
321}
322
323
324/*
325 * Return TRUE if we can restore the icon title (we can't)
326 */
327 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100328mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329{
330 return FALSE;
331}
332#endif /* FEAT_TITLE */
333
334
335/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000336 * Get absolute file name into buffer "buf" of length "len" bytes,
337 * turning all '/'s into '\\'s and getting the correct case of each component
338 * of the file name. Append a (back)slash to a directory name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 * When 'shellslash' set do it the other way around.
340 * Return OK or FAIL.
341 */
342 int
343mch_FullName(
344 char_u *fname,
345 char_u *buf,
346 int len,
Bram Moolenaar1266d672017-02-01 13:43:36 +0100347 int force UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348{
349 int nResult = FAIL;
350
351#ifdef __BORLANDC__
352 if (*fname == NUL) /* Borland behaves badly here - make it consistent */
353 nResult = mch_dirname(buf, len);
354 else
355#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200357 WCHAR *wname;
358 WCHAR wbuf[MAX_PATH];
359 char_u *cname = NULL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000360
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200361 wname = enc_to_utf16(fname, NULL);
362 if (wname != NULL && _wfullpath(wbuf, wname, MAX_PATH) != NULL)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000363 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200364 cname = utf16_to_enc((short_u *)wbuf, NULL);
365 if (cname != NULL)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000366 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200367 vim_strncpy(buf, cname, len - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000368 nResult = OK;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200369 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000370 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200371 vim_free(wname);
372 vim_free(cname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374
375#ifdef USE_FNAME_CASE
376 fname_case(buf, len);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000377#else
378 slash_adjust(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379#endif
380
381 return nResult;
382}
383
384
385/*
386 * Return TRUE if "fname" does not depend on the current directory.
387 */
388 int
389mch_isFullName(char_u *fname)
390{
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200391 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
392 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
393 * UTF-8. */
394 char szName[_MAX_PATH * 3 + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395
396 /* A name like "d:/foo" and "//server/share" is absolute */
397 if ((fname[0] && fname[1] == ':' && (fname[2] == '/' || fname[2] == '\\'))
398 || (fname[0] == fname[1] && (fname[0] == '/' || fname[0] == '\\')))
399 return TRUE;
400
401 /* A name that can't be made absolute probably isn't absolute. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100402 if (mch_FullName(fname, (char_u *)szName, sizeof(szName) - 1, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403 return FALSE;
404
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100405 return pathcmp((const char *)fname, (const char *)szName, -1) == 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406}
407
408/*
409 * Replace all slashes by backslashes.
410 * This used to be the other way around, but MS-DOS sometimes has problems
411 * with slashes (e.g. in a command name). We can't have mixed slashes and
412 * backslashes, because comparing file names will not work correctly. The
413 * commands that use a file name should try to avoid the need to type a
414 * backslash twice.
415 * When 'shellslash' set do it the other way around.
Bram Moolenaarb4f6a462015-10-13 19:43:17 +0200416 * When the path looks like a URL leave it unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 */
418 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100419slash_adjust(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420{
Bram Moolenaarb4f6a462015-10-13 19:43:17 +0200421 if (path_with_url(p))
422 return;
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200423
424 if (*p == '`')
425 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +0200426 size_t len = STRLEN(p);
427
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200428 /* don't replace backslash in backtick quoted strings */
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200429 if (len > 2 && *(p + len - 1) == '`')
430 return;
431 }
432
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000433 while (*p)
434 {
435 if (*p == psepcN)
436 *p = psepc;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100437 MB_PTR_ADV(p);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000438 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439}
440
Bram Moolenaar8767f522016-07-01 17:17:39 +0200441/* Use 64-bit stat functions if available. */
442#ifdef HAVE_STAT64
443# undef stat
444# undef _stat
445# undef _wstat
446# undef _fstat
447# define stat _stat64
448# define _stat _stat64
449# define _wstat _wstat64
450# define _fstat _fstat64
451#endif
452
Bram Moolenaar9d1685d2014-01-14 12:18:45 +0100453#if (defined(_MSC_VER) && (_MSC_VER >= 1300)) || defined(__MINGW32__)
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200454# define OPEN_OH_ARGTYPE intptr_t
455#else
456# define OPEN_OH_ARGTYPE long
457#endif
458
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200459 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200460wstat_symlink_aware(const WCHAR *name, stat_T *stp)
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200461{
Bram Moolenaara12a1612019-01-24 16:39:02 +0100462#if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__)
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100463 /* Work around for VC12 or earlier (and MinGW). _wstat() can't handle
464 * symlinks properly.
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200465 * VC9 or earlier: _wstat() doesn't support a symlink at all. It retrieves
466 * status of a symlink itself.
467 * VC10: _wstat() supports a symlink to a normal file, but it doesn't
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100468 * support a symlink to a directory (always returns an error).
469 * VC11 and VC12: _wstat() doesn't return an error for a symlink to a
470 * directory, but it doesn't set S_IFDIR flag.
471 * MinGW: Same as VC9. */
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200472 int n;
473 BOOL is_symlink = FALSE;
474 HANDLE hFind, h;
475 DWORD attr = 0;
476 WIN32_FIND_DATAW findDataW;
477
478 hFind = FindFirstFileW(name, &findDataW);
479 if (hFind != INVALID_HANDLE_VALUE)
480 {
481 attr = findDataW.dwFileAttributes;
482 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT)
483 && (findDataW.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
484 is_symlink = TRUE;
485 FindClose(hFind);
486 }
487 if (is_symlink)
488 {
489 h = CreateFileW(name, FILE_READ_ATTRIBUTES,
490 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
491 OPEN_EXISTING,
492 (attr & FILE_ATTRIBUTE_DIRECTORY)
493 ? FILE_FLAG_BACKUP_SEMANTICS : 0,
494 NULL);
495 if (h != INVALID_HANDLE_VALUE)
496 {
497 int fd;
498
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200499 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200500 n = _fstat(fd, (struct _stat *)stp);
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100501 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY))
502 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR;
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200503 _close(fd);
504 return n;
505 }
506 }
Bram Moolenaara12a1612019-01-24 16:39:02 +0100507#endif
Bram Moolenaar8767f522016-07-01 17:17:39 +0200508 return _wstat(name, (struct _stat *)stp);
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200509}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510
511/*
512 * stat() can't handle a trailing '/' or '\', remove it first.
513 */
514 int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200515vim_stat(const char *name, stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516{
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200517 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
518 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
519 * UTF-8. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100520 char_u buf[_MAX_PATH * 3 + 1];
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100521 char_u *p;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200522 WCHAR *wp;
523 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200525 vim_strncpy((char_u *)buf, (char_u *)name, sizeof(buf) - 1);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100526 p = buf + STRLEN(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 if (p > buf)
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100528 MB_PTR_BACK(buf, p);
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100529
530 /* Remove trailing '\\' except root path. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 if (p > buf && (*p == '\\' || *p == '/') && p[-1] != ':')
532 *p = NUL;
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100533
534 if ((buf[0] == '\\' && buf[1] == '\\') || (buf[0] == '/' && buf[1] == '/'))
535 {
536 /* UNC root path must be followed by '\\'. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100537 p = vim_strpbrk(buf + 2, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100538 if (p != NULL)
539 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100540 p = vim_strpbrk(p + 1, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100541 if (p == NULL)
542 STRCAT(buf, "\\");
543 }
544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200546 wp = enc_to_utf16(buf, NULL);
547 if (wp == NULL)
548 return -1;
549
550 n = wstat_symlink_aware(wp, stp);
551 vim_free(wp);
552 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553}
554
555#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
556 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100557mch_settmode(int tmode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558{
559 /* nothing to do */
560}
561
562 int
563mch_get_shellsize(void)
564{
565 /* never used */
566 return OK;
567}
568
569 void
570mch_set_shellsize(void)
571{
572 /* never used */
573}
574
575/*
576 * Rows and/or Columns has changed.
577 */
578 void
579mch_new_shellsize(void)
580{
581 /* never used */
582}
583
584#endif
585
586/*
587 * We have no job control, so fake it by starting a new shell.
588 */
589 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100590mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591{
592 suspend_shell();
593}
594
595#if defined(USE_MCH_ERRMSG) || defined(PROTO)
596
597#ifdef display_errors
598# undef display_errors
599#endif
600
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +0100601#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602/*
603 * Display the saved error message(s).
604 */
605 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100606display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607{
608 char *p;
609
610 if (error_ga.ga_data != NULL)
611 {
612 /* avoid putting up a message box with blanks only */
613 for (p = (char *)error_ga.ga_data; *p; ++p)
614 if (!isspace(*p))
615 {
Bram Moolenaarc17ef8e2006-03-25 21:48:58 +0000616 (void)gui_mch_dialog(
Bram Moolenaarc17ef8e2006-03-25 21:48:58 +0000617 gui.starting ? VIM_INFO :
Bram Moolenaarc17ef8e2006-03-25 21:48:58 +0000618 VIM_ERROR,
Bram Moolenaarc17ef8e2006-03-25 21:48:58 +0000619 gui.starting ? (char_u *)_("Message") :
Bram Moolenaarc17ef8e2006-03-25 21:48:58 +0000620 (char_u *)_("Error"),
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100621 (char_u *)p, (char_u *)_("&Ok"),
622 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 break;
624 }
625 ga_clear(&error_ga);
626 }
627}
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +0100628#else
629 void
630display_errors(void)
631{
632 FlushFileBuffers(GetStdHandle(STD_ERROR_HANDLE));
633}
634#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635#endif
636
637
638/*
639 * Return TRUE if "p" contain a wildcard that can be expanded by
640 * dos_expandpath().
641 */
642 int
643mch_has_exp_wildcard(char_u *p)
644{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100645 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 {
647 if (vim_strchr((char_u *)"?*[", *p) != NULL
648 || (*p == '~' && p[1] != NUL))
649 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 }
651 return FALSE;
652}
653
654/*
655 * Return TRUE if "p" contain a wildcard or a "~1" kind of thing (could be a
656 * shortened file name).
657 */
658 int
659mch_has_wildcard(char_u *p)
660{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100661 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 {
663 if (vim_strchr((char_u *)
664# ifdef VIM_BACKTICK
665 "?*$[`"
666# else
667 "?*$["
668# endif
669 , *p) != NULL
670 || (*p == '~' && p[1] != NUL))
671 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 }
673 return FALSE;
674}
675
676
677/*
678 * The normal _chdir() does not change the default drive. This one does.
679 * Returning 0 implies success; -1 implies failure.
680 */
681 int
682mch_chdir(char *path)
683{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200684 WCHAR *p;
685 int n;
686
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 if (path[0] == NUL) /* just checking... */
688 return -1;
689
Bram Moolenaara2974d72009-07-14 16:38:36 +0000690 if (p_verbose >= 5)
691 {
692 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100693 smsg("chdir(%s)", path);
Bram Moolenaara2974d72009-07-14 16:38:36 +0000694 verbose_leave();
695 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 if (isalpha(path[0]) && path[1] == ':') /* has a drive name */
697 {
698 /* If we can change to the drive, skip that part of the path. If we
699 * can't then the current directory may be invalid, try using chdir()
700 * with the whole path. */
701 if (_chdrive(TOLOWER_ASC(path[0]) - 'a' + 1) == 0)
702 path += 2;
703 }
704
705 if (*path == NUL) /* drive name only */
706 return 0;
707
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200708 p = enc_to_utf16((char_u *)path, NULL);
709 if (p == NULL)
710 return -1;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000711
Bram Moolenaar0eb035c2019-04-02 22:15:55 +0200712 n = _wchdir(p);
713 vim_free(p);
714 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715}
716
717
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718#ifdef FEAT_GUI_MSWIN
719/*
720 * return non-zero if a character is available
721 */
722 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100723mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724{
725 /* never used */
726 return TRUE;
727}
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200728
729# if defined(FEAT_TERMINAL) || defined(PROTO)
730/*
731 * Check for any pending input or messages.
732 */
733 int
734mch_check_messages(void)
735{
736 /* TODO: check for messages */
737 return TRUE;
738}
739# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740#endif
741
742
743/*
744 * set screen mode, always fails.
745 */
746 int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100747mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100749 emsg(_(e_screenmode));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 return FAIL;
751}
752
753
754#if defined(FEAT_LIBCALL) || defined(PROTO)
755/*
756 * Call a DLL routine which takes either a string or int param
757 * and returns an allocated string.
758 * Return OK if it worked, FAIL if not.
759 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760typedef LPTSTR (*MYSTRPROCSTR)(LPTSTR);
761typedef LPTSTR (*MYINTPROCSTR)(int);
762typedef int (*MYSTRPROCINT)(LPTSTR);
763typedef int (*MYINTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765/*
766 * Check if a pointer points to a valid NUL terminated string.
767 * Return the length of the string, including terminating NUL.
768 * Returns 0 for an invalid pointer, 1 for an empty string.
769 */
770 static size_t
771check_str_len(char_u *str)
772{
773 SYSTEM_INFO si;
774 MEMORY_BASIC_INFORMATION mbi;
775 size_t length = 0;
776 size_t i;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100777 const char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778
779 /* get page size */
780 GetSystemInfo(&si);
781
782 /* get memory information */
783 if (VirtualQuery(str, &mbi, sizeof(mbi)))
784 {
785 /* pre cast these (typing savers) */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000786 long_u dwStr = (long_u)str;
787 long_u dwBaseAddress = (long_u)mbi.BaseAddress;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788
789 /* get start address of page that str is on */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000790 long_u strPage = dwStr - (dwStr - dwBaseAddress) % si.dwPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791
792 /* get length from str to end of page */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000793 long_u pageLength = si.dwPageSize - (dwStr - strPage);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794
Bram Moolenaar442b4222010-05-24 21:34:22 +0200795 for (p = str; !IsBadReadPtr(p, (UINT)pageLength);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 p += pageLength, pageLength = si.dwPageSize)
797 for (i = 0; i < pageLength; ++i, ++length)
798 if (p[i] == NUL)
799 return length + 1;
800 }
801
802 return 0;
803}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200805/*
806 * Passed to do_in_runtimepath() to load a vim.ico file.
807 */
808 static void
809mch_icon_load_cb(char_u *fname, void *cookie)
810{
811 HANDLE *h = (HANDLE *)cookie;
812
813 *h = LoadImage(NULL,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100814 (LPSTR)fname,
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200815 IMAGE_ICON,
816 64,
817 64,
818 LR_LOADFROMFILE | LR_LOADMAP3DCOLORS);
819}
820
821/*
822 * Try loading an icon file from 'runtimepath'.
823 */
824 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100825mch_icon_load(HANDLE *iconp)
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200826{
827 return do_in_runtimepath((char_u *)"bitmaps/vim.ico",
Bram Moolenaar7f8989d2016-03-12 22:11:39 +0100828 0, mch_icon_load_cb, iconp);
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200829}
830
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 int
832mch_libcall(
833 char_u *libname,
834 char_u *funcname,
835 char_u *argstring, /* NULL when using a argint */
836 int argint,
837 char_u **string_result,/* NULL when using number_result */
838 int *number_result)
839{
840 HINSTANCE hinstLib;
841 MYSTRPROCSTR ProcAdd;
842 MYINTPROCSTR ProcAddI;
843 char_u *retval_str = NULL;
844 int retval_int = 0;
845 size_t len;
846
847 BOOL fRunTimeLinkSuccess = FALSE;
848
849 // Get a handle to the DLL module.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100850 hinstLib = vimLoadLib((char *)libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851
852 // If the handle is valid, try to get the function address.
853 if (hinstLib != NULL)
854 {
855#ifdef HAVE_TRY_EXCEPT
856 __try
857 {
858#endif
859 if (argstring != NULL)
860 {
861 /* Call with string argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100862 ProcAdd = (MYSTRPROCSTR)GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 if ((fRunTimeLinkSuccess = (ProcAdd != NULL)) != 0)
864 {
865 if (string_result == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100866 retval_int = ((MYSTRPROCINT)ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100868 retval_str = (char_u *)(ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 }
870 }
871 else
872 {
873 /* Call with number argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100874 ProcAddI = (MYINTPROCSTR) GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 if ((fRunTimeLinkSuccess = (ProcAddI != NULL)) != 0)
876 {
877 if (string_result == NULL)
878 retval_int = ((MYINTPROCINT)ProcAddI)(argint);
879 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100880 retval_str = (char_u *)(ProcAddI)(argint);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 }
882 }
883
884 // Save the string before we free the library.
885 // Assume that a "1" result is an illegal pointer.
886 if (string_result == NULL)
887 *number_result = retval_int;
888 else if (retval_str != NULL
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100889 && (len = check_str_len(retval_str)) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 {
891 *string_result = lalloc((long_u)len, TRUE);
892 if (*string_result != NULL)
893 mch_memmove(*string_result, retval_str, len);
894 }
895
896#ifdef HAVE_TRY_EXCEPT
897 }
898 __except(EXCEPTION_EXECUTE_HANDLER)
899 {
900 if (GetExceptionCode() == EXCEPTION_STACK_OVERFLOW)
901 RESETSTKOFLW();
902 fRunTimeLinkSuccess = 0;
903 }
904#endif
905
906 // Free the DLL module.
907 (void)FreeLibrary(hinstLib);
908 }
909
910 if (!fRunTimeLinkSuccess)
911 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100912 semsg(_(e_libcall), funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 return FAIL;
914 }
915
916 return OK;
917}
918#endif
919
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920/*
921 * Debugging helper: expose the MCH_WRITE_DUMP stuff to other modules
922 */
923 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100924DumpPutS(const char *psz UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925{
926# ifdef MCH_WRITE_DUMP
927 if (fdDump)
928 {
929 fputs(psz, fdDump);
930 if (psz[strlen(psz) - 1] != '\n')
931 fputc('\n', fdDump);
932 fflush(fdDump);
933 }
934# endif
935}
936
937#ifdef _DEBUG
938
939void __cdecl
940Trace(
941 char *pszFormat,
942 ...)
943{
944 CHAR szBuff[2048];
945 va_list args;
946
947 va_start(args, pszFormat);
948 vsprintf(szBuff, pszFormat, args);
949 va_end(args);
950
951 OutputDebugString(szBuff);
952}
953
954#endif //_DEBUG
955
Bram Moolenaar843ee412004-06-30 16:16:41 +0000956#if !defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200957# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958extern HWND g_hWnd; /* This is in os_win32.c. */
959# endif
960
961/*
962 * Showing the printer dialog is tricky since we have no GUI
963 * window to parent it. The following routines are needed to
964 * get the window parenting and Z-order to work properly.
965 */
966 static void
967GetConsoleHwnd(void)
968{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 /* Skip if it's already set. */
970 if (s_hwnd != 0)
971 return;
972
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200973# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 /* Window handle may have been found by init code (Windows NT only) */
975 if (g_hWnd != 0)
976 {
977 s_hwnd = g_hWnd;
978 return;
979 }
980# endif
981
Bram Moolenaare1ed53f2019-02-12 23:12:37 +0100982 s_hwnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983}
Bram Moolenaar843ee412004-06-30 16:16:41 +0000984
985/*
986 * Console implementation of ":winpos".
987 */
988 int
989mch_get_winpos(int *x, int *y)
990{
991 RECT rect;
992
993 GetConsoleHwnd();
994 GetWindowRect(s_hwnd, &rect);
995 *x = rect.left;
996 *y = rect.top;
997 return OK;
998}
999
1000/*
1001 * Console implementation of ":winpos x y".
1002 */
1003 void
1004mch_set_winpos(int x, int y)
1005{
1006 GetConsoleHwnd();
1007 SetWindowPos(s_hwnd, NULL, x, y, 0, 0,
1008 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
1009}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010#endif
1011
1012#if (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) || defined(PROTO)
1013
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014/*=================================================================
1015 * Win32 printer stuff
1016 */
1017
1018static HFONT prt_font_handles[2][2][2];
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001019static PRINTDLGW prt_dlg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020static const int boldface[2] = {FW_REGULAR, FW_BOLD};
1021static TEXTMETRIC prt_tm;
1022static int prt_line_height;
1023static int prt_number_width;
1024static int prt_left_margin;
1025static int prt_right_margin;
1026static int prt_top_margin;
1027static char_u szAppName[] = TEXT("VIM");
1028static HWND hDlgPrint;
1029static int *bUserAbort = NULL;
1030static char_u *prt_name = NULL;
1031
1032/* Defines which are also in vim.rc. */
1033#define IDC_BOX1 400
1034#define IDC_PRINTTEXT1 401
1035#define IDC_PRINTTEXT2 402
1036#define IDC_PROGRESS 403
1037
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001038 static BOOL
1039vimSetDlgItemText(HWND hDlg, int nIDDlgItem, char_u *s)
1040{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001041 WCHAR *wp;
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001042 BOOL ret;
1043
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001044 wp = enc_to_utf16(s, NULL);
1045 if (wp == NULL)
1046 return FALSE;
1047
1048 ret = SetDlgItemTextW(hDlg, nIDDlgItem, wp);
1049 vim_free(wp);
1050 return ret;
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001051}
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001052
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053/*
1054 * Convert BGR to RGB for Windows GDI calls
1055 */
1056 static COLORREF
1057swap_me(COLORREF colorref)
1058{
1059 int temp;
1060 char *ptr = (char *)&colorref;
1061
1062 temp = *(ptr);
1063 *(ptr ) = *(ptr + 2);
1064 *(ptr + 2) = temp;
1065 return colorref;
1066}
1067
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001068/* Attempt to make this work for old and new compilers */
Bram Moolenaar9f733d12011-09-21 20:09:42 +02001069#if !defined(_WIN64) && (!defined(_MSC_VER) || _MSC_VER < 1300)
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001070# define PDP_RETVAL BOOL
1071#else
1072# define PDP_RETVAL INT_PTR
1073#endif
1074
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001075 static PDP_RETVAL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001076PrintDlgProc(
1077 HWND hDlg,
1078 UINT message,
1079 WPARAM wParam UNUSED,
1080 LPARAM lParam UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081{
1082#ifdef FEAT_GETTEXT
1083 NONCLIENTMETRICS nm;
1084 static HFONT hfont;
1085#endif
1086
1087 switch (message)
1088 {
1089 case WM_INITDIALOG:
1090#ifdef FEAT_GETTEXT
1091 nm.cbSize = sizeof(NONCLIENTMETRICS);
1092 if (SystemParametersInfo(
1093 SPI_GETNONCLIENTMETRICS,
1094 sizeof(NONCLIENTMETRICS),
1095 &nm,
1096 0))
1097 {
1098 char buff[MAX_PATH];
1099 int i;
1100
1101 /* Translate the dialog texts */
1102 hfont = CreateFontIndirect(&nm.lfMessageFont);
1103 for (i = IDC_PRINTTEXT1; i <= IDC_PROGRESS; i++)
1104 {
1105 SendDlgItemMessage(hDlg, i, WM_SETFONT, (WPARAM)hfont, 1);
1106 if (GetDlgItemText(hDlg,i, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001107 vimSetDlgItemText(hDlg,i, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 }
1109 SendDlgItemMessage(hDlg, IDCANCEL,
1110 WM_SETFONT, (WPARAM)hfont, 1);
1111 if (GetDlgItemText(hDlg,IDCANCEL, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001112 vimSetDlgItemText(hDlg,IDCANCEL, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 }
1114#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001115 SetWindowText(hDlg, (LPCSTR)szAppName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 if (prt_name != NULL)
1117 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001118 vimSetDlgItemText(hDlg, IDC_PRINTTEXT2, (char_u *)prt_name);
Bram Moolenaard23a8232018-02-10 18:45:26 +01001119 VIM_CLEAR(prt_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 }
1121 EnableMenuItem(GetSystemMenu(hDlg, FALSE), SC_CLOSE, MF_GRAYED);
1122#ifndef FEAT_GUI
1123 BringWindowToTop(s_hwnd);
1124#endif
1125 return TRUE;
1126
1127 case WM_COMMAND:
1128 *bUserAbort = TRUE;
1129 EnableWindow(GetParent(hDlg), TRUE);
1130 DestroyWindow(hDlg);
1131 hDlgPrint = NULL;
1132#ifdef FEAT_GETTEXT
1133 DeleteObject(hfont);
1134#endif
1135 return TRUE;
1136 }
1137 return FALSE;
1138}
1139
1140 static BOOL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001141AbortProc(HDC hdcPrn UNUSED, int iCode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142{
1143 MSG msg;
1144
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001145 while (!*bUserAbort && pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 {
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001147 if (!hDlgPrint || !pIsDialogMessage(hDlgPrint, &msg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 {
1149 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001150 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 }
1152 }
1153 return !*bUserAbort;
1154}
1155
1156#ifndef FEAT_GUI
1157
Bram Moolenaar26fdd7d2011-11-30 13:42:44 +01001158 static UINT_PTR CALLBACK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159PrintHookProc(
1160 HWND hDlg, // handle to dialog box
1161 UINT uiMsg, // message identifier
1162 WPARAM wParam, // message parameter
1163 LPARAM lParam // message parameter
1164 )
1165{
1166 HWND hwndOwner;
1167 RECT rc, rcDlg, rcOwner;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001168 PRINTDLGW *pPD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169
1170 if (uiMsg == WM_INITDIALOG)
1171 {
1172 // Get the owner window and dialog box rectangles.
1173 if ((hwndOwner = GetParent(hDlg)) == NULL)
1174 hwndOwner = GetDesktopWindow();
1175
1176 GetWindowRect(hwndOwner, &rcOwner);
1177 GetWindowRect(hDlg, &rcDlg);
1178 CopyRect(&rc, &rcOwner);
1179
1180 // Offset the owner and dialog box rectangles so that
1181 // right and bottom values represent the width and
1182 // height, and then offset the owner again to discard
1183 // space taken up by the dialog box.
1184
1185 OffsetRect(&rcDlg, -rcDlg.left, -rcDlg.top);
1186 OffsetRect(&rc, -rc.left, -rc.top);
1187 OffsetRect(&rc, -rcDlg.right, -rcDlg.bottom);
1188
1189 // The new position is the sum of half the remaining
1190 // space and the owner's original position.
1191
1192 SetWindowPos(hDlg,
1193 HWND_TOP,
1194 rcOwner.left + (rc.right / 2),
1195 rcOwner.top + (rc.bottom / 2),
1196 0, 0, // ignores size arguments
1197 SWP_NOSIZE);
1198
1199 /* tackle the printdlg copiesctrl problem */
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001200 pPD = (PRINTDLGW *)lParam;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 pPD->nCopies = (WORD)pPD->lCustData;
1202 SetDlgItemInt( hDlg, edt3, pPD->nCopies, FALSE );
1203 /* Bring the window to top */
1204 BringWindowToTop(GetParent(hDlg));
1205 SetForegroundWindow(hDlg);
1206 }
1207
1208 return FALSE;
1209}
1210#endif
1211
1212 void
1213mch_print_cleanup(void)
1214{
1215 int pifItalic;
1216 int pifBold;
1217 int pifUnderline;
1218
1219 for (pifBold = 0; pifBold <= 1; pifBold++)
1220 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1221 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1222 DeleteObject(prt_font_handles[pifBold][pifItalic][pifUnderline]);
1223
1224 if (prt_dlg.hDC != NULL)
1225 DeleteDC(prt_dlg.hDC);
1226 if (!*bUserAbort)
1227 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1228}
1229
1230 static int
1231to_device_units(int idx, int dpi, int physsize, int offset, int def_number)
1232{
1233 int ret = 0;
1234 int u;
1235 int nr;
1236
1237 u = prt_get_unit(idx);
1238 if (u == PRT_UNIT_NONE)
1239 {
1240 u = PRT_UNIT_PERC;
1241 nr = def_number;
1242 }
1243 else
1244 nr = printer_opts[idx].number;
1245
1246 switch (u)
1247 {
1248 case PRT_UNIT_PERC:
1249 ret = (physsize * nr) / 100;
1250 break;
1251 case PRT_UNIT_INCH:
1252 ret = (nr * dpi);
1253 break;
1254 case PRT_UNIT_MM:
1255 ret = (nr * 10 * dpi) / 254;
1256 break;
1257 case PRT_UNIT_POINT:
1258 ret = (nr * 10 * dpi) / 720;
1259 break;
1260 }
1261
1262 if (ret < offset)
1263 return 0;
1264 else
1265 return ret - offset;
1266}
1267
1268 static int
1269prt_get_cpl(void)
1270{
1271 int hr;
1272 int phyw;
1273 int dvoff;
1274 int rev_offset;
1275 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276
1277 GetTextMetrics(prt_dlg.hDC, &prt_tm);
1278 prt_line_height = prt_tm.tmHeight + prt_tm.tmExternalLeading;
1279
1280 hr = GetDeviceCaps(prt_dlg.hDC, HORZRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALWIDTH);
1282 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSX);
1284
1285 rev_offset = phyw - (dvoff + hr);
1286
1287 prt_left_margin = to_device_units(OPT_PRINT_LEFT, dpi, phyw, dvoff, 10);
1288 if (prt_use_number())
1289 {
1290 prt_number_width = PRINT_NUMBER_WIDTH * prt_tm.tmAveCharWidth;
1291 prt_left_margin += prt_number_width;
1292 }
1293 else
1294 prt_number_width = 0;
1295
1296 prt_right_margin = hr - to_device_units(OPT_PRINT_RIGHT, dpi, phyw,
1297 rev_offset, 5);
1298
1299 return (prt_right_margin - prt_left_margin) / prt_tm.tmAveCharWidth;
1300}
1301
1302 static int
1303prt_get_lpp(void)
1304{
1305 int vr;
1306 int phyw;
1307 int dvoff;
1308 int rev_offset;
1309 int bottom_margin;
1310 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311
1312 vr = GetDeviceCaps(prt_dlg.hDC, VERTRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALHEIGHT);
1314 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSY);
1316
1317 rev_offset = phyw - (dvoff + vr);
1318
1319 prt_top_margin = to_device_units(OPT_PRINT_TOP, dpi, phyw, dvoff, 5);
1320
1321 /* adjust top margin if there is a header */
1322 prt_top_margin += prt_line_height * prt_header_height();
1323
1324 bottom_margin = vr - to_device_units(OPT_PRINT_BOT, dpi, phyw,
1325 rev_offset, 5);
1326
1327 return (bottom_margin - prt_top_margin) / prt_line_height;
1328}
1329
1330 int
1331mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit)
1332{
1333 static HGLOBAL stored_dm = NULL;
1334 static HGLOBAL stored_devn = NULL;
1335 static int stored_nCopies = 1;
1336 static int stored_nFlags = 0;
1337
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01001338 LOGFONTW fLogFont;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 int pifItalic;
1340 int pifBold;
1341 int pifUnderline;
1342
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001343 DEVMODEW *mem;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 DEVNAMES *devname;
1345 int i;
1346
1347 bUserAbort = &(psettings->user_abort);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001348 vim_memset(&prt_dlg, 0, sizeof(PRINTDLGW));
1349 prt_dlg.lStructSize = sizeof(PRINTDLGW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350#ifndef FEAT_GUI
1351 GetConsoleHwnd(); /* get value of s_hwnd */
1352#endif
1353 prt_dlg.hwndOwner = s_hwnd;
1354 prt_dlg.Flags = PD_NOPAGENUMS | PD_NOSELECTION | PD_RETURNDC;
1355 if (!forceit)
1356 {
1357 prt_dlg.hDevMode = stored_dm;
1358 prt_dlg.hDevNames = stored_devn;
1359 prt_dlg.lCustData = stored_nCopies; // work around bug in print dialog
1360#ifndef FEAT_GUI
1361 /*
1362 * Use hook to prevent console window being sent to back
1363 */
1364 prt_dlg.lpfnPrintHook = PrintHookProc;
1365 prt_dlg.Flags |= PD_ENABLEPRINTHOOK;
1366#endif
1367 prt_dlg.Flags |= stored_nFlags;
1368 }
1369
1370 /*
1371 * If bang present, return default printer setup with no dialog
1372 * never show dialog if we are running over telnet
1373 */
1374 if (forceit
1375#ifndef FEAT_GUI
1376 || !term_console
1377#endif
1378 )
1379 {
1380 prt_dlg.Flags |= PD_RETURNDEFAULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 /*
1382 * MSDN suggests setting the first parameter to WINSPOOL for
1383 * NT, but NULL appears to work just as well.
1384 */
1385 if (*p_pdev != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001386 prt_dlg.hDC = CreateDC(NULL, (LPCSTR)p_pdev, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 {
1389 prt_dlg.Flags |= PD_RETURNDEFAULT;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001390 if (PrintDlgW(&prt_dlg) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 goto init_fail_dlg;
1392 }
1393 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001394 else if (PrintDlgW(&prt_dlg) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 goto init_fail_dlg;
1396 else
1397 {
1398 /*
1399 * keep the previous driver context
1400 */
1401 stored_dm = prt_dlg.hDevMode;
1402 stored_devn = prt_dlg.hDevNames;
1403 stored_nFlags = prt_dlg.Flags;
1404 stored_nCopies = prt_dlg.nCopies;
1405 }
1406
1407 if (prt_dlg.hDC == NULL)
1408 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001409 emsg(_("E237: Printer selection failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 mch_print_cleanup();
1411 return FALSE;
1412 }
1413
1414 /* Not all printer drivers report the support of color (or grey) in the
1415 * same way. Let's set has_color if there appears to be some way to print
1416 * more than B&W. */
1417 i = GetDeviceCaps(prt_dlg.hDC, NUMCOLORS);
1418 psettings->has_color = (GetDeviceCaps(prt_dlg.hDC, BITSPIXEL) > 1
1419 || GetDeviceCaps(prt_dlg.hDC, PLANES) > 1
1420 || i > 2 || i == -1);
1421
1422 /* Ensure all font styles are baseline aligned */
1423 SetTextAlign(prt_dlg.hDC, TA_BASELINE|TA_LEFT);
1424
1425 /*
1426 * On some windows systems the nCopies parameter is not
1427 * passed back correctly. It must be retrieved from the
1428 * hDevMode struct.
1429 */
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001430 mem = (DEVMODEW *)GlobalLock(prt_dlg.hDevMode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 if (mem != NULL)
1432 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 if (mem->dmCopies != 1)
1434 stored_nCopies = mem->dmCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 if ((mem->dmFields & DM_DUPLEX) && (mem->dmDuplex & ~DMDUP_SIMPLEX))
1436 psettings->duplex = TRUE;
1437 if ((mem->dmFields & DM_COLOR) && (mem->dmColor & DMCOLOR_COLOR))
1438 psettings->has_color = TRUE;
1439 }
1440 GlobalUnlock(prt_dlg.hDevMode);
1441
1442 devname = (DEVNAMES *)GlobalLock(prt_dlg.hDevNames);
1443 if (devname != 0)
1444 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001445 WCHAR *wprinter_name = (WCHAR *)devname + devname->wDeviceOffset;
1446 WCHAR *wport_name = (WCHAR *)devname + devname->wOutputOffset;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001447 char_u *text = (char_u *)_("to %s on %s");
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001448 char_u *printer_name = utf16_to_enc(wprinter_name, NULL);
1449 char_u *port_name = utf16_to_enc(wport_name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001451 if (printer_name != NULL && port_name != NULL)
1452 prt_name = alloc((unsigned)(STRLEN(printer_name)
1453 + STRLEN(port_name) + STRLEN(text)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 if (prt_name != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001455 wsprintf((char *)prt_name, (const char *)text,
1456 printer_name, port_name);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001457 vim_free(printer_name);
1458 vim_free(port_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 }
1460 GlobalUnlock(prt_dlg.hDevNames);
1461
1462 /*
1463 * Initialise the font according to 'printfont'
1464 */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001465 vim_memset(&fLogFont, 0, sizeof(fLogFont));
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001466 if (get_logfont(&fLogFont, p_pfn, prt_dlg.hDC, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001468 semsg(_("E613: Unknown printer font: %s"), p_pfn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 mch_print_cleanup();
1470 return FALSE;
1471 }
1472
1473 for (pifBold = 0; pifBold <= 1; pifBold++)
1474 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1475 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1476 {
1477 fLogFont.lfWeight = boldface[pifBold];
1478 fLogFont.lfItalic = pifItalic;
1479 fLogFont.lfUnderline = pifUnderline;
1480 prt_font_handles[pifBold][pifItalic][pifUnderline]
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01001481 = CreateFontIndirectW(&fLogFont);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 }
1483
1484 SetBkMode(prt_dlg.hDC, OPAQUE);
1485 SelectObject(prt_dlg.hDC, prt_font_handles[0][0][0]);
1486
1487 /*
1488 * Fill in the settings struct
1489 */
1490 psettings->chars_per_line = prt_get_cpl();
1491 psettings->lines_per_page = prt_get_lpp();
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001492 if (prt_dlg.Flags & PD_USEDEVMODECOPIESANDCOLLATE)
1493 {
1494 psettings->n_collated_copies = (prt_dlg.Flags & PD_COLLATE)
1495 ? prt_dlg.nCopies : 1;
1496 psettings->n_uncollated_copies = (prt_dlg.Flags & PD_COLLATE)
1497 ? 1 : prt_dlg.nCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001499 if (psettings->n_collated_copies == 0)
1500 psettings->n_collated_copies = 1;
1501
1502 if (psettings->n_uncollated_copies == 0)
1503 psettings->n_uncollated_copies = 1;
Bram Moolenaarb04a98f2016-12-01 20:32:29 +01001504 }
1505 else
1506 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 psettings->n_collated_copies = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 psettings->n_uncollated_copies = 1;
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001509 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510
1511 psettings->jobname = jobname;
1512
1513 return TRUE;
1514
1515init_fail_dlg:
1516 {
1517 DWORD err = CommDlgExtendedError();
1518
1519 if (err)
1520 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 char_u *buf;
1522
1523 /* I suspect FormatMessage() doesn't work for values returned by
1524 * CommDlgExtendedError(). What does? */
1525 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
1526 FORMAT_MESSAGE_FROM_SYSTEM |
1527 FORMAT_MESSAGE_IGNORE_INSERTS,
1528 NULL, err, 0, (LPTSTR)(&buf), 0, NULL);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001529 semsg(_("E238: Print error: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 buf == NULL ? (char_u *)_("Unknown") : buf);
1531 LocalFree((LPVOID)(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 }
1533 else
1534 msg_clr_eos(); /* Maybe canceled */
1535
1536 mch_print_cleanup();
1537 return FALSE;
1538 }
1539}
1540
1541
1542 int
1543mch_print_begin(prt_settings_T *psettings)
1544{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001545 int ret = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 char szBuffer[300];
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001547 WCHAR *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548
1549 hDlgPrint = CreateDialog(GetModuleHandle(NULL), TEXT("PrintDlgBox"),
1550 prt_dlg.hwndOwner, PrintDlgProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 SetAbortProc(prt_dlg.hDC, AbortProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 wsprintf(szBuffer, _("Printing '%s'"), gettail(psettings->jobname));
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001553 vimSetDlgItemText(hDlgPrint, IDC_PRINTTEXT1, (char_u *)szBuffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001555 wp = enc_to_utf16(psettings->jobname, NULL);
Bram Moolenaar2290b1f2018-05-13 17:30:45 +02001556 if (wp != NULL)
1557 {
1558 DOCINFOW di;
1559
1560 vim_memset(&di, 0, sizeof(di));
1561 di.cbSize = sizeof(di);
1562 di.lpszDocName = wp;
1563 ret = StartDocW(prt_dlg.hDC, &di);
1564 vim_free(wp);
1565 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566
1567#ifdef FEAT_GUI
1568 /* Give focus back to main window (when using MDI). */
1569 SetFocus(s_hwnd);
1570#endif
1571
1572 return (ret > 0);
1573}
1574
1575 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001576mch_print_end(prt_settings_T *psettings UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577{
1578 EndDoc(prt_dlg.hDC);
1579 if (!*bUserAbort)
1580 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1581}
1582
1583 int
1584mch_print_end_page(void)
1585{
1586 return (EndPage(prt_dlg.hDC) > 0);
1587}
1588
1589 int
1590mch_print_begin_page(char_u *msg)
1591{
1592 if (msg != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001593 vimSetDlgItemText(hDlgPrint, IDC_PROGRESS, msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 return (StartPage(prt_dlg.hDC) > 0);
1595}
1596
1597 int
1598mch_print_blank_page(void)
1599{
1600 return (mch_print_begin_page(NULL) ? (mch_print_end_page()) : FALSE);
1601}
1602
1603static int prt_pos_x = 0;
1604static int prt_pos_y = 0;
1605
1606 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001607mch_print_start_line(int margin, int page_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608{
1609 if (margin)
1610 prt_pos_x = -prt_number_width;
1611 else
1612 prt_pos_x = 0;
1613 prt_pos_y = page_line * prt_line_height
1614 + prt_tm.tmAscent + prt_tm.tmExternalLeading;
1615}
1616
1617 int
1618mch_print_text_out(char_u *p, int len)
1619{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 SIZE sz;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001621 WCHAR *wp;
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001622 int wlen = len;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001623 int ret = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001625 wp = enc_to_utf16(p, &wlen);
1626 if (wp == NULL)
1627 return FALSE;
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001628
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001629 TextOutW(prt_dlg.hDC, prt_pos_x + prt_left_margin,
1630 prt_pos_y + prt_top_margin, wp, wlen);
1631 GetTextExtentPoint32W(prt_dlg.hDC, wp, wlen, &sz);
1632 vim_free(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
1634 /* This is wrong when printing spaces for a TAB. */
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001635 if (p[len] != NUL)
1636 {
1637 wlen = MB_PTR2LEN(p + len);
1638 wp = enc_to_utf16(p + len, &wlen);
1639 if (wp != NULL)
1640 {
1641 GetTextExtentPoint32W(prt_dlg.hDC, wp, 1, &sz);
1642 ret = (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
1643 vim_free(wp);
1644 }
1645 }
1646 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647}
1648
1649 void
1650mch_print_set_font(int iBold, int iItalic, int iUnderline)
1651{
1652 SelectObject(prt_dlg.hDC, prt_font_handles[iBold][iItalic][iUnderline]);
1653}
1654
1655 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001656mch_print_set_bg(long_u bgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001658 SetBkColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1659 swap_me((COLORREF)bgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 /*
1661 * With a white background we can draw characters transparent, which is
1662 * good for italic characters that overlap to the next char cell.
1663 */
1664 if (bgcol == 0xffffffUL)
1665 SetBkMode(prt_dlg.hDC, TRANSPARENT);
1666 else
1667 SetBkMode(prt_dlg.hDC, OPAQUE);
1668}
1669
1670 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001671mch_print_set_fg(long_u fgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001673 SetTextColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1674 swap_me((COLORREF)fgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675}
1676
1677#endif /*FEAT_PRINTER && !FEAT_POSTSCRIPT*/
1678
Bram Moolenaar58d98232005-07-23 22:25:46 +00001679
1680
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681#if defined(FEAT_SHORTCUT) || defined(PROTO)
Bram Moolenaar82881492012-11-20 16:53:39 +01001682# ifndef PROTO
1683# include <shlobj.h>
1684# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685
Bram Moolenaardce1e892019-02-10 23:18:53 +01001686typedef enum _FILE_INFO_BY_HANDLE_CLASS_ {
1687 FileBasicInfo_,
1688 FileStandardInfo_,
1689 FileNameInfo_,
1690 FileRenameInfo_,
1691 FileDispositionInfo_,
1692 FileAllocationInfo_,
1693 FileEndOfFileInfo_,
1694 FileStreamInfo_,
1695 FileCompressionInfo_,
1696 FileAttributeTagInfo_,
1697 FileIdBothDirectoryInfo_,
1698 FileIdBothDirectoryRestartInfo_,
1699 FileIoPriorityHintInfo_,
1700 FileRemoteProtocolInfo_,
1701 FileFullDirectoryInfo_,
1702 FileFullDirectoryRestartInfo_,
1703 FileStorageInfo_,
1704 FileAlignmentInfo_,
1705 FileIdInfo_,
1706 FileIdExtdDirectoryInfo_,
1707 FileIdExtdDirectoryRestartInfo_,
1708 FileDispositionInfoEx_,
1709 FileRenameInfoEx_,
1710 MaximumFileInfoByHandleClass_
1711} FILE_INFO_BY_HANDLE_CLASS_;
1712
1713typedef struct _FILE_NAME_INFO_ {
1714 DWORD FileNameLength;
1715 WCHAR FileName[1];
1716} FILE_NAME_INFO_;
1717
1718typedef BOOL (WINAPI *pfnGetFileInformationByHandleEx)(
1719 HANDLE hFile,
1720 FILE_INFO_BY_HANDLE_CLASS_ FileInformationClass,
1721 LPVOID lpFileInformation,
1722 DWORD dwBufferSize);
1723static pfnGetFileInformationByHandleEx pGetFileInformationByHandleEx = NULL;
1724
1725typedef BOOL (WINAPI *pfnGetVolumeInformationByHandleW)(
1726 HANDLE hFile,
1727 LPWSTR lpVolumeNameBuffer,
1728 DWORD nVolumeNameSize,
1729 LPDWORD lpVolumeSerialNumber,
1730 LPDWORD lpMaximumComponentLength,
1731 LPDWORD lpFileSystemFlags,
1732 LPWSTR lpFileSystemNameBuffer,
1733 DWORD nFileSystemNameSize);
1734static pfnGetVolumeInformationByHandleW pGetVolumeInformationByHandleW = NULL;
1735
1736 char_u *
1737resolve_reparse_point(char_u *fname)
1738{
1739 HANDLE h = INVALID_HANDLE_VALUE;
1740 DWORD size;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001741 WCHAR *p;
Bram Moolenaardce1e892019-02-10 23:18:53 +01001742 char_u *rfname = NULL;
1743 FILE_NAME_INFO_ *nameinfo = NULL;
1744 WCHAR buff[MAX_PATH], *volnames = NULL;
1745 HANDLE hv;
1746 DWORD snfile, snfind;
1747 static BOOL loaded = FALSE;
1748
1749 if (pGetFileInformationByHandleEx == NULL ||
1750 pGetVolumeInformationByHandleW == NULL)
1751 {
1752 HMODULE hmod = GetModuleHandle("kernel32.dll");
1753
1754 if (loaded == TRUE)
1755 return NULL;
1756 pGetFileInformationByHandleEx = (pfnGetFileInformationByHandleEx)
1757 GetProcAddress(hmod, "GetFileInformationByHandleEx");
1758 pGetVolumeInformationByHandleW = (pfnGetVolumeInformationByHandleW)
1759 GetProcAddress(hmod, "GetVolumeInformationByHandleW");
1760 loaded = TRUE;
1761 if (pGetFileInformationByHandleEx == NULL ||
1762 pGetVolumeInformationByHandleW == NULL)
1763 return NULL;
1764 }
1765
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001766 p = enc_to_utf16(fname, NULL);
1767 if (p == NULL)
1768 goto fail;
1769
1770 if ((GetFileAttributesW(p) & FILE_ATTRIBUTE_REPARSE_POINT) == 0)
Bram Moolenaardce1e892019-02-10 23:18:53 +01001771 {
Bram Moolenaardce1e892019-02-10 23:18:53 +01001772 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001773 goto fail;
Bram Moolenaardce1e892019-02-10 23:18:53 +01001774 }
Bram Moolenaardce1e892019-02-10 23:18:53 +01001775
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001776 h = CreateFileW(p, 0, 0, NULL, OPEN_EXISTING,
1777 FILE_FLAG_BACKUP_SEMANTICS, NULL);
1778 vim_free(p);
Bram Moolenaardce1e892019-02-10 23:18:53 +01001779
1780 if (h == INVALID_HANDLE_VALUE)
1781 goto fail;
1782
1783 size = sizeof(FILE_NAME_INFO_) + sizeof(WCHAR) * (MAX_PATH - 1);
1784 nameinfo = (FILE_NAME_INFO_*)alloc(size + sizeof(WCHAR));
1785 if (nameinfo == NULL)
1786 goto fail;
1787
1788 if (!pGetFileInformationByHandleEx(h, FileNameInfo_, nameinfo, size))
1789 goto fail;
1790
1791 nameinfo->FileName[nameinfo->FileNameLength / sizeof(WCHAR)] = 0;
1792
1793 if (!pGetVolumeInformationByHandleW(
1794 h, NULL, 0, &snfile, NULL, NULL, NULL, 0))
1795 goto fail;
1796
1797 hv = FindFirstVolumeW(buff, MAX_PATH);
1798 if (hv == INVALID_HANDLE_VALUE)
1799 goto fail;
1800
1801 do {
1802 GetVolumeInformationW(
1803 buff, NULL, 0, &snfind, NULL, NULL, NULL, 0);
1804 if (snfind == snfile)
1805 break;
1806 } while (FindNextVolumeW(hv, buff, MAX_PATH));
1807
1808 FindVolumeClose(hv);
1809
1810 if (snfind != snfile)
1811 goto fail;
1812
1813 size = 0;
1814 if (!GetVolumePathNamesForVolumeNameW(buff, NULL, 0, &size) &&
1815 GetLastError() != ERROR_MORE_DATA)
1816 goto fail;
1817
1818 volnames = (WCHAR*)alloc(size * sizeof(WCHAR));
1819 if (!GetVolumePathNamesForVolumeNameW(buff, volnames, size,
1820 &size))
1821 goto fail;
1822
1823 wcscpy(buff, volnames);
1824 if (nameinfo->FileName[0] == '\\')
1825 wcscat(buff, nameinfo->FileName + 1);
1826 else
1827 wcscat(buff, nameinfo->FileName);
1828 rfname = utf16_to_enc(buff, NULL);
1829
1830fail:
1831 if (h != INVALID_HANDLE_VALUE)
1832 CloseHandle(h);
1833 if (nameinfo != NULL)
1834 vim_free(nameinfo);
1835 if (volnames != NULL)
1836 vim_free(volnames);
1837
1838 return rfname;
1839}
1840
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841/*
1842 * When "fname" is the name of a shortcut (*.lnk) resolve the file it points
1843 * to and return that name in allocated memory.
1844 * Otherwise NULL is returned.
1845 */
Bram Moolenaardce1e892019-02-10 23:18:53 +01001846 static char_u *
1847resolve_shortcut(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848{
1849 HRESULT hr;
1850 IShellLink *psl = NULL;
1851 IPersistFile *ppf = NULL;
1852 OLECHAR wsz[MAX_PATH];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 char_u *rfname = NULL;
1854 int len;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001855 IShellLinkW *pslw = NULL;
1856 WIN32_FIND_DATAW ffdw; // we get those free of charge
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857
1858 /* Check if the file name ends in ".lnk". Avoid calling
1859 * CoCreateInstance(), it's quite slow. */
1860 if (fname == NULL)
1861 return rfname;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001862 len = (int)STRLEN(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 if (len <= 4 || STRNICMP(fname + len - 4, ".lnk", 4) != 0)
1864 return rfname;
1865
1866 CoInitialize(NULL);
1867
1868 // create a link manager object and request its interface
1869 hr = CoCreateInstance(
1870 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001871 &IID_IShellLinkW, (void**)&pslw);
1872 if (hr == S_OK)
1873 {
1874 WCHAR *p = enc_to_utf16(fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001876 if (p != NULL)
1877 {
1878 // Get a pointer to the IPersistFile interface.
1879 hr = pslw->lpVtbl->QueryInterface(
1880 pslw, &IID_IPersistFile, (void**)&ppf);
1881 if (hr != S_OK)
1882 goto shortcut_errorw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001884 // "load" the name and resolve the link
1885 hr = ppf->lpVtbl->Load(ppf, p, STGM_READ);
1886 if (hr != S_OK)
1887 goto shortcut_errorw;
1888# if 0 // This makes Vim wait a long time if the target does not exist.
1889 hr = pslw->lpVtbl->Resolve(pslw, NULL, SLR_NO_UI);
1890 if (hr != S_OK)
1891 goto shortcut_errorw;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001892# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001894 // Get the path to the link target.
1895 ZeroMemory(wsz, MAX_PATH * sizeof(WCHAR));
1896 hr = pslw->lpVtbl->GetPath(pslw, wsz, MAX_PATH, &ffdw, 0);
1897 if (hr == S_OK && wsz[0] != NUL)
1898 rfname = utf16_to_enc(wsz, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02001900shortcut_errorw:
1901 vim_free(p);
1902 }
1903 }
1904
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 // Release all interface pointers (both belong to the same object)
1906 if (ppf != NULL)
1907 ppf->lpVtbl->Release(ppf);
1908 if (psl != NULL)
1909 psl->lpVtbl->Release(psl);
Bram Moolenaar604729e2013-08-30 16:44:19 +02001910 if (pslw != NULL)
1911 pslw->lpVtbl->Release(pslw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912
1913 CoUninitialize();
1914 return rfname;
1915}
Bram Moolenaardce1e892019-02-10 23:18:53 +01001916
1917 char_u *
1918mch_resolve_path(char_u *fname, int reparse_point)
1919{
1920 char_u *path = resolve_shortcut(fname);
1921
1922 if (path == NULL && reparse_point)
1923 path = resolve_reparse_point(fname);
1924 return path;
1925}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926#endif
1927
1928#if (defined(FEAT_EVAL) && !defined(FEAT_GUI)) || defined(PROTO)
1929/*
1930 * Bring ourselves to the foreground. Does work if the OS doesn't allow it.
1931 */
1932 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001933win32_set_foreground(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934{
1935# ifndef FEAT_GUI
1936 GetConsoleHwnd(); /* get value of s_hwnd */
1937# endif
1938 if (s_hwnd != 0)
1939 SetForegroundWindow(s_hwnd);
1940}
1941#endif
1942
1943#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
1944/*
1945 * Client-server code for Vim
1946 *
1947 * Originally written by Paul Moore
1948 */
1949
1950/* In order to handle inter-process messages, we need to have a window. But
1951 * the functions in this module can be called before the main GUI window is
1952 * created (and may also be called in the console version, where there is no
1953 * GUI window at all).
1954 *
1955 * So we create a hidden window, and arrange to destroy it on exit.
1956 */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001957HWND message_window = 0; /* window that's handling messages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958
1959#define VIM_CLASSNAME "VIM_MESSAGES"
1960#define VIM_CLASSNAME_LEN (sizeof(VIM_CLASSNAME) - 1)
1961
1962/* Communication is via WM_COPYDATA messages. The message type is send in
1963 * the dwData parameter. Types are defined here. */
1964#define COPYDATA_KEYS 0
1965#define COPYDATA_REPLY 1
1966#define COPYDATA_EXPR 10
1967#define COPYDATA_RESULT 11
1968#define COPYDATA_ERROR_RESULT 12
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001969#define COPYDATA_ENCODING 20
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970
1971/* This is a structure containing a server HWND and its name. */
1972struct server_id
1973{
1974 HWND hwnd;
1975 char_u *name;
1976};
1977
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001978/* Last received 'encoding' that the client uses. */
1979static char_u *client_enc = NULL;
1980
1981/*
1982 * Tell the other side what encoding we are using.
1983 * Errors are ignored.
1984 */
1985 static void
1986serverSendEnc(HWND target)
1987{
1988 COPYDATASTRUCT data;
1989
1990 data.dwData = COPYDATA_ENCODING;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001991 data.cbData = (DWORD)STRLEN(p_enc) + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001992 data.lpData = p_enc;
1993 (void)SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
1994 (LPARAM)(&data));
1995}
1996
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997/*
1998 * Clean up on exit. This destroys the hidden message window.
1999 */
2000 static void
2001#ifdef __BORLANDC__
2002 _RTLENTRYF
2003#endif
2004CleanUpMessaging(void)
2005{
2006 if (message_window != 0)
2007 {
2008 DestroyWindow(message_window);
2009 message_window = 0;
2010 }
2011}
2012
2013static int save_reply(HWND server, char_u *reply, int expr);
2014
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002015/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 * The window procedure for the hidden message window.
2017 * It handles callback messages and notifications from servers.
2018 * In order to process these messages, it is necessary to run a
2019 * message loop. Code which may run before the main message loop
2020 * is started (in the GUI) is careful to pump messages when it needs
2021 * to. Features which require message delivery during normal use will
2022 * not work in the console version - this basically means those
2023 * features which allow Vim to act as a server, rather than a client.
2024 */
2025 static LRESULT CALLBACK
2026Messaging_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
2027{
2028 if (msg == WM_COPYDATA)
2029 {
2030 /* This is a message from another Vim. The dwData member of the
2031 * COPYDATASTRUCT determines the type of message:
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002032 * COPYDATA_ENCODING:
2033 * The encoding that the client uses. Following messages will
2034 * use this encoding, convert if needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 * COPYDATA_KEYS:
2036 * A key sequence. We are a server, and a client wants these keys
2037 * adding to the input queue.
2038 * COPYDATA_REPLY:
2039 * A reply. We are a client, and a server has sent this message
2040 * in response to a request. (server2client())
2041 * COPYDATA_EXPR:
2042 * An expression. We are a server, and a client wants us to
2043 * evaluate this expression.
2044 * COPYDATA_RESULT:
2045 * A reply. We are a client, and a server has sent this message
2046 * in response to a COPYDATA_EXPR.
2047 * COPYDATA_ERROR_RESULT:
2048 * A reply. We are a client, and a server has sent this message
2049 * in response to a COPYDATA_EXPR that failed to evaluate.
2050 */
2051 COPYDATASTRUCT *data = (COPYDATASTRUCT*)lParam;
2052 HWND sender = (HWND)wParam;
2053 COPYDATASTRUCT reply;
2054 char_u *res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 int retval;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002056 char_u *str;
2057 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058
2059 switch (data->dwData)
2060 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002061 case COPYDATA_ENCODING:
2062 /* Remember the encoding that the client uses. */
2063 vim_free(client_enc);
2064 client_enc = enc_canonize((char_u *)data->lpData);
2065 return 1;
2066
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 case COPYDATA_KEYS:
2068 /* Remember who sent this, for <client> */
2069 clientWindow = sender;
2070
2071 /* Add the received keys to the input buffer. The loop waiting
2072 * for the user to do something should check the input buffer. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002073 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2074 server_to_input_buf(str);
2075 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076
2077# ifdef FEAT_GUI
2078 /* Wake up the main GUI loop. */
2079 if (s_hwnd != 0)
2080 PostMessage(s_hwnd, WM_NULL, 0, 0);
2081# endif
2082 return 1;
2083
2084 case COPYDATA_EXPR:
2085 /* Remember who sent this, for <client> */
2086 clientWindow = sender;
2087
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002088 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2089 res = eval_client_expr_to_string(str);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002090
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 if (res == NULL)
2092 {
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002093 char *err = _(e_invexprmsg);
2094 size_t len = STRLEN(str) + STRLEN(err) + 5;
2095
Bram Moolenaar1662ce12017-03-19 21:47:50 +01002096 res = alloc((unsigned)len);
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002097 if (res != NULL)
2098 vim_snprintf((char *)res, len, "%s: \"%s\"", err, str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 reply.dwData = COPYDATA_ERROR_RESULT;
2100 }
2101 else
2102 reply.dwData = COPYDATA_RESULT;
2103 reply.lpData = res;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002104 reply.cbData = (DWORD)STRLEN(res) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002106 serverSendEnc(sender);
Bram Moolenaar5246cd72013-06-16 16:41:47 +02002107 retval = (int)SendMessage(sender, WM_COPYDATA,
2108 (WPARAM)message_window, (LPARAM)(&reply));
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002109 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 vim_free(res);
2111 return retval;
2112
2113 case COPYDATA_REPLY:
2114 case COPYDATA_RESULT:
2115 case COPYDATA_ERROR_RESULT:
2116 if (data->lpData != NULL)
2117 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002118 str = serverConvert(client_enc, (char_u *)data->lpData,
2119 &tofree);
2120 if (tofree == NULL)
2121 str = vim_strsave(str);
2122 if (save_reply(sender, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 (data->dwData == COPYDATA_REPLY ? 0 :
2124 (data->dwData == COPYDATA_RESULT ? 1 :
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002125 2))) == FAIL)
2126 vim_free(str);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002127 else if (data->dwData == COPYDATA_REPLY)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 {
Bram Moolenaar427d51c2013-06-16 16:01:25 +02002129 char_u winstr[30];
2130
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002131 sprintf((char *)winstr, PRINTF_HEX_LONG_U, (long_u)sender);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002132 apply_autocmds(EVENT_REMOTEREPLY, winstr, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 TRUE, curbuf);
2134 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 }
2136 return 1;
2137 }
2138
2139 return 0;
2140 }
2141
2142 else if (msg == WM_ACTIVATE && wParam == WA_ACTIVE)
2143 {
2144 /* When the message window is activated (brought to the foreground),
2145 * this actually applies to the text window. */
2146#ifndef FEAT_GUI
2147 GetConsoleHwnd(); /* get value of s_hwnd */
2148#endif
2149 if (s_hwnd != 0)
2150 {
2151 SetForegroundWindow(s_hwnd);
2152 return 0;
2153 }
2154 }
2155
2156 return DefWindowProc(hwnd, msg, wParam, lParam);
2157}
2158
2159/*
2160 * Initialise the message handling process. This involves creating a window
2161 * to handle messages - the window will not be visible.
2162 */
2163 void
2164serverInitMessaging(void)
2165{
2166 WNDCLASS wndclass;
2167 HINSTANCE s_hinst;
2168
2169 /* Clean up on exit */
2170 atexit(CleanUpMessaging);
2171
2172 /* Register a window class - we only really care
2173 * about the window procedure
2174 */
2175 s_hinst = (HINSTANCE)GetModuleHandle(0);
2176 wndclass.style = 0;
2177 wndclass.lpfnWndProc = Messaging_WndProc;
2178 wndclass.cbClsExtra = 0;
2179 wndclass.cbWndExtra = 0;
2180 wndclass.hInstance = s_hinst;
2181 wndclass.hIcon = NULL;
2182 wndclass.hCursor = NULL;
2183 wndclass.hbrBackground = NULL;
2184 wndclass.lpszMenuName = NULL;
2185 wndclass.lpszClassName = VIM_CLASSNAME;
2186 RegisterClass(&wndclass);
2187
2188 /* Create the message window. It will be hidden, so the details don't
2189 * matter. Don't use WS_OVERLAPPEDWINDOW, it will make a shortcut remove
2190 * focus from gvim. */
2191 message_window = CreateWindow(VIM_CLASSNAME, "",
2192 WS_POPUPWINDOW | WS_CAPTION,
2193 CW_USEDEFAULT, CW_USEDEFAULT,
2194 100, 100, NULL, NULL,
2195 s_hinst, NULL);
2196}
2197
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002198/* Used by serverSendToVim() to find an alternate server name. */
2199static char_u *altname_buf_ptr = NULL;
2200
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201/*
2202 * Get the title of the window "hwnd", which is the Vim server name, in
2203 * "name[namelen]" and return the length.
2204 * Returns zero if window "hwnd" is not a Vim server.
2205 */
2206 static int
2207getVimServerName(HWND hwnd, char *name, int namelen)
2208{
2209 int len;
2210 char buffer[VIM_CLASSNAME_LEN + 1];
2211
2212 /* Ignore windows which aren't Vim message windows */
2213 len = GetClassName(hwnd, buffer, sizeof(buffer));
2214 if (len != VIM_CLASSNAME_LEN || STRCMP(buffer, VIM_CLASSNAME) != 0)
2215 return 0;
2216
2217 /* Get the title of the window */
2218 return GetWindowText(hwnd, name, namelen);
2219}
2220
2221 static BOOL CALLBACK
2222enumWindowsGetServer(HWND hwnd, LPARAM lparam)
2223{
2224 struct server_id *id = (struct server_id *)lparam;
2225 char server[MAX_PATH];
2226
2227 /* Get the title of the window */
2228 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2229 return TRUE;
2230
2231 /* If this is the server we're looking for, return its HWND */
2232 if (STRICMP(server, id->name) == 0)
2233 {
2234 id->hwnd = hwnd;
2235 return FALSE;
2236 }
2237
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002238 /* If we are looking for an alternate server, remember this name. */
2239 if (altname_buf_ptr != NULL
2240 && STRNICMP(server, id->name, STRLEN(id->name)) == 0
2241 && vim_isdigit(server[STRLEN(id->name)]))
2242 {
2243 STRCPY(altname_buf_ptr, server);
2244 altname_buf_ptr = NULL; /* don't use another name */
2245 }
2246
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 /* Otherwise, keep looking */
2248 return TRUE;
2249}
2250
2251 static BOOL CALLBACK
2252enumWindowsGetNames(HWND hwnd, LPARAM lparam)
2253{
2254 garray_T *ga = (garray_T *)lparam;
2255 char server[MAX_PATH];
2256
2257 /* Get the title of the window */
2258 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2259 return TRUE;
2260
2261 /* Add the name to the list */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002262 ga_concat(ga, (char_u *)server);
2263 ga_concat(ga, (char_u *)"\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 return TRUE;
2265}
2266
Bram Moolenaarc0543e12018-10-07 20:35:12 +02002267struct enum_windows_s
2268{
2269 WNDENUMPROC lpEnumFunc;
2270 LPARAM lParam;
2271};
2272
2273 static BOOL CALLBACK
2274enum_windows_child(HWND hwnd, LPARAM lParam)
2275{
2276 struct enum_windows_s *ew = (struct enum_windows_s *)lParam;
2277
2278 return (ew->lpEnumFunc)(hwnd, ew->lParam);
2279}
2280
2281 static BOOL CALLBACK
2282enum_windows_toplevel(HWND hwnd, LPARAM lParam)
2283{
2284 struct enum_windows_s *ew = (struct enum_windows_s *)lParam;
2285
Bram Moolenaar95ba5c32018-10-07 22:47:07 +02002286 if ((ew->lpEnumFunc)(hwnd, ew->lParam))
2287 return TRUE;
Bram Moolenaarc0543e12018-10-07 20:35:12 +02002288 return EnumChildWindows(hwnd, enum_windows_child, lParam);
2289}
2290
2291/* Enumerate all windows including children. */
2292 static BOOL
2293enum_windows(WNDENUMPROC lpEnumFunc, LPARAM lParam)
2294{
2295 struct enum_windows_s ew;
2296
2297 ew.lpEnumFunc = lpEnumFunc;
2298 ew.lParam = lParam;
2299 return EnumWindows(enum_windows_toplevel, (LPARAM)&ew);
2300}
2301
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 static HWND
2303findServer(char_u *name)
2304{
2305 struct server_id id;
2306
2307 id.name = name;
2308 id.hwnd = 0;
2309
Bram Moolenaarc0543e12018-10-07 20:35:12 +02002310 enum_windows(enumWindowsGetServer, (LPARAM)(&id));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311
2312 return id.hwnd;
2313}
2314
2315 void
2316serverSetName(char_u *name)
2317{
2318 char_u *ok_name;
2319 HWND hwnd = 0;
2320 int i = 0;
2321 char_u *p;
2322
2323 /* Leave enough space for a 9-digit suffix to ensure uniqueness! */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002324 ok_name = alloc((unsigned)STRLEN(name) + 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325
2326 STRCPY(ok_name, name);
2327 p = ok_name + STRLEN(name);
2328
2329 for (;;)
2330 {
2331 /* This is inefficient - we're doing an EnumWindows loop for each
2332 * possible name. It would be better to grab all names in one go,
2333 * and scan the list each time...
2334 */
2335 hwnd = findServer(ok_name);
2336 if (hwnd == 0)
2337 break;
2338
2339 ++i;
2340 if (i >= 1000)
2341 break;
2342
2343 sprintf((char *)p, "%d", i);
2344 }
2345
2346 if (hwnd != 0)
2347 vim_free(ok_name);
2348 else
2349 {
2350 /* Remember the name */
2351 serverName = ok_name;
2352#ifdef FEAT_TITLE
2353 need_maketitle = TRUE; /* update Vim window title later */
2354#endif
2355
2356 /* Update the message window title */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002357 SetWindowText(message_window, (LPCSTR)ok_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358
2359#ifdef FEAT_EVAL
2360 /* Set the servername variable */
2361 set_vim_var_string(VV_SEND_SERVER, serverName, -1);
2362#endif
2363 }
2364}
2365
2366 char_u *
2367serverGetVimNames(void)
2368{
2369 garray_T ga;
2370
2371 ga_init2(&ga, 1, 100);
2372
Bram Moolenaarc0543e12018-10-07 20:35:12 +02002373 enum_windows(enumWindowsGetNames, (LPARAM)(&ga));
Bram Moolenaar269ec652004-07-29 08:43:53 +00002374 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375
2376 return ga.ga_data;
2377}
2378
2379 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002380serverSendReply(
2381 char_u *name, /* Where to send. */
2382 char_u *reply) /* What to send. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383{
2384 HWND target;
2385 COPYDATASTRUCT data;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002386 long_u n = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387
2388 /* The "name" argument is a magic cookie obtained from expand("<client>").
2389 * It should be of the form 0xXXXXX - i.e. a C hex literal, which is the
2390 * value of the client's message window HWND.
2391 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002392 sscanf((char *)name, SCANF_HEX_LONG_U, &n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 if (n == 0)
2394 return -1;
2395
2396 target = (HWND)n;
2397 if (!IsWindow(target))
2398 return -1;
2399
2400 data.dwData = COPYDATA_REPLY;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002401 data.cbData = (DWORD)STRLEN(reply) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 data.lpData = reply;
2403
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002404 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2406 (LPARAM)(&data)))
2407 return 0;
2408
2409 return -1;
2410}
2411
2412 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002413serverSendToVim(
2414 char_u *name, /* Where to send. */
2415 char_u *cmd, /* What to send. */
2416 char_u **result, /* Result of eval'ed expression */
2417 void *ptarget, /* HWND of server */
2418 int asExpr, /* Expression or keys? */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002419 int timeout, /* timeout in seconds or zero */
Bram Moolenaar05540972016-01-30 20:31:25 +01002420 int silent) /* don't complain about no server */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421{
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002422 HWND target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 COPYDATASTRUCT data;
2424 char_u *retval = NULL;
2425 int retcode = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002426 char_u altname_buf[MAX_PATH];
2427
Bram Moolenaar7416f3e2017-03-18 18:10:13 +01002428 /* Execute locally if no display or target is ourselves */
2429 if (serverName != NULL && STRICMP(name, serverName) == 0)
2430 return sendToLocalVim(cmd, asExpr, result);
2431
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002432 /* If the server name does not end in a digit then we look for an
2433 * alternate name. e.g. when "name" is GVIM the we may find GVIM2. */
2434 if (STRLEN(name) > 1 && !vim_isdigit(name[STRLEN(name) - 1]))
2435 altname_buf_ptr = altname_buf;
2436 altname_buf[0] = NUL;
2437 target = findServer(name);
2438 altname_buf_ptr = NULL;
2439 if (target == 0 && altname_buf[0] != NUL)
2440 /* Use another server name we found. */
2441 target = findServer(altname_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442
2443 if (target == 0)
2444 {
2445 if (!silent)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002446 semsg(_(e_noserver), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 return -1;
2448 }
2449
2450 if (ptarget)
2451 *(HWND *)ptarget = target;
2452
2453 data.dwData = asExpr ? COPYDATA_EXPR : COPYDATA_KEYS;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002454 data.cbData = (DWORD)STRLEN(cmd) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 data.lpData = cmd;
2456
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002457 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2459 (LPARAM)(&data)) == 0)
2460 return -1;
2461
2462 if (asExpr)
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002463 retval = serverGetReply(target, &retcode, TRUE, TRUE, timeout);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464
2465 if (result == NULL)
2466 vim_free(retval);
2467 else
2468 *result = retval; /* Caller assumes responsibility for freeing */
2469
2470 return retcode;
2471}
2472
2473/*
2474 * Bring the server to the foreground.
2475 */
2476 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002477serverForeground(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478{
2479 HWND target = findServer(name);
2480
2481 if (target != 0)
2482 SetForegroundWindow(target);
2483}
2484
2485/* Replies from server need to be stored until the client picks them up via
2486 * remote_read(). So we maintain a list of server-id/reply pairs.
2487 * Note that there could be multiple replies from one server pending if the
2488 * client is slow picking them up.
2489 * We just store the replies in a simple list. When we remove an entry, we
2490 * move list entries down to fill the gap.
2491 * The server ID is simply the HWND.
2492 */
2493typedef struct
2494{
2495 HWND server; /* server window */
2496 char_u *reply; /* reply string */
2497 int expr_result; /* 0 for REPLY, 1 for RESULT 2 for error */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002498} reply_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499
2500static garray_T reply_list = {0, 0, sizeof(reply_T), 5, 0};
2501
2502#define REPLY_ITEM(i) ((reply_T *)(reply_list.ga_data) + (i))
2503#define REPLY_COUNT (reply_list.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504
2505/* Flag which is used to wait for a reply */
2506static int reply_received = 0;
2507
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002508/*
2509 * Store a reply. "reply" must be allocated memory (or NULL).
2510 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 static int
2512save_reply(HWND server, char_u *reply, int expr)
2513{
2514 reply_T *rep;
2515
2516 if (ga_grow(&reply_list, 1) == FAIL)
2517 return FAIL;
2518
2519 rep = REPLY_ITEM(REPLY_COUNT);
2520 rep->server = server;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002521 rep->reply = reply;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 rep->expr_result = expr;
2523 if (rep->reply == NULL)
2524 return FAIL;
2525
2526 ++REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 reply_received = 1;
2528 return OK;
2529}
2530
2531/*
2532 * Get a reply from server "server".
2533 * When "expr_res" is non NULL, get the result of an expression, otherwise a
2534 * server2client() message.
2535 * When non NULL, point to return code. 0 => OK, -1 => ERROR
2536 * If "remove" is TRUE, consume the message, the caller must free it then.
2537 * if "wait" is TRUE block until a message arrives (or the server exits).
2538 */
2539 char_u *
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002540serverGetReply(HWND server, int *expr_res, int remove, int wait, int timeout)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541{
2542 int i;
2543 char_u *reply;
2544 reply_T *rep;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002545 int did_process = FALSE;
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002546 time_t start;
2547 time_t now;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548
2549 /* When waiting, loop until the message waiting for is received. */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002550 time(&start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 for (;;)
2552 {
2553 /* Reset this here, in case a message arrives while we are going
2554 * through the already received messages. */
2555 reply_received = 0;
2556
2557 for (i = 0; i < REPLY_COUNT; ++i)
2558 {
2559 rep = REPLY_ITEM(i);
2560 if (rep->server == server
2561 && ((rep->expr_result != 0) == (expr_res != NULL)))
2562 {
2563 /* Save the values we've found for later */
2564 reply = rep->reply;
2565 if (expr_res != NULL)
2566 *expr_res = rep->expr_result == 1 ? 0 : -1;
2567
2568 if (remove)
2569 {
2570 /* Move the rest of the list down to fill the gap */
2571 mch_memmove(rep, rep + 1,
2572 (REPLY_COUNT - i - 1) * sizeof(reply_T));
2573 --REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 }
2575
2576 /* Return the reply to the caller, who takes on responsibility
2577 * for freeing it if "remove" is TRUE. */
2578 return reply;
2579 }
2580 }
2581
2582 /* If we got here, we didn't find a reply. Return immediately if the
2583 * "wait" parameter isn't set. */
2584 if (!wait)
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002585 {
2586 /* Process pending messages once. Without this, looping on
2587 * remote_peek() would never get the reply. */
2588 if (!did_process)
2589 {
2590 did_process = TRUE;
2591 serverProcessPendingMessages();
2592 continue;
2593 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 break;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002595 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596
2597 /* We need to wait for a reply. Enter a message loop until the
2598 * "reply_received" flag gets set. */
2599
2600 /* Loop until we receive a reply */
2601 while (reply_received == 0)
2602 {
Bram Moolenaar42205552017-03-18 19:42:22 +01002603#ifdef FEAT_TIMERS
Bram Moolenaard23a8232018-02-10 18:45:26 +01002604 /* TODO: use the return value to decide how long to wait. */
Bram Moolenaar42205552017-03-18 19:42:22 +01002605 check_due_timer();
2606#endif
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002607 time(&now);
2608 if (timeout > 0 && (now - start) >= timeout)
2609 break;
2610
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 /* Wait for a SendMessage() call to us. This could be the reply
2612 * we are waiting for. Use a timeout of a second, to catch the
2613 * situation that the server died unexpectedly. */
2614 MsgWaitForMultipleObjects(0, NULL, TRUE, 1000, QS_ALLINPUT);
2615
2616 /* If the server has died, give up */
2617 if (!IsWindow(server))
2618 return NULL;
2619
2620 serverProcessPendingMessages();
2621 }
2622 }
2623
2624 return NULL;
2625}
2626
2627/*
2628 * Process any messages in the Windows message queue.
2629 */
2630 void
2631serverProcessPendingMessages(void)
2632{
2633 MSG msg;
2634
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002635 while (pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 {
2637 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002638 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 }
2640}
2641
2642#endif /* FEAT_CLIENTSERVER */
2643
2644#if defined(FEAT_GUI) || (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) \
2645 || defined(PROTO)
2646
2647struct charset_pair
2648{
2649 char *name;
2650 BYTE charset;
2651};
2652
2653static struct charset_pair
2654charset_pairs[] =
2655{
2656 {"ANSI", ANSI_CHARSET},
2657 {"CHINESEBIG5", CHINESEBIG5_CHARSET},
2658 {"DEFAULT", DEFAULT_CHARSET},
2659 {"HANGEUL", HANGEUL_CHARSET},
2660 {"OEM", OEM_CHARSET},
2661 {"SHIFTJIS", SHIFTJIS_CHARSET},
2662 {"SYMBOL", SYMBOL_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 {"ARABIC", ARABIC_CHARSET},
2664 {"BALTIC", BALTIC_CHARSET},
2665 {"EASTEUROPE", EASTEUROPE_CHARSET},
2666 {"GB2312", GB2312_CHARSET},
2667 {"GREEK", GREEK_CHARSET},
2668 {"HEBREW", HEBREW_CHARSET},
2669 {"JOHAB", JOHAB_CHARSET},
2670 {"MAC", MAC_CHARSET},
2671 {"RUSSIAN", RUSSIAN_CHARSET},
2672 {"THAI", THAI_CHARSET},
2673 {"TURKISH", TURKISH_CHARSET},
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002674#ifdef VIETNAMESE_CHARSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 {"VIETNAMESE", VIETNAMESE_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676#endif
2677 {NULL, 0}
2678};
2679
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002680struct quality_pair
2681{
2682 char *name;
2683 DWORD quality;
2684};
2685
2686static struct quality_pair
2687quality_pairs[] = {
2688#ifdef CLEARTYPE_QUALITY
2689 {"CLEARTYPE", CLEARTYPE_QUALITY},
2690#endif
2691#ifdef ANTIALIASED_QUALITY
2692 {"ANTIALIASED", ANTIALIASED_QUALITY},
2693#endif
Bram Moolenaar73a733e2016-05-11 21:05:05 +02002694#ifdef NONANTIALIASED_QUALITY
2695 {"NONANTIALIASED", NONANTIALIASED_QUALITY},
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002696#endif
2697#ifdef PROOF_QUALITY
2698 {"PROOF", PROOF_QUALITY},
2699#endif
Bram Moolenaar4c9ce052016-04-04 21:06:19 +02002700#ifdef DRAFT_QUALITY
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002701 {"DRAFT", DRAFT_QUALITY},
2702#endif
2703 {"DEFAULT", DEFAULT_QUALITY},
2704 {NULL, 0}
2705};
2706
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707/*
2708 * Convert a charset ID to a name.
2709 * Return NULL when not recognized.
2710 */
2711 char *
2712charset_id2name(int id)
2713{
2714 struct charset_pair *cp;
2715
2716 for (cp = charset_pairs; cp->name != NULL; ++cp)
2717 if ((BYTE)id == cp->charset)
2718 break;
2719 return cp->name;
2720}
2721
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002722/*
2723 * Convert a quality ID to a name.
2724 * Return NULL when not recognized.
2725 */
2726 char *
2727quality_id2name(DWORD id)
2728{
2729 struct quality_pair *qp;
2730
2731 for (qp = quality_pairs; qp->name != NULL; ++qp)
2732 if (id == qp->quality)
2733 break;
2734 return qp->name;
2735}
2736
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002737static const LOGFONTW s_lfDefault =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738{
2739 -12, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, DEFAULT_CHARSET,
2740 OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
2741 PROOF_QUALITY, FIXED_PITCH | FF_DONTCARE,
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002742 L"Fixedsys" /* see _ReadVimIni */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743};
2744
2745/* Initialise the "current height" to -12 (same as s_lfDefault) just
2746 * in case the user specifies a font in "guifont" with no size before a font
2747 * with an explicit size has been set. This defaults the size to this value
2748 * (-12 equates to roughly 9pt).
2749 */
2750int current_font_height = -12; /* also used in gui_w48.c */
2751
2752/* Convert a string representing a point size into pixels. The string should
2753 * be a positive decimal number, with an optional decimal point (eg, "12", or
2754 * "10.5"). The pixel value is returned, and a pointer to the next unconverted
2755 * character is stored in *end. The flag "vertical" says whether this
2756 * calculation is for a vertical (height) size or a horizontal (width) one.
2757 */
2758 static int
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002759points_to_pixels(WCHAR *str, WCHAR **end, int vertical, long_i pprinter_dc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760{
2761 int pixels;
2762 int points = 0;
2763 int divisor = 0;
2764 HWND hwnd = (HWND)0;
2765 HDC hdc;
2766 HDC printer_dc = (HDC)pprinter_dc;
2767
2768 while (*str != NUL)
2769 {
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002770 if (*str == L'.' && divisor == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 {
2772 /* Start keeping a divisor, for later */
2773 divisor = 1;
2774 }
2775 else
2776 {
2777 if (!VIM_ISDIGIT(*str))
2778 break;
2779
2780 points *= 10;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002781 points += *str - L'0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 divisor *= 10;
2783 }
2784 ++str;
2785 }
2786
2787 if (divisor == 0)
2788 divisor = 1;
2789
2790 if (printer_dc == NULL)
2791 {
2792 hwnd = GetDesktopWindow();
2793 hdc = GetWindowDC(hwnd);
2794 }
2795 else
2796 hdc = printer_dc;
2797
2798 pixels = MulDiv(points,
2799 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX),
2800 72 * divisor);
2801
2802 if (printer_dc == NULL)
2803 ReleaseDC(hwnd, hdc);
2804
2805 *end = str;
2806 return pixels;
2807}
2808
2809 static int CALLBACK
2810font_enumproc(
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002811 ENUMLOGFONTW *elf,
2812 NEWTEXTMETRICW *ntm UNUSED,
2813 DWORD type UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 LPARAM lparam)
2815{
2816 /* Return value:
2817 * 0 = terminate now (monospace & ANSI)
2818 * 1 = continue, still no luck...
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002819 * 2 = continue, but we have an acceptable LOGFONTW
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 * (monospace, not ANSI)
2821 * We use these values, as EnumFontFamilies returns 1 if the
2822 * callback function is never called. So, we check the return as
2823 * 0 = perfect, 2 = OK, 1 = no good...
2824 * It's not pretty, but it works!
2825 */
2826
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002827 LOGFONTW *lf = (LOGFONTW *)(lparam);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828
2829#ifndef FEAT_PROPORTIONAL_FONTS
2830 /* Ignore non-monospace fonts without further ado */
2831 if ((ntm->tmPitchAndFamily & 1) != 0)
2832 return 1;
2833#endif
2834
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002835 /* Remember this LOGFONTW as a "possible" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 *lf = elf->elfLogFont;
2837
2838 /* Terminate the scan as soon as we find an ANSI font */
2839 if (lf->lfCharSet == ANSI_CHARSET
2840 || lf->lfCharSet == OEM_CHARSET
2841 || lf->lfCharSet == DEFAULT_CHARSET)
2842 return 0;
2843
2844 /* Continue the scan - we have a non-ANSI font */
2845 return 2;
2846}
2847
2848 static int
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002849init_logfont(LOGFONTW *lf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850{
2851 int n;
2852 HWND hwnd = GetDesktopWindow();
2853 HDC hdc = GetWindowDC(hwnd);
2854
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002855 n = EnumFontFamiliesW(hdc,
2856 lf->lfFaceName,
2857 (FONTENUMPROCW)font_enumproc,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 (LPARAM)lf);
2859
2860 ReleaseDC(hwnd, hdc);
2861
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002862 /* If we couldn't find a usable font, return failure */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863 if (n == 1)
2864 return FAIL;
2865
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002866 /* Tidy up the rest of the LOGFONTW structure. We set to a basic
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 * font - get_logfont() sets bold, italic, etc based on the user's
2868 * input.
2869 */
2870 lf->lfHeight = current_font_height;
2871 lf->lfWidth = 0;
2872 lf->lfItalic = FALSE;
2873 lf->lfUnderline = FALSE;
2874 lf->lfStrikeOut = FALSE;
2875 lf->lfWeight = FW_NORMAL;
2876
2877 /* Return success */
2878 return OK;
2879}
2880
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002881/*
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002882 * Compare a UTF-16 string and an ASCII string literally.
2883 * Only works all the code points are inside ASCII range.
2884 */
2885 static int
2886utf16ascncmp(const WCHAR *w, const char *p, size_t n)
2887{
2888 size_t i;
2889
2890 for (i = 0; i < n; i++)
2891 {
2892 if (w[i] == 0 || w[i] != p[i])
2893 return w[i] - p[i];
2894 }
2895 return 0;
2896}
2897
2898/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002899 * Get font info from "name" into logfont "lf".
2900 * Return OK for a valid name, FAIL otherwise.
2901 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 int
2903get_logfont(
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002904 LOGFONTW *lf,
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002905 char_u *name,
2906 HDC printer_dc,
2907 int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908{
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002909 WCHAR *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 int i;
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002911 int ret = FAIL;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002912 static LOGFONTW *lastlf = NULL;
2913 WCHAR *wname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914
2915 *lf = s_lfDefault;
2916 if (name == NULL)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002917 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002919 wname = enc_to_utf16(name, NULL);
2920 if (wname == NULL)
2921 return FAIL;
2922
2923 if (wcscmp(wname, L"*") == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01002925#if defined(FEAT_GUI_MSWIN)
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002926 CHOOSEFONTW cf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 /* if name is "*", bring up std font dialog: */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02002928 vim_memset(&cf, 0, sizeof(cf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 cf.lStructSize = sizeof(cf);
2930 cf.hwndOwner = s_hwnd;
2931 cf.Flags = CF_SCREENFONTS | CF_FIXEDPITCHONLY | CF_INITTOLOGFONTSTRUCT;
2932 if (lastlf != NULL)
2933 *lf = *lastlf;
2934 cf.lpLogFont = lf;
2935 cf.nFontType = 0 ; //REGULAR_FONTTYPE;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002936 if (ChooseFontW(&cf))
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002937 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938#endif
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002939 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 }
2941
2942 /*
2943 * Split name up, it could be <name>:h<height>:w<width> etc.
2944 */
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002945 for (p = wname; *p && *p != L':'; p++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 {
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002947 if (p - wname + 1 >= LF_FACESIZE)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002948 goto theend; /* Name too long */
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002949 lf->lfFaceName[p - wname] = *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 }
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002951 if (p != wname)
2952 lf->lfFaceName[p - wname] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953
2954 /* First set defaults */
2955 lf->lfHeight = -12;
2956 lf->lfWidth = 0;
2957 lf->lfWeight = FW_NORMAL;
2958 lf->lfItalic = FALSE;
2959 lf->lfUnderline = FALSE;
2960 lf->lfStrikeOut = FALSE;
2961
2962 /*
2963 * If the font can't be found, try replacing '_' by ' '.
2964 */
2965 if (init_logfont(lf) == FAIL)
2966 {
2967 int did_replace = FALSE;
2968
2969 for (i = 0; lf->lfFaceName[i]; ++i)
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002970 if (lf->lfFaceName[i] == L'_')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 {
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002972 lf->lfFaceName[i] = L' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 did_replace = TRUE;
2974 }
2975 if (!did_replace || init_logfont(lf) == FAIL)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002976 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 }
2978
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002979 while (*p == L':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 p++;
2981
2982 /* Set the values found after ':' */
2983 while (*p)
2984 {
2985 switch (*p++)
2986 {
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002987 case L'h':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002988 lf->lfHeight = - points_to_pixels(p, &p, TRUE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 break;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002990 case L'w':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002991 lf->lfWidth = points_to_pixels(p, &p, FALSE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 break;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002993 case L'b':
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 lf->lfWeight = FW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 break;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002996 case L'i':
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 lf->lfItalic = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 break;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01002999 case L'u':
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 lf->lfUnderline = TRUE;
3001 break;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01003002 case L's':
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 lf->lfStrikeOut = TRUE;
3004 break;
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01003005 case L'c':
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006 {
3007 struct charset_pair *cp;
3008
3009 for (cp = charset_pairs; cp->name != NULL; ++cp)
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01003010 if (utf16ascncmp(p, cp->name, strlen(cp->name)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 {
3012 lf->lfCharSet = cp->charset;
3013 p += strlen(cp->name);
3014 break;
3015 }
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003016 if (cp->name == NULL && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 {
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01003018 char_u *s = utf16_to_enc(p, NULL);
3019 semsg(_("E244: Illegal charset name \"%s\" in font name \"%s\""), s, name);
3020 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 break;
3022 }
3023 break;
3024 }
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01003025 case L'q':
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02003026 {
3027 struct quality_pair *qp;
3028
3029 for (qp = quality_pairs; qp->name != NULL; ++qp)
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01003030 if (utf16ascncmp(p, qp->name, strlen(qp->name)) == 0)
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02003031 {
3032 lf->lfQuality = qp->quality;
3033 p += strlen(qp->name);
3034 break;
3035 }
3036 if (qp->name == NULL && verbose)
3037 {
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01003038 char_u *s = utf16_to_enc(p, NULL);
3039 semsg(_("E244: Illegal quality name \"%s\" in font name \"%s\""), s, name);
3040 vim_free(s);
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02003041 break;
3042 }
3043 break;
3044 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 default:
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003046 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003047 semsg(_("E245: Illegal char '%c' in font name \"%s\""), p[-1], name);
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003048 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 }
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01003050 while (*p == L':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 p++;
3052 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003053 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 /* ron: init lastlf */
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003057 if (ret == OK && printer_dc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 {
3059 vim_free(lastlf);
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01003060 lastlf = (LOGFONTW *)alloc(sizeof(LOGFONTW));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 if (lastlf != NULL)
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01003062 mch_memmove(lastlf, lf, sizeof(LOGFONTW));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 }
Bram Moolenaar433a5eb2019-03-30 16:24:16 +01003064 vim_free(wname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003066 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067}
3068
3069#endif /* defined(FEAT_GUI) || defined(FEAT_PRINTER) */
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003070
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003071#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003072/*
3073 * Initialize the Winsock dll.
3074 */
3075 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003076channel_init_winsock(void)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003077{
3078 WSADATA wsaData;
3079 int wsaerr;
3080
3081 if (WSInitialized)
3082 return;
3083
3084 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
3085 if (wsaerr == 0)
3086 WSInitialized = TRUE;
3087}
3088#endif