Mercurial > vim
annotate src/os_mswin.c @ 12555:55257baece9a v8.0.1156
patch 8.0.1156: trouble from removing one -W argument from Perl CFLAGS
commit https://github.com/vim/vim/commit/1ec96c926974208bd47710384c8202c47d0752d0
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Sep 27 21:42:08 2017 +0200
patch 8.0.1156: trouble from removing one -W argument from Perl CFLAGS
Problem: Removing one -W argument from Perl CFLAGS may cause trouble.
Solution: Remove all -W flags. (Christian Brabandt)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 27 Sep 2017 21:45:04 +0200 |
parents | ee070a5eb3a0 |
children | ac42c4b11dbc |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
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 * | |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
13 * Routines for Win32. |
7 | 14 */ |
15 | |
16 #include "vim.h" | |
17 | |
18 #include <sys/types.h> | |
19 #include <signal.h> | |
20 #include <limits.h> | |
3927 | 21 #ifndef PROTO |
22 # include <process.h> | |
23 #endif | |
7 | 24 |
25 #undef chdir | |
26 #ifdef __GNUC__ | |
27 # ifndef __MINGW32__ | |
28 # include <dirent.h> | |
29 # endif | |
30 #else | |
31 # include <direct.h> | |
32 #endif | |
33 | |
3927 | 34 #ifndef PROTO |
35 # if defined(FEAT_TITLE) && !defined(FEAT_GUI_W32) | |
36 # include <shellapi.h> | |
37 # endif | |
38 | |
39 # if defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT) | |
40 # include <dlgs.h> | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
41 # include <winspool.h> |
3927 | 42 # include <commdlg.h> |
10440
f54e4c691de4
commit https://github.com/vim/vim/commit/b04a98f6c3cca14bf055934b0a793f4dc376858b
Christian Brabandt <cb@256bit.org>
parents:
10355
diff
changeset
|
43 # endif |
7 | 44 |
3927 | 45 #endif /* PROTO */ |
7 | 46 |
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 | |
82 typedef int BOOL; | |
83 typedef int CALLBACK; | |
84 typedef int COLORREF; | |
85 typedef int CONSOLE_CURSOR_INFO; | |
86 typedef int COORD; | |
87 typedef int DWORD; | |
88 typedef int ENUMLOGFONT; | |
89 typedef int HANDLE; | |
90 typedef int HDC; | |
91 typedef int HFONT; | |
92 typedef int HICON; | |
93 typedef int HWND; | |
94 typedef int INPUT_RECORD; | |
95 typedef int KEY_EVENT_RECORD; | |
96 typedef int LOGFONT; | |
97 typedef int LPARAM; | |
98 typedef int LPBOOL; | |
99 typedef int LPCSTR; | |
100 typedef int LPCWSTR; | |
101 typedef int LPSTR; | |
102 typedef int LPTSTR; | |
103 typedef int LPWSTR; | |
104 typedef int LRESULT; | |
105 typedef int MOUSE_EVENT_RECORD; | |
106 typedef int NEWTEXTMETRIC; | |
107 typedef int PACL; | |
108 typedef int PRINTDLG; | |
109 typedef int PSECURITY_DESCRIPTOR; | |
110 typedef int PSID; | |
111 typedef int SECURITY_INFORMATION; | |
112 typedef int SHORT; | |
113 typedef int SMALL_RECT; | |
114 typedef int TEXTMETRIC; | |
115 typedef int UINT; | |
116 typedef int WCHAR; | |
117 typedef int WORD; | |
118 typedef int WPARAM; | |
119 typedef void VOID; | |
120 #endif | |
121 | |
122 /* Record all output and all keyboard & mouse input */ | |
123 /* #define MCH_WRITE_DUMP */ | |
124 | |
125 #ifdef MCH_WRITE_DUMP | |
126 FILE* fdDump = NULL; | |
127 #endif | |
128 | |
129 #ifndef FEAT_GUI_MSWIN | |
130 extern char g_szOrigTitle[]; | |
131 #endif | |
132 | |
133 #ifdef FEAT_GUI | |
134 extern HWND s_hwnd; | |
135 #else | |
136 static HWND s_hwnd = 0; /* console window handle, set by GetConsoleHwnd() */ | |
137 #endif | |
138 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
139 #ifdef FEAT_JOB_CHANNEL |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
140 int WSInitialized = FALSE; /* WinSock is initialized */ |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
141 #endif |
7 | 142 |
143 /* Don't generate prototypes here, because some systems do have these | |
144 * functions. */ | |
145 #if defined(__GNUC__) && !defined(PROTO) | |
146 # ifndef __MINGW32__ | |
147 int _stricoll(char *a, char *b) | |
148 { | |
149 // the ANSI-ish correct way is to use strxfrm(): | |
150 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32 | |
151 strxfrm(a_buff, a, 512); | |
152 strxfrm(b_buff, b, 512); | |
153 return strcoll(a_buff, b_buff); | |
154 } | |
155 | |
156 char * _fullpath(char *buf, char *fname, int len) | |
157 { | |
158 LPTSTR toss; | |
159 | |
160 return (char *)GetFullPathName(fname, len, buf, &toss); | |
161 } | |
162 # endif | |
163 | |
4238 | 164 # if !defined(__MINGW32__) || (__GNUC__ < 4) |
7 | 165 int _chdrive(int drive) |
166 { | |
167 char temp [3] = "-:"; | |
168 temp[0] = drive + 'A' - 1; | |
169 return !SetCurrentDirectory(temp); | |
170 } | |
4238 | 171 # endif |
7 | 172 #else |
173 # ifdef __BORLANDC__ | |
174 /* being a more ANSI compliant compiler, BorlandC doesn't define _stricoll: | |
175 * but it does in BC 5.02! */ | |
176 # if __BORLANDC__ < 0x502 | |
177 int _stricoll(char *a, char *b) | |
178 { | |
179 # if 1 | |
180 // this is fast but not correct: | |
181 return stricmp(a, b); | |
182 # else | |
183 // the ANSI-ish correct way is to use strxfrm(): | |
184 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32 | |
185 strxfrm(a_buff, a, 512); | |
186 strxfrm(b_buff, b, 512); | |
187 return strcoll(a_buff, b_buff); | |
188 # endif | |
189 } | |
190 # endif | |
191 # endif | |
192 #endif | |
193 | |
194 | |
195 #if defined(FEAT_GUI_MSWIN) || defined(PROTO) | |
196 /* | |
197 * GUI version of mch_exit(). | |
198 * Shut down and exit with status `r' | |
199 * Careful: mch_exit() may be called before mch_init()! | |
200 */ | |
201 void | |
202 mch_exit(int r) | |
203 { | |
10835
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10783
diff
changeset
|
204 exiting = TRUE; |
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10783
diff
changeset
|
205 |
7 | 206 display_errors(); |
207 | |
208 ml_close_all(TRUE); /* remove all memfiles */ | |
209 | |
210 # ifdef FEAT_OLE | |
211 UninitOLE(); | |
212 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
213 # ifdef FEAT_JOB_CHANNEL |
7 | 214 if (WSInitialized) |
215 { | |
216 WSInitialized = FALSE; | |
217 WSACleanup(); | |
218 } | |
219 # endif | |
220 #ifdef DYNAMIC_GETTEXT | |
221 dyn_libintl_end(); | |
222 #endif | |
223 | |
224 if (gui.in_use) | |
225 gui_exit(r); | |
1071 | 226 |
227 #ifdef EXITFREE | |
228 free_all_mem(); | |
229 #endif | |
230 | |
7 | 231 exit(r); |
232 } | |
233 | |
234 #endif /* FEAT_GUI_MSWIN */ | |
235 | |
236 | |
237 /* | |
238 * Init the tables for toupper() and tolower(). | |
239 */ | |
240 void | |
241 mch_early_init(void) | |
242 { | |
243 int i; | |
244 | |
245 PlatformId(); | |
246 | |
247 /* Init the tables for toupper() and tolower() */ | |
248 for (i = 0; i < 256; ++i) | |
249 toupper_tab[i] = tolower_tab[i] = i; | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
250 CharUpperBuff((LPSTR)toupper_tab, 256); |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
251 CharLowerBuff((LPSTR)tolower_tab, 256); |
7 | 252 } |
253 | |
254 | |
255 /* | |
256 * Return TRUE if the input comes from a terminal, FALSE otherwise. | |
257 */ | |
258 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
259 mch_input_isatty(void) |
7 | 260 { |
261 #ifdef FEAT_GUI_MSWIN | |
262 return OK; /* GUI always has a tty */ | |
263 #else | |
264 if (isatty(read_cmd_fd)) | |
265 return TRUE; | |
266 return FALSE; | |
267 #endif | |
268 } | |
269 | |
270 #ifdef FEAT_TITLE | |
271 /* | |
272 * mch_settitle(): set titlebar of our window | |
273 */ | |
274 void | |
275 mch_settitle( | |
276 char_u *title, | |
277 char_u *icon) | |
278 { | |
279 # ifdef FEAT_GUI_MSWIN | |
280 gui_mch_settitle(title, icon); | |
281 # else | |
282 if (title != NULL) | |
26 | 283 { |
284 # ifdef FEAT_MBYTE | |
285 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
286 { | |
287 /* Convert the title from 'encoding' to the active codepage. */ | |
1752 | 288 WCHAR *wp = enc_to_utf16(title, NULL); |
26 | 289 |
290 if (wp != NULL) | |
291 { | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
292 SetConsoleTitleW(wp); |
26 | 293 vim_free(wp); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
294 return; |
26 | 295 } |
296 } | |
297 # endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
298 SetConsoleTitle((LPCSTR)title); |
26 | 299 } |
7 | 300 # endif |
301 } | |
302 | |
303 | |
304 /* | |
305 * Restore the window/icon title. | |
306 * which is one of: | |
307 * 1: Just restore title | |
308 * 2: Just restore icon (which we don't have) | |
309 * 3: Restore title and icon (which we don't have) | |
310 */ | |
311 void | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
312 mch_restore_title(int which UNUSED) |
7 | 313 { |
314 #ifndef FEAT_GUI_MSWIN | |
6290 | 315 SetConsoleTitle(g_szOrigTitle); |
7 | 316 #endif |
317 } | |
318 | |
319 | |
320 /* | |
321 * Return TRUE if we can restore the title (we can) | |
322 */ | |
323 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
324 mch_can_restore_title(void) |
7 | 325 { |
326 return TRUE; | |
327 } | |
328 | |
329 | |
330 /* | |
331 * Return TRUE if we can restore the icon title (we can't) | |
332 */ | |
333 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
334 mch_can_restore_icon(void) |
7 | 335 { |
336 return FALSE; | |
337 } | |
338 #endif /* FEAT_TITLE */ | |
339 | |
340 | |
341 /* | |
39 | 342 * Get absolute file name into buffer "buf" of length "len" bytes, |
343 * turning all '/'s into '\\'s and getting the correct case of each component | |
344 * of the file name. Append a (back)slash to a directory name. | |
7 | 345 * When 'shellslash' set do it the other way around. |
346 * Return OK or FAIL. | |
347 */ | |
348 int | |
349 mch_FullName( | |
350 char_u *fname, | |
351 char_u *buf, | |
352 int len, | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
353 int force UNUSED) |
7 | 354 { |
355 int nResult = FAIL; | |
356 | |
357 #ifdef __BORLANDC__ | |
358 if (*fname == NUL) /* Borland behaves badly here - make it consistent */ | |
359 nResult = mch_dirname(buf, len); | |
360 else | |
361 #endif | |
362 { | |
179 | 363 #ifdef FEAT_MBYTE |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
364 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
39 | 365 { |
366 WCHAR *wname; | |
367 WCHAR wbuf[MAX_PATH]; | |
368 char_u *cname = NULL; | |
369 | |
370 /* Use the wide function: | |
371 * - convert the fname from 'encoding' to UCS2. | |
372 * - invoke _wfullpath() | |
373 * - convert the result from UCS2 to 'encoding'. | |
374 */ | |
1752 | 375 wname = enc_to_utf16(fname, NULL); |
6347 | 376 if (wname != NULL && _wfullpath(wbuf, wname, MAX_PATH) != NULL) |
39 | 377 { |
1752 | 378 cname = utf16_to_enc((short_u *)wbuf, NULL); |
39 | 379 if (cname != NULL) |
380 { | |
417 | 381 vim_strncpy(buf, cname, len - 1); |
39 | 382 nResult = OK; |
383 } | |
384 } | |
385 vim_free(wname); | |
386 vim_free(cname); | |
387 } | |
388 if (nResult == FAIL) /* fall back to non-wide function */ | |
7 | 389 #endif |
39 | 390 { |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
391 if (_fullpath((char *)buf, (const char *)fname, len - 1) == NULL) |
39 | 392 { |
417 | 393 /* failed, use relative path name */ |
394 vim_strncpy(buf, fname, len - 1); | |
39 | 395 } |
396 else | |
397 nResult = OK; | |
398 } | |
7 | 399 } |
400 | |
401 #ifdef USE_FNAME_CASE | |
402 fname_case(buf, len); | |
39 | 403 #else |
404 slash_adjust(buf); | |
7 | 405 #endif |
406 | |
407 return nResult; | |
408 } | |
409 | |
410 | |
411 /* | |
412 * Return TRUE if "fname" does not depend on the current directory. | |
413 */ | |
414 int | |
415 mch_isFullName(char_u *fname) | |
416 { | |
5320 | 417 #ifdef FEAT_MBYTE |
418 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which | |
419 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is | |
420 * UTF-8. */ | |
421 char szName[_MAX_PATH * 3 + 1]; | |
422 #else | |
7 | 423 char szName[_MAX_PATH + 1]; |
5320 | 424 #endif |
7 | 425 |
426 /* A name like "d:/foo" and "//server/share" is absolute */ | |
427 if ((fname[0] && fname[1] == ':' && (fname[2] == '/' || fname[2] == '\\')) | |
428 || (fname[0] == fname[1] && (fname[0] == '/' || fname[0] == '\\'))) | |
429 return TRUE; | |
430 | |
431 /* A name that can't be made absolute probably isn't absolute. */ | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
432 if (mch_FullName(fname, (char_u *)szName, sizeof(szName) - 1, FALSE) == FAIL) |
7 | 433 return FALSE; |
434 | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
435 return pathcmp((const char *)fname, (const char *)szName, -1) == 0; |
7 | 436 } |
437 | |
438 /* | |
439 * Replace all slashes by backslashes. | |
440 * This used to be the other way around, but MS-DOS sometimes has problems | |
441 * with slashes (e.g. in a command name). We can't have mixed slashes and | |
442 * backslashes, because comparing file names will not work correctly. The | |
443 * commands that use a file name should try to avoid the need to type a | |
444 * backslash twice. | |
445 * When 'shellslash' set do it the other way around. | |
7170
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
6347
diff
changeset
|
446 * When the path looks like a URL leave it unmodified. |
7 | 447 */ |
448 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
449 slash_adjust(char_u *p) |
7 | 450 { |
7170
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
6347
diff
changeset
|
451 if (path_with_url(p)) |
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
6347
diff
changeset
|
452 return; |
11991
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
453 |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
454 if (*p == '`') |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
455 { |
12015
7e704d75a882
patch 8.0.0888: compiler warnings with 64 bit build
Christian Brabandt <cb@256bit.org>
parents:
11991
diff
changeset
|
456 size_t len = STRLEN(p); |
7e704d75a882
patch 8.0.0888: compiler warnings with 64 bit build
Christian Brabandt <cb@256bit.org>
parents:
11991
diff
changeset
|
457 |
11991
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
458 /* don't replace backslash in backtick quoted strings */ |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
459 if (len > 2 && *(p + len - 1) == '`') |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
460 return; |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
461 } |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
462 |
434 | 463 while (*p) |
464 { | |
465 if (*p == psepcN) | |
466 *p = psepc; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
467 MB_PTR_ADV(p); |
434 | 468 } |
7 | 469 } |
470 | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
471 /* Use 64-bit stat functions if available. */ |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
472 #ifdef HAVE_STAT64 |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
473 # undef stat |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
474 # undef _stat |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
475 # undef _wstat |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
476 # undef _fstat |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
477 # define stat _stat64 |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
478 # define _stat _stat64 |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
479 # define _wstat _wstat64 |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
480 # define _fstat _fstat64 |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
481 #endif |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
482 |
5594 | 483 #if (defined(_MSC_VER) && (_MSC_VER >= 1300)) || defined(__MINGW32__) |
5386 | 484 # define OPEN_OH_ARGTYPE intptr_t |
485 #else | |
486 # define OPEN_OH_ARGTYPE long | |
487 #endif | |
488 | |
5376 | 489 static int |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
490 stat_symlink_aware(const char *name, stat_T *stp) |
5376 | 491 { |
7681
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
492 #if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__) |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
493 /* Work around for VC12 or earlier (and MinGW). stat() can't handle |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
494 * symlinks properly. |
5376 | 495 * VC9 or earlier: stat() doesn't support a symlink at all. It retrieves |
496 * status of a symlink itself. | |
497 * VC10: stat() supports a symlink to a normal file, but it doesn't support | |
7681
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
498 * a symlink to a directory (always returns an error). |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
499 * VC11 and VC12: stat() doesn't return an error for a symlink to a |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
500 * directory, but it doesn't set S_IFDIR flag. |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
501 * MinGW: Same as VC9. */ |
5376 | 502 WIN32_FIND_DATA findData; |
503 HANDLE hFind, h; | |
504 DWORD attr = 0; | |
505 BOOL is_symlink = FALSE; | |
506 | |
507 hFind = FindFirstFile(name, &findData); | |
508 if (hFind != INVALID_HANDLE_VALUE) | |
509 { | |
510 attr = findData.dwFileAttributes; | |
511 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT) | |
512 && (findData.dwReserved0 == IO_REPARSE_TAG_SYMLINK)) | |
513 is_symlink = TRUE; | |
514 FindClose(hFind); | |
515 } | |
516 if (is_symlink) | |
517 { | |
518 h = CreateFile(name, FILE_READ_ATTRIBUTES, | |
519 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, | |
520 OPEN_EXISTING, | |
521 (attr & FILE_ATTRIBUTE_DIRECTORY) | |
522 ? FILE_FLAG_BACKUP_SEMANTICS : 0, | |
523 NULL); | |
524 if (h != INVALID_HANDLE_VALUE) | |
525 { | |
526 int fd, n; | |
527 | |
5386 | 528 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY); |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
529 n = _fstat(fd, (struct _stat *)stp); |
7681
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
530 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY)) |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
531 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR; |
5376 | 532 _close(fd); |
533 return n; | |
534 } | |
535 } | |
536 #endif | |
537 return stat(name, stp); | |
538 } | |
539 | |
540 #ifdef FEAT_MBYTE | |
541 static int | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
542 wstat_symlink_aware(const WCHAR *name, stat_T *stp) |
5376 | 543 { |
7681
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
544 # if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__) |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
545 /* Work around for VC12 or earlier (and MinGW). _wstat() can't handle |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
546 * symlinks properly. |
5376 | 547 * VC9 or earlier: _wstat() doesn't support a symlink at all. It retrieves |
548 * status of a symlink itself. | |
549 * VC10: _wstat() supports a symlink to a normal file, but it doesn't | |
7681
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
550 * support a symlink to a directory (always returns an error). |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
551 * VC11 and VC12: _wstat() doesn't return an error for a symlink to a |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
552 * directory, but it doesn't set S_IFDIR flag. |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
553 * MinGW: Same as VC9. */ |
5376 | 554 int n; |
555 BOOL is_symlink = FALSE; | |
556 HANDLE hFind, h; | |
557 DWORD attr = 0; | |
558 WIN32_FIND_DATAW findDataW; | |
559 | |
560 hFind = FindFirstFileW(name, &findDataW); | |
561 if (hFind != INVALID_HANDLE_VALUE) | |
562 { | |
563 attr = findDataW.dwFileAttributes; | |
564 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT) | |
565 && (findDataW.dwReserved0 == IO_REPARSE_TAG_SYMLINK)) | |
566 is_symlink = TRUE; | |
567 FindClose(hFind); | |
568 } | |
569 if (is_symlink) | |
570 { | |
571 h = CreateFileW(name, FILE_READ_ATTRIBUTES, | |
572 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, | |
573 OPEN_EXISTING, | |
574 (attr & FILE_ATTRIBUTE_DIRECTORY) | |
575 ? FILE_FLAG_BACKUP_SEMANTICS : 0, | |
576 NULL); | |
577 if (h != INVALID_HANDLE_VALUE) | |
578 { | |
579 int fd; | |
580 | |
5386 | 581 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY); |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
582 n = _fstat(fd, (struct _stat *)stp); |
7681
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
583 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY)) |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
584 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR; |
5376 | 585 _close(fd); |
586 return n; | |
587 } | |
588 } | |
589 # endif | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
590 return _wstat(name, (struct _stat *)stp); |
5376 | 591 } |
592 #endif | |
7 | 593 |
594 /* | |
595 * stat() can't handle a trailing '/' or '\', remove it first. | |
596 */ | |
597 int | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
598 vim_stat(const char *name, stat_T *stp) |
7 | 599 { |
5320 | 600 #ifdef FEAT_MBYTE |
601 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which | |
602 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is | |
603 * UTF-8. */ | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
604 char_u buf[_MAX_PATH * 3 + 1]; |
5320 | 605 #else |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
606 char_u buf[_MAX_PATH + 1]; |
5320 | 607 #endif |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
608 char_u *p; |
7 | 609 |
5320 | 610 vim_strncpy((char_u *)buf, (char_u *)name, sizeof(buf) - 1); |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
611 p = buf + STRLEN(buf); |
7 | 612 if (p > buf) |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
613 MB_PTR_BACK(buf, p); |
5578 | 614 |
615 /* Remove trailing '\\' except root path. */ | |
7 | 616 if (p > buf && (*p == '\\' || *p == '/') && p[-1] != ':') |
617 *p = NUL; | |
5578 | 618 |
619 if ((buf[0] == '\\' && buf[1] == '\\') || (buf[0] == '/' && buf[1] == '/')) | |
620 { | |
621 /* UNC root path must be followed by '\\'. */ | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
622 p = vim_strpbrk(buf + 2, (char_u *)"\\/"); |
5578 | 623 if (p != NULL) |
624 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
625 p = vim_strpbrk(p + 1, (char_u *)"\\/"); |
5578 | 626 if (p == NULL) |
627 STRCAT(buf, "\\"); | |
628 } | |
629 } | |
7 | 630 #ifdef FEAT_MBYTE |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
631 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
7 | 632 { |
1752 | 633 WCHAR *wp = enc_to_utf16(buf, NULL); |
7 | 634 int n; |
635 | |
636 if (wp != NULL) | |
637 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
638 n = wstat_symlink_aware(wp, stp); |
7 | 639 vim_free(wp); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
640 return n; |
7 | 641 } |
642 } | |
643 #endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
644 return stat_symlink_aware((char *)buf, stp); |
7 | 645 } |
646 | |
647 #if defined(FEAT_GUI_MSWIN) || defined(PROTO) | |
648 void | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
649 mch_settmode(int tmode UNUSED) |
7 | 650 { |
651 /* nothing to do */ | |
652 } | |
653 | |
654 int | |
655 mch_get_shellsize(void) | |
656 { | |
657 /* never used */ | |
658 return OK; | |
659 } | |
660 | |
661 void | |
662 mch_set_shellsize(void) | |
663 { | |
664 /* never used */ | |
665 } | |
666 | |
667 /* | |
668 * Rows and/or Columns has changed. | |
669 */ | |
670 void | |
671 mch_new_shellsize(void) | |
672 { | |
673 /* never used */ | |
674 } | |
675 | |
676 #endif | |
677 | |
678 /* | |
679 * We have no job control, so fake it by starting a new shell. | |
680 */ | |
681 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
682 mch_suspend(void) |
7 | 683 { |
684 suspend_shell(); | |
685 } | |
686 | |
687 #if defined(USE_MCH_ERRMSG) || defined(PROTO) | |
688 | |
689 #ifdef display_errors | |
690 # undef display_errors | |
691 #endif | |
692 | |
693 /* | |
694 * Display the saved error message(s). | |
695 */ | |
696 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
697 display_errors(void) |
7 | 698 { |
699 char *p; | |
700 | |
701 if (error_ga.ga_data != NULL) | |
702 { | |
703 /* avoid putting up a message box with blanks only */ | |
704 for (p = (char *)error_ga.ga_data; *p; ++p) | |
705 if (!isspace(*p)) | |
706 { | |
802 | 707 (void)gui_mch_dialog( |
708 #ifdef FEAT_GUI | |
709 gui.starting ? VIM_INFO : | |
710 #endif | |
711 VIM_ERROR, | |
712 #ifdef FEAT_GUI | |
713 gui.starting ? (char_u *)_("Message") : | |
714 #endif | |
715 (char_u *)_("Error"), | |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
716 (char_u *)p, (char_u *)_("&Ok"), |
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
717 1, NULL, FALSE); |
7 | 718 break; |
719 } | |
720 ga_clear(&error_ga); | |
721 } | |
722 } | |
723 #endif | |
724 | |
725 | |
726 /* | |
727 * Return TRUE if "p" contain a wildcard that can be expanded by | |
728 * dos_expandpath(). | |
729 */ | |
730 int | |
731 mch_has_exp_wildcard(char_u *p) | |
732 { | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
733 for ( ; *p; MB_PTR_ADV(p)) |
7 | 734 { |
735 if (vim_strchr((char_u *)"?*[", *p) != NULL | |
736 || (*p == '~' && p[1] != NUL)) | |
737 return TRUE; | |
738 } | |
739 return FALSE; | |
740 } | |
741 | |
742 /* | |
743 * Return TRUE if "p" contain a wildcard or a "~1" kind of thing (could be a | |
744 * shortened file name). | |
745 */ | |
746 int | |
747 mch_has_wildcard(char_u *p) | |
748 { | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
749 for ( ; *p; MB_PTR_ADV(p)) |
7 | 750 { |
751 if (vim_strchr((char_u *) | |
752 # ifdef VIM_BACKTICK | |
753 "?*$[`" | |
754 # else | |
755 "?*$[" | |
756 # endif | |
757 , *p) != NULL | |
758 || (*p == '~' && p[1] != NUL)) | |
759 return TRUE; | |
760 } | |
761 return FALSE; | |
762 } | |
763 | |
764 | |
765 /* | |
766 * The normal _chdir() does not change the default drive. This one does. | |
767 * Returning 0 implies success; -1 implies failure. | |
768 */ | |
769 int | |
770 mch_chdir(char *path) | |
771 { | |
772 if (path[0] == NUL) /* just checking... */ | |
773 return -1; | |
774 | |
1936 | 775 if (p_verbose >= 5) |
776 { | |
777 verbose_enter(); | |
778 smsg((char_u *)"chdir(%s)", path); | |
779 verbose_leave(); | |
780 } | |
7 | 781 if (isalpha(path[0]) && path[1] == ':') /* has a drive name */ |
782 { | |
783 /* If we can change to the drive, skip that part of the path. If we | |
784 * can't then the current directory may be invalid, try using chdir() | |
785 * with the whole path. */ | |
786 if (_chdrive(TOLOWER_ASC(path[0]) - 'a' + 1) == 0) | |
787 path += 2; | |
788 } | |
789 | |
790 if (*path == NUL) /* drive name only */ | |
791 return 0; | |
792 | |
23 | 793 #ifdef FEAT_MBYTE |
794 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
795 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
796 WCHAR *p = enc_to_utf16((char_u *)path, NULL); |
23 | 797 int n; |
798 | |
799 if (p != NULL) | |
800 { | |
801 n = _wchdir(p); | |
802 vim_free(p); | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
803 return n; |
23 | 804 } |
805 } | |
806 #endif | |
807 | |
7 | 808 return chdir(path); /* let the normal chdir() do the rest */ |
809 } | |
810 | |
811 | |
812 #ifdef FEAT_GUI_MSWIN | |
813 /* | |
814 * return non-zero if a character is available | |
815 */ | |
816 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
817 mch_char_avail(void) |
7 | 818 { |
819 /* never used */ | |
820 return TRUE; | |
821 } | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
822 |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
823 # if defined(FEAT_TERMINAL) || defined(PROTO) |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
824 /* |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
825 * Check for any pending input or messages. |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
826 */ |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
827 int |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
828 mch_check_messages(void) |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
829 { |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
830 /* TODO: check for messages */ |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
831 return TRUE; |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
832 } |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11215
diff
changeset
|
833 # endif |
7 | 834 #endif |
835 | |
836 | |
837 /* | |
838 * set screen mode, always fails. | |
839 */ | |
840 int | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
841 mch_screenmode(char_u *arg UNUSED) |
7 | 842 { |
843 EMSG(_(e_screenmode)); | |
844 return FAIL; | |
845 } | |
846 | |
847 | |
848 #if defined(FEAT_LIBCALL) || defined(PROTO) | |
849 /* | |
850 * Call a DLL routine which takes either a string or int param | |
851 * and returns an allocated string. | |
852 * Return OK if it worked, FAIL if not. | |
853 */ | |
854 typedef LPTSTR (*MYSTRPROCSTR)(LPTSTR); | |
855 typedef LPTSTR (*MYINTPROCSTR)(int); | |
856 typedef int (*MYSTRPROCINT)(LPTSTR); | |
857 typedef int (*MYINTPROCINT)(int); | |
858 | |
859 /* | |
860 * Check if a pointer points to a valid NUL terminated string. | |
861 * Return the length of the string, including terminating NUL. | |
862 * Returns 0 for an invalid pointer, 1 for an empty string. | |
863 */ | |
864 static size_t | |
865 check_str_len(char_u *str) | |
866 { | |
867 SYSTEM_INFO si; | |
868 MEMORY_BASIC_INFORMATION mbi; | |
869 size_t length = 0; | |
870 size_t i; | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
871 const char_u *p; |
7 | 872 |
873 /* get page size */ | |
874 GetSystemInfo(&si); | |
875 | |
876 /* get memory information */ | |
877 if (VirtualQuery(str, &mbi, sizeof(mbi))) | |
878 { | |
879 /* pre cast these (typing savers) */ | |
840 | 880 long_u dwStr = (long_u)str; |
881 long_u dwBaseAddress = (long_u)mbi.BaseAddress; | |
7 | 882 |
883 /* get start address of page that str is on */ | |
840 | 884 long_u strPage = dwStr - (dwStr - dwBaseAddress) % si.dwPageSize; |
7 | 885 |
886 /* get length from str to end of page */ | |
840 | 887 long_u pageLength = si.dwPageSize - (dwStr - strPage); |
7 | 888 |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
889 for (p = str; !IsBadReadPtr(p, (UINT)pageLength); |
7 | 890 p += pageLength, pageLength = si.dwPageSize) |
891 for (i = 0; i < pageLength; ++i, ++length) | |
892 if (p[i] == NUL) | |
893 return length + 1; | |
894 } | |
895 | |
896 return 0; | |
897 } | |
898 | |
6249 | 899 /* |
900 * Passed to do_in_runtimepath() to load a vim.ico file. | |
901 */ | |
902 static void | |
903 mch_icon_load_cb(char_u *fname, void *cookie) | |
904 { | |
905 HANDLE *h = (HANDLE *)cookie; | |
906 | |
907 *h = LoadImage(NULL, | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
908 (LPSTR)fname, |
6249 | 909 IMAGE_ICON, |
910 64, | |
911 64, | |
912 LR_LOADFROMFILE | LR_LOADMAP3DCOLORS); | |
913 } | |
914 | |
915 /* | |
916 * Try loading an icon file from 'runtimepath'. | |
917 */ | |
918 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
919 mch_icon_load(HANDLE *iconp) |
6249 | 920 { |
921 return do_in_runtimepath((char_u *)"bitmaps/vim.ico", | |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
922 0, mch_icon_load_cb, iconp); |
6249 | 923 } |
924 | |
7 | 925 int |
926 mch_libcall( | |
927 char_u *libname, | |
928 char_u *funcname, | |
929 char_u *argstring, /* NULL when using a argint */ | |
930 int argint, | |
931 char_u **string_result,/* NULL when using number_result */ | |
932 int *number_result) | |
933 { | |
934 HINSTANCE hinstLib; | |
935 MYSTRPROCSTR ProcAdd; | |
936 MYINTPROCSTR ProcAddI; | |
937 char_u *retval_str = NULL; | |
938 int retval_int = 0; | |
939 size_t len; | |
940 | |
941 BOOL fRunTimeLinkSuccess = FALSE; | |
942 | |
943 // Get a handle to the DLL module. | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
944 hinstLib = vimLoadLib((char *)libname); |
7 | 945 |
946 // If the handle is valid, try to get the function address. | |
947 if (hinstLib != NULL) | |
948 { | |
949 #ifdef HAVE_TRY_EXCEPT | |
950 __try | |
951 { | |
952 #endif | |
953 if (argstring != NULL) | |
954 { | |
955 /* Call with string argument */ | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
956 ProcAdd = (MYSTRPROCSTR)GetProcAddress(hinstLib, (LPCSTR)funcname); |
7 | 957 if ((fRunTimeLinkSuccess = (ProcAdd != NULL)) != 0) |
958 { | |
959 if (string_result == NULL) | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
960 retval_int = ((MYSTRPROCINT)ProcAdd)((LPSTR)argstring); |
7 | 961 else |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
962 retval_str = (char_u *)(ProcAdd)((LPSTR)argstring); |
7 | 963 } |
964 } | |
965 else | |
966 { | |
967 /* Call with number argument */ | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
968 ProcAddI = (MYINTPROCSTR) GetProcAddress(hinstLib, (LPCSTR)funcname); |
7 | 969 if ((fRunTimeLinkSuccess = (ProcAddI != NULL)) != 0) |
970 { | |
971 if (string_result == NULL) | |
972 retval_int = ((MYINTPROCINT)ProcAddI)(argint); | |
973 else | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
974 retval_str = (char_u *)(ProcAddI)(argint); |
7 | 975 } |
976 } | |
977 | |
978 // Save the string before we free the library. | |
979 // Assume that a "1" result is an illegal pointer. | |
980 if (string_result == NULL) | |
981 *number_result = retval_int; | |
982 else if (retval_str != NULL | |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
983 && (len = check_str_len(retval_str)) > 0) |
7 | 984 { |
985 *string_result = lalloc((long_u)len, TRUE); | |
986 if (*string_result != NULL) | |
987 mch_memmove(*string_result, retval_str, len); | |
988 } | |
989 | |
990 #ifdef HAVE_TRY_EXCEPT | |
991 } | |
992 __except(EXCEPTION_EXECUTE_HANDLER) | |
993 { | |
994 if (GetExceptionCode() == EXCEPTION_STACK_OVERFLOW) | |
995 RESETSTKOFLW(); | |
996 fRunTimeLinkSuccess = 0; | |
997 } | |
998 #endif | |
999 | |
1000 // Free the DLL module. | |
1001 (void)FreeLibrary(hinstLib); | |
1002 } | |
1003 | |
1004 if (!fRunTimeLinkSuccess) | |
1005 { | |
1006 EMSG2(_(e_libcall), funcname); | |
1007 return FAIL; | |
1008 } | |
1009 | |
1010 return OK; | |
1011 } | |
1012 #endif | |
1013 | |
1014 /* | |
1015 * Debugging helper: expose the MCH_WRITE_DUMP stuff to other modules | |
1016 */ | |
1017 void | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
1018 DumpPutS(const char *psz UNUSED) |
7 | 1019 { |
1020 # ifdef MCH_WRITE_DUMP | |
1021 if (fdDump) | |
1022 { | |
1023 fputs(psz, fdDump); | |
1024 if (psz[strlen(psz) - 1] != '\n') | |
1025 fputc('\n', fdDump); | |
1026 fflush(fdDump); | |
1027 } | |
1028 # endif | |
1029 } | |
1030 | |
1031 #ifdef _DEBUG | |
1032 | |
1033 void __cdecl | |
1034 Trace( | |
1035 char *pszFormat, | |
1036 ...) | |
1037 { | |
1038 CHAR szBuff[2048]; | |
1039 va_list args; | |
1040 | |
1041 va_start(args, pszFormat); | |
1042 vsprintf(szBuff, pszFormat, args); | |
1043 va_end(args); | |
1044 | |
1045 OutputDebugString(szBuff); | |
1046 } | |
1047 | |
1048 #endif //_DEBUG | |
1049 | |
11 | 1050 #if !defined(FEAT_GUI) || defined(PROTO) |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1051 # ifdef FEAT_TITLE |
7 | 1052 extern HWND g_hWnd; /* This is in os_win32.c. */ |
1053 # endif | |
1054 | |
1055 /* | |
1056 * Showing the printer dialog is tricky since we have no GUI | |
1057 * window to parent it. The following routines are needed to | |
1058 * get the window parenting and Z-order to work properly. | |
1059 */ | |
1060 static void | |
1061 GetConsoleHwnd(void) | |
1062 { | |
1063 # define MY_BUFSIZE 1024 // Buffer size for console window titles. | |
1064 | |
1065 char pszNewWindowTitle[MY_BUFSIZE]; // Contains fabricated WindowTitle. | |
1066 char pszOldWindowTitle[MY_BUFSIZE]; // Contains original WindowTitle. | |
1067 | |
1068 /* Skip if it's already set. */ | |
1069 if (s_hwnd != 0) | |
1070 return; | |
1071 | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1072 # ifdef FEAT_TITLE |
7 | 1073 /* Window handle may have been found by init code (Windows NT only) */ |
1074 if (g_hWnd != 0) | |
1075 { | |
1076 s_hwnd = g_hWnd; | |
1077 return; | |
1078 } | |
1079 # endif | |
1080 | |
1081 GetConsoleTitle(pszOldWindowTitle, MY_BUFSIZE); | |
1082 | |
1083 wsprintf(pszNewWindowTitle, "%s/%d/%d", | |
1084 pszOldWindowTitle, | |
1085 GetTickCount(), | |
1086 GetCurrentProcessId()); | |
1087 SetConsoleTitle(pszNewWindowTitle); | |
1088 Sleep(40); | |
1089 s_hwnd = FindWindow(NULL, pszNewWindowTitle); | |
1090 | |
1091 SetConsoleTitle(pszOldWindowTitle); | |
1092 } | |
11 | 1093 |
1094 /* | |
1095 * Console implementation of ":winpos". | |
1096 */ | |
1097 int | |
1098 mch_get_winpos(int *x, int *y) | |
1099 { | |
1100 RECT rect; | |
1101 | |
1102 GetConsoleHwnd(); | |
1103 GetWindowRect(s_hwnd, &rect); | |
1104 *x = rect.left; | |
1105 *y = rect.top; | |
1106 return OK; | |
1107 } | |
1108 | |
1109 /* | |
1110 * Console implementation of ":winpos x y". | |
1111 */ | |
1112 void | |
1113 mch_set_winpos(int x, int y) | |
1114 { | |
1115 GetConsoleHwnd(); | |
1116 SetWindowPos(s_hwnd, NULL, x, y, 0, 0, | |
1117 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE); | |
1118 } | |
7 | 1119 #endif |
1120 | |
1121 #if (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) || defined(PROTO) | |
1122 | |
1123 /*================================================================= | |
1124 * Win32 printer stuff | |
1125 */ | |
1126 | |
1127 static HFONT prt_font_handles[2][2][2]; | |
1128 static PRINTDLG prt_dlg; | |
1129 static const int boldface[2] = {FW_REGULAR, FW_BOLD}; | |
1130 static TEXTMETRIC prt_tm; | |
1131 static int prt_line_height; | |
1132 static int prt_number_width; | |
1133 static int prt_left_margin; | |
1134 static int prt_right_margin; | |
1135 static int prt_top_margin; | |
1136 static char_u szAppName[] = TEXT("VIM"); | |
1137 static HWND hDlgPrint; | |
1138 static int *bUserAbort = NULL; | |
1139 static char_u *prt_name = NULL; | |
1140 | |
1141 /* Defines which are also in vim.rc. */ | |
1142 #define IDC_BOX1 400 | |
1143 #define IDC_PRINTTEXT1 401 | |
1144 #define IDC_PRINTTEXT2 402 | |
1145 #define IDC_PROGRESS 403 | |
1146 | |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
1147 #if !defined(FEAT_MBYTE) |
4932
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1148 # define vimSetDlgItemText(h, i, s) SetDlgItemText(h, i, s) |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1149 #else |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1150 static BOOL |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1151 vimSetDlgItemText(HWND hDlg, int nIDDlgItem, char_u *s) |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1152 { |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1153 WCHAR *wp = NULL; |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1154 BOOL ret; |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1155 |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1156 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1157 { |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1158 wp = enc_to_utf16(s, NULL); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1159 } |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1160 if (wp != NULL) |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1161 { |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1162 ret = SetDlgItemTextW(hDlg, nIDDlgItem, wp); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1163 vim_free(wp); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1164 return ret; |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1165 } |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1166 return SetDlgItemText(hDlg, nIDDlgItem, (LPCSTR)s); |
4932
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1167 } |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1168 #endif |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1169 |
7 | 1170 /* |
1171 * Convert BGR to RGB for Windows GDI calls | |
1172 */ | |
1173 static COLORREF | |
1174 swap_me(COLORREF colorref) | |
1175 { | |
1176 int temp; | |
1177 char *ptr = (char *)&colorref; | |
1178 | |
1179 temp = *(ptr); | |
1180 *(ptr ) = *(ptr + 2); | |
1181 *(ptr + 2) = temp; | |
1182 return colorref; | |
1183 } | |
1184 | |
1702 | 1185 /* Attempt to make this work for old and new compilers */ |
3102 | 1186 #if !defined(_WIN64) && (!defined(_MSC_VER) || _MSC_VER < 1300) |
1702 | 1187 # define PDP_RETVAL BOOL |
1188 #else | |
1189 # define PDP_RETVAL INT_PTR | |
1190 #endif | |
1191 | |
1192 static PDP_RETVAL CALLBACK | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
1193 PrintDlgProc( |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
1194 HWND hDlg, |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
1195 UINT message, |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
1196 WPARAM wParam UNUSED, |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
1197 LPARAM lParam UNUSED) |
7 | 1198 { |
1199 #ifdef FEAT_GETTEXT | |
1200 NONCLIENTMETRICS nm; | |
1201 static HFONT hfont; | |
1202 #endif | |
1203 | |
1204 switch (message) | |
1205 { | |
1206 case WM_INITDIALOG: | |
1207 #ifdef FEAT_GETTEXT | |
1208 nm.cbSize = sizeof(NONCLIENTMETRICS); | |
1209 if (SystemParametersInfo( | |
1210 SPI_GETNONCLIENTMETRICS, | |
1211 sizeof(NONCLIENTMETRICS), | |
1212 &nm, | |
1213 0)) | |
1214 { | |
1215 char buff[MAX_PATH]; | |
1216 int i; | |
1217 | |
1218 /* Translate the dialog texts */ | |
1219 hfont = CreateFontIndirect(&nm.lfMessageFont); | |
1220 for (i = IDC_PRINTTEXT1; i <= IDC_PROGRESS; i++) | |
1221 { | |
1222 SendDlgItemMessage(hDlg, i, WM_SETFONT, (WPARAM)hfont, 1); | |
1223 if (GetDlgItemText(hDlg,i, buff, sizeof(buff))) | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1224 vimSetDlgItemText(hDlg,i, (char_u *)_(buff)); |
7 | 1225 } |
1226 SendDlgItemMessage(hDlg, IDCANCEL, | |
1227 WM_SETFONT, (WPARAM)hfont, 1); | |
1228 if (GetDlgItemText(hDlg,IDCANCEL, buff, sizeof(buff))) | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1229 vimSetDlgItemText(hDlg,IDCANCEL, (char_u *)_(buff)); |
7 | 1230 } |
1231 #endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1232 SetWindowText(hDlg, (LPCSTR)szAppName); |
7 | 1233 if (prt_name != NULL) |
1234 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1235 vimSetDlgItemText(hDlg, IDC_PRINTTEXT2, (char_u *)prt_name); |
7 | 1236 vim_free(prt_name); |
1237 prt_name = NULL; | |
1238 } | |
1239 EnableMenuItem(GetSystemMenu(hDlg, FALSE), SC_CLOSE, MF_GRAYED); | |
1240 #ifndef FEAT_GUI | |
1241 BringWindowToTop(s_hwnd); | |
1242 #endif | |
1243 return TRUE; | |
1244 | |
1245 case WM_COMMAND: | |
1246 *bUserAbort = TRUE; | |
1247 EnableWindow(GetParent(hDlg), TRUE); | |
1248 DestroyWindow(hDlg); | |
1249 hDlgPrint = NULL; | |
1250 #ifdef FEAT_GETTEXT | |
1251 DeleteObject(hfont); | |
1252 #endif | |
1253 return TRUE; | |
1254 } | |
1255 return FALSE; | |
1256 } | |
1257 | |
1258 static BOOL CALLBACK | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
1259 AbortProc(HDC hdcPrn UNUSED, int iCode UNUSED) |
7 | 1260 { |
1261 MSG msg; | |
1262 | |
3010 | 1263 while (!*bUserAbort && pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) |
7 | 1264 { |
3010 | 1265 if (!hDlgPrint || !pIsDialogMessage(hDlgPrint, &msg)) |
7 | 1266 { |
1267 TranslateMessage(&msg); | |
3010 | 1268 pDispatchMessage(&msg); |
7 | 1269 } |
1270 } | |
1271 return !*bUserAbort; | |
1272 } | |
1273 | |
1274 #ifndef FEAT_GUI | |
1275 | |
3174 | 1276 static UINT_PTR CALLBACK |
7 | 1277 PrintHookProc( |
1278 HWND hDlg, // handle to dialog box | |
1279 UINT uiMsg, // message identifier | |
1280 WPARAM wParam, // message parameter | |
1281 LPARAM lParam // message parameter | |
1282 ) | |
1283 { | |
1284 HWND hwndOwner; | |
1285 RECT rc, rcDlg, rcOwner; | |
1286 PRINTDLG *pPD; | |
1287 | |
1288 if (uiMsg == WM_INITDIALOG) | |
1289 { | |
1290 // Get the owner window and dialog box rectangles. | |
1291 if ((hwndOwner = GetParent(hDlg)) == NULL) | |
1292 hwndOwner = GetDesktopWindow(); | |
1293 | |
1294 GetWindowRect(hwndOwner, &rcOwner); | |
1295 GetWindowRect(hDlg, &rcDlg); | |
1296 CopyRect(&rc, &rcOwner); | |
1297 | |
1298 // Offset the owner and dialog box rectangles so that | |
1299 // right and bottom values represent the width and | |
1300 // height, and then offset the owner again to discard | |
1301 // space taken up by the dialog box. | |
1302 | |
1303 OffsetRect(&rcDlg, -rcDlg.left, -rcDlg.top); | |
1304 OffsetRect(&rc, -rc.left, -rc.top); | |
1305 OffsetRect(&rc, -rcDlg.right, -rcDlg.bottom); | |
1306 | |
1307 // The new position is the sum of half the remaining | |
1308 // space and the owner's original position. | |
1309 | |
1310 SetWindowPos(hDlg, | |
1311 HWND_TOP, | |
1312 rcOwner.left + (rc.right / 2), | |
1313 rcOwner.top + (rc.bottom / 2), | |
1314 0, 0, // ignores size arguments | |
1315 SWP_NOSIZE); | |
1316 | |
1317 /* tackle the printdlg copiesctrl problem */ | |
1318 pPD = (PRINTDLG *)lParam; | |
1319 pPD->nCopies = (WORD)pPD->lCustData; | |
1320 SetDlgItemInt( hDlg, edt3, pPD->nCopies, FALSE ); | |
1321 /* Bring the window to top */ | |
1322 BringWindowToTop(GetParent(hDlg)); | |
1323 SetForegroundWindow(hDlg); | |
1324 } | |
1325 | |
1326 return FALSE; | |
1327 } | |
1328 #endif | |
1329 | |
1330 void | |
1331 mch_print_cleanup(void) | |
1332 { | |
1333 int pifItalic; | |
1334 int pifBold; | |
1335 int pifUnderline; | |
1336 | |
1337 for (pifBold = 0; pifBold <= 1; pifBold++) | |
1338 for (pifItalic = 0; pifItalic <= 1; pifItalic++) | |
1339 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++) | |
1340 DeleteObject(prt_font_handles[pifBold][pifItalic][pifUnderline]); | |
1341 | |
1342 if (prt_dlg.hDC != NULL) | |
1343 DeleteDC(prt_dlg.hDC); | |
1344 if (!*bUserAbort) | |
1345 SendMessage(hDlgPrint, WM_COMMAND, 0, 0); | |
1346 } | |
1347 | |
1348 static int | |
1349 to_device_units(int idx, int dpi, int physsize, int offset, int def_number) | |
1350 { | |
1351 int ret = 0; | |
1352 int u; | |
1353 int nr; | |
1354 | |
1355 u = prt_get_unit(idx); | |
1356 if (u == PRT_UNIT_NONE) | |
1357 { | |
1358 u = PRT_UNIT_PERC; | |
1359 nr = def_number; | |
1360 } | |
1361 else | |
1362 nr = printer_opts[idx].number; | |
1363 | |
1364 switch (u) | |
1365 { | |
1366 case PRT_UNIT_PERC: | |
1367 ret = (physsize * nr) / 100; | |
1368 break; | |
1369 case PRT_UNIT_INCH: | |
1370 ret = (nr * dpi); | |
1371 break; | |
1372 case PRT_UNIT_MM: | |
1373 ret = (nr * 10 * dpi) / 254; | |
1374 break; | |
1375 case PRT_UNIT_POINT: | |
1376 ret = (nr * 10 * dpi) / 720; | |
1377 break; | |
1378 } | |
1379 | |
1380 if (ret < offset) | |
1381 return 0; | |
1382 else | |
1383 return ret - offset; | |
1384 } | |
1385 | |
1386 static int | |
1387 prt_get_cpl(void) | |
1388 { | |
1389 int hr; | |
1390 int phyw; | |
1391 int dvoff; | |
1392 int rev_offset; | |
1393 int dpi; | |
1394 | |
1395 GetTextMetrics(prt_dlg.hDC, &prt_tm); | |
1396 prt_line_height = prt_tm.tmHeight + prt_tm.tmExternalLeading; | |
1397 | |
1398 hr = GetDeviceCaps(prt_dlg.hDC, HORZRES); | |
1399 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALWIDTH); | |
1400 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETX); | |
1401 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSX); | |
1402 | |
1403 rev_offset = phyw - (dvoff + hr); | |
1404 | |
1405 prt_left_margin = to_device_units(OPT_PRINT_LEFT, dpi, phyw, dvoff, 10); | |
1406 if (prt_use_number()) | |
1407 { | |
1408 prt_number_width = PRINT_NUMBER_WIDTH * prt_tm.tmAveCharWidth; | |
1409 prt_left_margin += prt_number_width; | |
1410 } | |
1411 else | |
1412 prt_number_width = 0; | |
1413 | |
1414 prt_right_margin = hr - to_device_units(OPT_PRINT_RIGHT, dpi, phyw, | |
1415 rev_offset, 5); | |
1416 | |
1417 return (prt_right_margin - prt_left_margin) / prt_tm.tmAveCharWidth; | |
1418 } | |
1419 | |
1420 static int | |
1421 prt_get_lpp(void) | |
1422 { | |
1423 int vr; | |
1424 int phyw; | |
1425 int dvoff; | |
1426 int rev_offset; | |
1427 int bottom_margin; | |
1428 int dpi; | |
1429 | |
1430 vr = GetDeviceCaps(prt_dlg.hDC, VERTRES); | |
1431 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALHEIGHT); | |
1432 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETY); | |
1433 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSY); | |
1434 | |
1435 rev_offset = phyw - (dvoff + vr); | |
1436 | |
1437 prt_top_margin = to_device_units(OPT_PRINT_TOP, dpi, phyw, dvoff, 5); | |
1438 | |
1439 /* adjust top margin if there is a header */ | |
1440 prt_top_margin += prt_line_height * prt_header_height(); | |
1441 | |
1442 bottom_margin = vr - to_device_units(OPT_PRINT_BOT, dpi, phyw, | |
1443 rev_offset, 5); | |
1444 | |
1445 return (bottom_margin - prt_top_margin) / prt_line_height; | |
1446 } | |
1447 | |
1448 int | |
1449 mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit) | |
1450 { | |
1451 static HGLOBAL stored_dm = NULL; | |
1452 static HGLOBAL stored_devn = NULL; | |
1453 static int stored_nCopies = 1; | |
1454 static int stored_nFlags = 0; | |
1455 | |
1456 LOGFONT fLogFont; | |
1457 int pifItalic; | |
1458 int pifBold; | |
1459 int pifUnderline; | |
1460 | |
1461 DEVMODE *mem; | |
1462 DEVNAMES *devname; | |
1463 int i; | |
1464 | |
1465 bUserAbort = &(psettings->user_abort); | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
1936
diff
changeset
|
1466 vim_memset(&prt_dlg, 0, sizeof(PRINTDLG)); |
7 | 1467 prt_dlg.lStructSize = sizeof(PRINTDLG); |
1468 #ifndef FEAT_GUI | |
1469 GetConsoleHwnd(); /* get value of s_hwnd */ | |
1470 #endif | |
1471 prt_dlg.hwndOwner = s_hwnd; | |
1472 prt_dlg.Flags = PD_NOPAGENUMS | PD_NOSELECTION | PD_RETURNDC; | |
1473 if (!forceit) | |
1474 { | |
1475 prt_dlg.hDevMode = stored_dm; | |
1476 prt_dlg.hDevNames = stored_devn; | |
1477 prt_dlg.lCustData = stored_nCopies; // work around bug in print dialog | |
1478 #ifndef FEAT_GUI | |
1479 /* | |
1480 * Use hook to prevent console window being sent to back | |
1481 */ | |
1482 prt_dlg.lpfnPrintHook = PrintHookProc; | |
1483 prt_dlg.Flags |= PD_ENABLEPRINTHOOK; | |
1484 #endif | |
1485 prt_dlg.Flags |= stored_nFlags; | |
1486 } | |
1487 | |
1488 /* | |
1489 * If bang present, return default printer setup with no dialog | |
1490 * never show dialog if we are running over telnet | |
1491 */ | |
1492 if (forceit | |
1493 #ifndef FEAT_GUI | |
1494 || !term_console | |
1495 #endif | |
1496 ) | |
1497 { | |
1498 prt_dlg.Flags |= PD_RETURNDEFAULT; | |
1499 /* | |
1500 * MSDN suggests setting the first parameter to WINSPOOL for | |
1501 * NT, but NULL appears to work just as well. | |
1502 */ | |
1503 if (*p_pdev != NUL) | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1504 prt_dlg.hDC = CreateDC(NULL, (LPCSTR)p_pdev, NULL, NULL); |
7 | 1505 else |
1506 { | |
1507 prt_dlg.Flags |= PD_RETURNDEFAULT; | |
1508 if (PrintDlg(&prt_dlg) == 0) | |
1509 goto init_fail_dlg; | |
1510 } | |
1511 } | |
1512 else if (PrintDlg(&prt_dlg) == 0) | |
1513 goto init_fail_dlg; | |
1514 else | |
1515 { | |
1516 /* | |
1517 * keep the previous driver context | |
1518 */ | |
1519 stored_dm = prt_dlg.hDevMode; | |
1520 stored_devn = prt_dlg.hDevNames; | |
1521 stored_nFlags = prt_dlg.Flags; | |
1522 stored_nCopies = prt_dlg.nCopies; | |
1523 } | |
1524 | |
1525 if (prt_dlg.hDC == NULL) | |
1526 { | |
1527 EMSG(_("E237: Printer selection failed")); | |
1528 mch_print_cleanup(); | |
1529 return FALSE; | |
1530 } | |
1531 | |
1532 /* Not all printer drivers report the support of color (or grey) in the | |
1533 * same way. Let's set has_color if there appears to be some way to print | |
1534 * more than B&W. */ | |
1535 i = GetDeviceCaps(prt_dlg.hDC, NUMCOLORS); | |
1536 psettings->has_color = (GetDeviceCaps(prt_dlg.hDC, BITSPIXEL) > 1 | |
1537 || GetDeviceCaps(prt_dlg.hDC, PLANES) > 1 | |
1538 || i > 2 || i == -1); | |
1539 | |
1540 /* Ensure all font styles are baseline aligned */ | |
1541 SetTextAlign(prt_dlg.hDC, TA_BASELINE|TA_LEFT); | |
1542 | |
1543 /* | |
1544 * On some windows systems the nCopies parameter is not | |
1545 * passed back correctly. It must be retrieved from the | |
1546 * hDevMode struct. | |
1547 */ | |
1548 mem = (DEVMODE *)GlobalLock(prt_dlg.hDevMode); | |
1549 if (mem != NULL) | |
1550 { | |
1551 if (mem->dmCopies != 1) | |
1552 stored_nCopies = mem->dmCopies; | |
1553 if ((mem->dmFields & DM_DUPLEX) && (mem->dmDuplex & ~DMDUP_SIMPLEX)) | |
1554 psettings->duplex = TRUE; | |
1555 if ((mem->dmFields & DM_COLOR) && (mem->dmColor & DMCOLOR_COLOR)) | |
1556 psettings->has_color = TRUE; | |
1557 } | |
1558 GlobalUnlock(prt_dlg.hDevMode); | |
1559 | |
1560 devname = (DEVNAMES *)GlobalLock(prt_dlg.hDevNames); | |
1561 if (devname != 0) | |
1562 { | |
1563 char_u *printer_name = (char_u *)devname + devname->wDeviceOffset; | |
1564 char_u *port_name = (char_u *)devname +devname->wOutputOffset; | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1565 char_u *text = (char_u *)_("to %s on %s"); |
6274 | 1566 #ifdef FEAT_MBYTE |
1567 char_u *printer_name_orig = printer_name; | |
1568 char_u *port_name_orig = port_name; | |
1569 | |
1570 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
1571 { | |
1572 char_u *to_free = NULL; | |
1573 int maxlen; | |
1574 | |
6295 | 1575 acp_to_enc(printer_name, (int)STRLEN(printer_name), &to_free, |
1576 &maxlen); | |
6274 | 1577 if (to_free != NULL) |
1578 printer_name = to_free; | |
6295 | 1579 acp_to_enc(port_name, (int)STRLEN(port_name), &to_free, &maxlen); |
6274 | 1580 if (to_free != NULL) |
1581 port_name = to_free; | |
1582 } | |
1583 #endif | |
1686 | 1584 prt_name = alloc((unsigned)(STRLEN(printer_name) + STRLEN(port_name) |
1585 + STRLEN(text))); | |
7 | 1586 if (prt_name != NULL) |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1587 wsprintf((char *)prt_name, (const char *)text, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1588 printer_name, port_name); |
6274 | 1589 #ifdef FEAT_MBYTE |
1590 if (printer_name != printer_name_orig) | |
1591 vim_free(printer_name); | |
1592 if (port_name != port_name_orig) | |
1593 vim_free(port_name); | |
1594 #endif | |
7 | 1595 } |
1596 GlobalUnlock(prt_dlg.hDevNames); | |
1597 | |
1598 /* | |
1599 * Initialise the font according to 'printfont' | |
1600 */ | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
1936
diff
changeset
|
1601 vim_memset(&fLogFont, 0, sizeof(fLogFont)); |
37 | 1602 if (get_logfont(&fLogFont, p_pfn, prt_dlg.hDC, TRUE) == FAIL) |
7 | 1603 { |
1604 EMSG2(_("E613: Unknown printer font: %s"), p_pfn); | |
1605 mch_print_cleanup(); | |
1606 return FALSE; | |
1607 } | |
1608 | |
1609 for (pifBold = 0; pifBold <= 1; pifBold++) | |
1610 for (pifItalic = 0; pifItalic <= 1; pifItalic++) | |
1611 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++) | |
1612 { | |
1613 fLogFont.lfWeight = boldface[pifBold]; | |
1614 fLogFont.lfItalic = pifItalic; | |
1615 fLogFont.lfUnderline = pifUnderline; | |
1616 prt_font_handles[pifBold][pifItalic][pifUnderline] | |
1617 = CreateFontIndirect(&fLogFont); | |
1618 } | |
1619 | |
1620 SetBkMode(prt_dlg.hDC, OPAQUE); | |
1621 SelectObject(prt_dlg.hDC, prt_font_handles[0][0][0]); | |
1622 | |
1623 /* | |
1624 * Fill in the settings struct | |
1625 */ | |
1626 psettings->chars_per_line = prt_get_cpl(); | |
1627 psettings->lines_per_page = prt_get_lpp(); | |
6253 | 1628 if (prt_dlg.Flags & PD_USEDEVMODECOPIESANDCOLLATE) |
1629 { | |
1630 psettings->n_collated_copies = (prt_dlg.Flags & PD_COLLATE) | |
1631 ? prt_dlg.nCopies : 1; | |
1632 psettings->n_uncollated_copies = (prt_dlg.Flags & PD_COLLATE) | |
1633 ? 1 : prt_dlg.nCopies; | |
1634 | |
1635 if (psettings->n_collated_copies == 0) | |
1636 psettings->n_collated_copies = 1; | |
1637 | |
1638 if (psettings->n_uncollated_copies == 0) | |
1639 psettings->n_uncollated_copies = 1; | |
10440
f54e4c691de4
commit https://github.com/vim/vim/commit/b04a98f6c3cca14bf055934b0a793f4dc376858b
Christian Brabandt <cb@256bit.org>
parents:
10355
diff
changeset
|
1640 } |
f54e4c691de4
commit https://github.com/vim/vim/commit/b04a98f6c3cca14bf055934b0a793f4dc376858b
Christian Brabandt <cb@256bit.org>
parents:
10355
diff
changeset
|
1641 else |
f54e4c691de4
commit https://github.com/vim/vim/commit/b04a98f6c3cca14bf055934b0a793f4dc376858b
Christian Brabandt <cb@256bit.org>
parents:
10355
diff
changeset
|
1642 { |
7 | 1643 psettings->n_collated_copies = 1; |
1644 psettings->n_uncollated_copies = 1; | |
6253 | 1645 } |
7 | 1646 |
1647 psettings->jobname = jobname; | |
1648 | |
1649 return TRUE; | |
1650 | |
1651 init_fail_dlg: | |
1652 { | |
1653 DWORD err = CommDlgExtendedError(); | |
1654 | |
1655 if (err) | |
1656 { | |
1657 char_u *buf; | |
1658 | |
1659 /* I suspect FormatMessage() doesn't work for values returned by | |
1660 * CommDlgExtendedError(). What does? */ | |
1661 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | | |
1662 FORMAT_MESSAGE_FROM_SYSTEM | | |
1663 FORMAT_MESSAGE_IGNORE_INSERTS, | |
1664 NULL, err, 0, (LPTSTR)(&buf), 0, NULL); | |
1665 EMSG2(_("E238: Print error: %s"), | |
1666 buf == NULL ? (char_u *)_("Unknown") : buf); | |
1667 LocalFree((LPVOID)(buf)); | |
1668 } | |
1669 else | |
1670 msg_clr_eos(); /* Maybe canceled */ | |
1671 | |
1672 mch_print_cleanup(); | |
1673 return FALSE; | |
1674 } | |
1675 } | |
1676 | |
1677 | |
1678 int | |
1679 mch_print_begin(prt_settings_T *psettings) | |
1680 { | |
1681 int ret; | |
1682 static DOCINFO di; | |
1683 char szBuffer[300]; | |
1684 | |
1685 hDlgPrint = CreateDialog(GetModuleHandle(NULL), TEXT("PrintDlgBox"), | |
1686 prt_dlg.hwndOwner, PrintDlgProc); | |
1687 SetAbortProc(prt_dlg.hDC, AbortProc); | |
1688 wsprintf(szBuffer, _("Printing '%s'"), gettail(psettings->jobname)); | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1689 vimSetDlgItemText(hDlgPrint, IDC_PRINTTEXT1, (char_u *)szBuffer); |
7 | 1690 |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
1936
diff
changeset
|
1691 vim_memset(&di, 0, sizeof(DOCINFO)); |
7 | 1692 di.cbSize = sizeof(DOCINFO); |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1693 di.lpszDocName = (LPCSTR)psettings->jobname; |
7 | 1694 ret = StartDoc(prt_dlg.hDC, &di); |
1695 | |
1696 #ifdef FEAT_GUI | |
1697 /* Give focus back to main window (when using MDI). */ | |
1698 SetFocus(s_hwnd); | |
1699 #endif | |
1700 | |
1701 return (ret > 0); | |
1702 } | |
1703 | |
1704 void | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
1705 mch_print_end(prt_settings_T *psettings UNUSED) |
7 | 1706 { |
1707 EndDoc(prt_dlg.hDC); | |
1708 if (!*bUserAbort) | |
1709 SendMessage(hDlgPrint, WM_COMMAND, 0, 0); | |
1710 } | |
1711 | |
1712 int | |
1713 mch_print_end_page(void) | |
1714 { | |
1715 return (EndPage(prt_dlg.hDC) > 0); | |
1716 } | |
1717 | |
1718 int | |
1719 mch_print_begin_page(char_u *msg) | |
1720 { | |
1721 if (msg != NULL) | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1722 vimSetDlgItemText(hDlgPrint, IDC_PROGRESS, msg); |
7 | 1723 return (StartPage(prt_dlg.hDC) > 0); |
1724 } | |
1725 | |
1726 int | |
1727 mch_print_blank_page(void) | |
1728 { | |
1729 return (mch_print_begin_page(NULL) ? (mch_print_end_page()) : FALSE); | |
1730 } | |
1731 | |
1732 static int prt_pos_x = 0; | |
1733 static int prt_pos_y = 0; | |
1734 | |
1735 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
1736 mch_print_start_line(int margin, int page_line) |
7 | 1737 { |
1738 if (margin) | |
1739 prt_pos_x = -prt_number_width; | |
1740 else | |
1741 prt_pos_x = 0; | |
1742 prt_pos_y = page_line * prt_line_height | |
1743 + prt_tm.tmAscent + prt_tm.tmExternalLeading; | |
1744 } | |
1745 | |
1746 int | |
1747 mch_print_text_out(char_u *p, int len) | |
1748 { | |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
1749 #if defined(FEAT_PROPORTIONAL_FONTS) || defined(FEAT_MBYTE) |
7 | 1750 SIZE sz; |
1751 #endif | |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
1752 #if defined(FEAT_MBYTE) |
4932
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1753 WCHAR *wp = NULL; |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1754 int wlen = len; |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1755 |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1756 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1757 { |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1758 wp = enc_to_utf16(p, &wlen); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1759 } |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1760 if (wp != NULL) |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1761 { |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1762 int ret = FALSE; |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1763 |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1764 TextOutW(prt_dlg.hDC, prt_pos_x + prt_left_margin, |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1765 prt_pos_y + prt_top_margin, wp, wlen); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1766 GetTextExtentPoint32W(prt_dlg.hDC, wp, wlen, &sz); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1767 vim_free(wp); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1768 prt_pos_x += (sz.cx - prt_tm.tmOverhang); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1769 /* This is wrong when printing spaces for a TAB. */ |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1770 if (p[len] != NUL) |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1771 { |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1772 wlen = MB_PTR2LEN(p + len); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1773 wp = enc_to_utf16(p + len, &wlen); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1774 if (wp != NULL) |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1775 { |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1776 GetTextExtentPoint32W(prt_dlg.hDC, wp, 1, &sz); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1777 ret = (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1778 vim_free(wp); |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1779 } |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1780 } |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1781 return ret; |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1782 } |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
1783 #endif |
7 | 1784 TextOut(prt_dlg.hDC, prt_pos_x + prt_left_margin, |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1785 prt_pos_y + prt_top_margin, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1786 (LPCSTR)p, len); |
7 | 1787 #ifndef FEAT_PROPORTIONAL_FONTS |
1788 prt_pos_x += len * prt_tm.tmAveCharWidth; | |
1789 return (prt_pos_x + prt_left_margin + prt_tm.tmAveCharWidth | |
1790 + prt_tm.tmOverhang > prt_right_margin); | |
1791 #else | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1792 GetTextExtentPoint32(prt_dlg.hDC, (LPCSTR)p, len, &sz); |
7 | 1793 prt_pos_x += (sz.cx - prt_tm.tmOverhang); |
1794 /* This is wrong when printing spaces for a TAB. */ | |
1795 if (p[len] == NUL) | |
1796 return FALSE; | |
1797 GetTextExtentPoint32(prt_dlg.hDC, p + len, 1, &sz); | |
1798 return (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin); | |
1799 #endif | |
1800 } | |
1801 | |
1802 void | |
1803 mch_print_set_font(int iBold, int iItalic, int iUnderline) | |
1804 { | |
1805 SelectObject(prt_dlg.hDC, prt_font_handles[iBold][iItalic][iUnderline]); | |
1806 } | |
1807 | |
1808 void | |
843 | 1809 mch_print_set_bg(long_u bgcol) |
7 | 1810 { |
843 | 1811 SetBkColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC, |
1812 swap_me((COLORREF)bgcol))); | |
7 | 1813 /* |
1814 * With a white background we can draw characters transparent, which is | |
1815 * good for italic characters that overlap to the next char cell. | |
1816 */ | |
1817 if (bgcol == 0xffffffUL) | |
1818 SetBkMode(prt_dlg.hDC, TRANSPARENT); | |
1819 else | |
1820 SetBkMode(prt_dlg.hDC, OPAQUE); | |
1821 } | |
1822 | |
1823 void | |
843 | 1824 mch_print_set_fg(long_u fgcol) |
7 | 1825 { |
843 | 1826 SetTextColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC, |
1827 swap_me((COLORREF)fgcol))); | |
7 | 1828 } |
1829 | |
1830 #endif /*FEAT_PRINTER && !FEAT_POSTSCRIPT*/ | |
1831 | |
440 | 1832 |
1833 | |
7 | 1834 #if defined(FEAT_SHORTCUT) || defined(PROTO) |
3927 | 1835 # ifndef PROTO |
1836 # include <shlobj.h> | |
1837 # endif | |
7 | 1838 |
1839 /* | |
1840 * When "fname" is the name of a shortcut (*.lnk) resolve the file it points | |
1841 * to and return that name in allocated memory. | |
1842 * Otherwise NULL is returned. | |
1843 */ | |
1844 char_u * | |
1845 mch_resolve_shortcut(char_u *fname) | |
1846 { | |
1847 HRESULT hr; | |
1848 IShellLink *psl = NULL; | |
1849 IPersistFile *ppf = NULL; | |
1850 OLECHAR wsz[MAX_PATH]; | |
1851 WIN32_FIND_DATA ffd; // we get those free of charge | |
5318 | 1852 CHAR buf[MAX_PATH]; // could have simply reused 'wsz'... |
7 | 1853 char_u *rfname = NULL; |
1854 int len; | |
5318 | 1855 # ifdef FEAT_MBYTE |
1856 IShellLinkW *pslw = NULL; | |
1857 WIN32_FIND_DATAW ffdw; // we get those free of charge | |
1858 # endif | |
7 | 1859 |
1860 /* Check if the file name ends in ".lnk". Avoid calling | |
1861 * CoCreateInstance(), it's quite slow. */ | |
1862 if (fname == NULL) | |
1863 return rfname; | |
835 | 1864 len = (int)STRLEN(fname); |
7 | 1865 if (len <= 4 || STRNICMP(fname + len - 4, ".lnk", 4) != 0) |
1866 return rfname; | |
1867 | |
1868 CoInitialize(NULL); | |
1869 | |
5318 | 1870 # ifdef FEAT_MBYTE |
1871 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
1872 { | |
1873 // create a link manager object and request its interface | |
1874 hr = CoCreateInstance( | |
1875 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, | |
1876 &IID_IShellLinkW, (void**)&pslw); | |
1877 if (hr == S_OK) | |
1878 { | |
1879 WCHAR *p = enc_to_utf16(fname, NULL); | |
1880 | |
1881 if (p != NULL) | |
1882 { | |
1883 // Get a pointer to the IPersistFile interface. | |
1884 hr = pslw->lpVtbl->QueryInterface( | |
1885 pslw, &IID_IPersistFile, (void**)&ppf); | |
1886 if (hr != S_OK) | |
1887 goto shortcut_errorw; | |
1888 | |
1889 // "load" the name and resolve the link | |
1890 hr = ppf->lpVtbl->Load(ppf, p, STGM_READ); | |
1891 if (hr != S_OK) | |
1892 goto shortcut_errorw; | |
1893 # if 0 // This makes Vim wait a long time if the target does not exist. | |
1894 hr = pslw->lpVtbl->Resolve(pslw, NULL, SLR_NO_UI); | |
1895 if (hr != S_OK) | |
1896 goto shortcut_errorw; | |
1897 # endif | |
1898 | |
1899 // Get the path to the link target. | |
1900 ZeroMemory(wsz, MAX_PATH * sizeof(WCHAR)); | |
1901 hr = pslw->lpVtbl->GetPath(pslw, wsz, MAX_PATH, &ffdw, 0); | |
1902 if (hr == S_OK && wsz[0] != NUL) | |
1903 rfname = utf16_to_enc(wsz, NULL); | |
1904 | |
1905 shortcut_errorw: | |
1906 vim_free(p); | |
5657 | 1907 goto shortcut_end; |
5318 | 1908 } |
1909 } | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1910 goto shortcut_end; |
5318 | 1911 } |
1912 # endif | |
7 | 1913 // create a link manager object and request its interface |
1914 hr = CoCreateInstance( | |
1915 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, | |
1916 &IID_IShellLink, (void**)&psl); | |
1917 if (hr != S_OK) | |
5318 | 1918 goto shortcut_end; |
7 | 1919 |
1920 // Get a pointer to the IPersistFile interface. | |
1921 hr = psl->lpVtbl->QueryInterface( | |
1922 psl, &IID_IPersistFile, (void**)&ppf); | |
1923 if (hr != S_OK) | |
5318 | 1924 goto shortcut_end; |
7 | 1925 |
1926 // full path string must be in Unicode. | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1927 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)fname, -1, wsz, MAX_PATH); |
7 | 1928 |
1199 | 1929 // "load" the name and resolve the link |
7 | 1930 hr = ppf->lpVtbl->Load(ppf, wsz, STGM_READ); |
1931 if (hr != S_OK) | |
5318 | 1932 goto shortcut_end; |
1933 # if 0 // This makes Vim wait a long time if the target doesn't exist. | |
7 | 1934 hr = psl->lpVtbl->Resolve(psl, NULL, SLR_NO_UI); |
1935 if (hr != S_OK) | |
5318 | 1936 goto shortcut_end; |
1937 # endif | |
7 | 1938 |
1939 // Get the path to the link target. | |
1940 ZeroMemory(buf, MAX_PATH); | |
1941 hr = psl->lpVtbl->GetPath(psl, buf, MAX_PATH, &ffd, 0); | |
1942 if (hr == S_OK && buf[0] != NUL) | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1943 rfname = vim_strsave((char_u *)buf); |
7 | 1944 |
5318 | 1945 shortcut_end: |
7 | 1946 // Release all interface pointers (both belong to the same object) |
1947 if (ppf != NULL) | |
1948 ppf->lpVtbl->Release(ppf); | |
1949 if (psl != NULL) | |
1950 psl->lpVtbl->Release(psl); | |
5318 | 1951 # ifdef FEAT_MBYTE |
1952 if (pslw != NULL) | |
1953 pslw->lpVtbl->Release(pslw); | |
1954 # endif | |
7 | 1955 |
1956 CoUninitialize(); | |
1957 return rfname; | |
1958 } | |
1959 #endif | |
1960 | |
1961 #if (defined(FEAT_EVAL) && !defined(FEAT_GUI)) || defined(PROTO) | |
1962 /* | |
1963 * Bring ourselves to the foreground. Does work if the OS doesn't allow it. | |
1964 */ | |
1965 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
1966 win32_set_foreground(void) |
7 | 1967 { |
1968 # ifndef FEAT_GUI | |
1969 GetConsoleHwnd(); /* get value of s_hwnd */ | |
1970 # endif | |
1971 if (s_hwnd != 0) | |
1972 SetForegroundWindow(s_hwnd); | |
1973 } | |
1974 #endif | |
1975 | |
1976 #if defined(FEAT_CLIENTSERVER) || defined(PROTO) | |
1977 /* | |
1978 * Client-server code for Vim | |
1979 * | |
1980 * Originally written by Paul Moore | |
1981 */ | |
1982 | |
1983 /* In order to handle inter-process messages, we need to have a window. But | |
1984 * the functions in this module can be called before the main GUI window is | |
1985 * created (and may also be called in the console version, where there is no | |
1986 * GUI window at all). | |
1987 * | |
1988 * So we create a hidden window, and arrange to destroy it on exit. | |
1989 */ | |
4352 | 1990 HWND message_window = 0; /* window that's handling messages */ |
7 | 1991 |
1992 #define VIM_CLASSNAME "VIM_MESSAGES" | |
1993 #define VIM_CLASSNAME_LEN (sizeof(VIM_CLASSNAME) - 1) | |
1994 | |
1995 /* Communication is via WM_COPYDATA messages. The message type is send in | |
1996 * the dwData parameter. Types are defined here. */ | |
1997 #define COPYDATA_KEYS 0 | |
1998 #define COPYDATA_REPLY 1 | |
1999 #define COPYDATA_EXPR 10 | |
2000 #define COPYDATA_RESULT 11 | |
2001 #define COPYDATA_ERROR_RESULT 12 | |
39 | 2002 #define COPYDATA_ENCODING 20 |
7 | 2003 |
2004 /* This is a structure containing a server HWND and its name. */ | |
2005 struct server_id | |
2006 { | |
2007 HWND hwnd; | |
2008 char_u *name; | |
2009 }; | |
2010 | |
39 | 2011 /* Last received 'encoding' that the client uses. */ |
2012 static char_u *client_enc = NULL; | |
2013 | |
2014 /* | |
2015 * Tell the other side what encoding we are using. | |
2016 * Errors are ignored. | |
2017 */ | |
2018 static void | |
2019 serverSendEnc(HWND target) | |
2020 { | |
2021 COPYDATASTRUCT data; | |
2022 | |
2023 data.dwData = COPYDATA_ENCODING; | |
179 | 2024 #ifdef FEAT_MBYTE |
835 | 2025 data.cbData = (DWORD)STRLEN(p_enc) + 1; |
39 | 2026 data.lpData = p_enc; |
179 | 2027 #else |
2419
f579b934f51d
Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2028 data.cbData = (DWORD)STRLEN("latin1") + 1; |
179 | 2029 data.lpData = "latin1"; |
2030 #endif | |
39 | 2031 (void)SendMessage(target, WM_COPYDATA, (WPARAM)message_window, |
2032 (LPARAM)(&data)); | |
2033 } | |
2034 | |
7 | 2035 /* |
2036 * Clean up on exit. This destroys the hidden message window. | |
2037 */ | |
2038 static void | |
2039 #ifdef __BORLANDC__ | |
2040 _RTLENTRYF | |
2041 #endif | |
2042 CleanUpMessaging(void) | |
2043 { | |
2044 if (message_window != 0) | |
2045 { | |
2046 DestroyWindow(message_window); | |
2047 message_window = 0; | |
2048 } | |
2049 } | |
2050 | |
2051 static int save_reply(HWND server, char_u *reply, int expr); | |
2052 | |
4352 | 2053 /* |
7 | 2054 * The window procedure for the hidden message window. |
2055 * It handles callback messages and notifications from servers. | |
2056 * In order to process these messages, it is necessary to run a | |
2057 * message loop. Code which may run before the main message loop | |
2058 * is started (in the GUI) is careful to pump messages when it needs | |
2059 * to. Features which require message delivery during normal use will | |
2060 * not work in the console version - this basically means those | |
2061 * features which allow Vim to act as a server, rather than a client. | |
2062 */ | |
2063 static LRESULT CALLBACK | |
2064 Messaging_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) | |
2065 { | |
2066 if (msg == WM_COPYDATA) | |
2067 { | |
2068 /* This is a message from another Vim. The dwData member of the | |
2069 * COPYDATASTRUCT determines the type of message: | |
39 | 2070 * COPYDATA_ENCODING: |
2071 * The encoding that the client uses. Following messages will | |
2072 * use this encoding, convert if needed. | |
7 | 2073 * COPYDATA_KEYS: |
2074 * A key sequence. We are a server, and a client wants these keys | |
2075 * adding to the input queue. | |
2076 * COPYDATA_REPLY: | |
2077 * A reply. We are a client, and a server has sent this message | |
2078 * in response to a request. (server2client()) | |
2079 * COPYDATA_EXPR: | |
2080 * An expression. We are a server, and a client wants us to | |
2081 * evaluate this expression. | |
2082 * COPYDATA_RESULT: | |
2083 * A reply. We are a client, and a server has sent this message | |
2084 * in response to a COPYDATA_EXPR. | |
2085 * COPYDATA_ERROR_RESULT: | |
2086 * A reply. We are a client, and a server has sent this message | |
2087 * in response to a COPYDATA_EXPR that failed to evaluate. | |
2088 */ | |
2089 COPYDATASTRUCT *data = (COPYDATASTRUCT*)lParam; | |
2090 HWND sender = (HWND)wParam; | |
2091 COPYDATASTRUCT reply; | |
2092 char_u *res; | |
2093 int retval; | |
39 | 2094 char_u *str; |
2095 char_u *tofree; | |
7 | 2096 |
2097 switch (data->dwData) | |
2098 { | |
39 | 2099 case COPYDATA_ENCODING: |
180 | 2100 # ifdef FEAT_MBYTE |
39 | 2101 /* Remember the encoding that the client uses. */ |
2102 vim_free(client_enc); | |
2103 client_enc = enc_canonize((char_u *)data->lpData); | |
180 | 2104 # endif |
39 | 2105 return 1; |
2106 | |
7 | 2107 case COPYDATA_KEYS: |
2108 /* Remember who sent this, for <client> */ | |
2109 clientWindow = sender; | |
2110 | |
2111 /* Add the received keys to the input buffer. The loop waiting | |
2112 * for the user to do something should check the input buffer. */ | |
39 | 2113 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree); |
2114 server_to_input_buf(str); | |
2115 vim_free(tofree); | |
7 | 2116 |
2117 # ifdef FEAT_GUI | |
2118 /* Wake up the main GUI loop. */ | |
2119 if (s_hwnd != 0) | |
2120 PostMessage(s_hwnd, WM_NULL, 0, 0); | |
2121 # endif | |
2122 return 1; | |
2123 | |
2124 case COPYDATA_EXPR: | |
2125 /* Remember who sent this, for <client> */ | |
2126 clientWindow = sender; | |
2127 | |
39 | 2128 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree); |
2129 res = eval_client_expr_to_string(str); | |
2130 | |
7 | 2131 if (res == NULL) |
2132 { | |
11175
9836b701afd9
patch 8.0.0474: the client-server feature is not tested
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2133 char *err = _(e_invexprmsg); |
9836b701afd9
patch 8.0.0474: the client-server feature is not tested
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2134 size_t len = STRLEN(str) + STRLEN(err) + 5; |
9836b701afd9
patch 8.0.0474: the client-server feature is not tested
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2135 |
11215
2e4877acfe0a
patch 8.0.0494: build failure with older compiler on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11211
diff
changeset
|
2136 res = alloc((unsigned)len); |
11175
9836b701afd9
patch 8.0.0474: the client-server feature is not tested
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2137 if (res != NULL) |
9836b701afd9
patch 8.0.0474: the client-server feature is not tested
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2138 vim_snprintf((char *)res, len, "%s: \"%s\"", err, str); |
7 | 2139 reply.dwData = COPYDATA_ERROR_RESULT; |
2140 } | |
2141 else | |
2142 reply.dwData = COPYDATA_RESULT; | |
2143 reply.lpData = res; | |
835 | 2144 reply.cbData = (DWORD)STRLEN(res) + 1; |
7 | 2145 |
39 | 2146 serverSendEnc(sender); |
4932
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
2147 retval = (int)SendMessage(sender, WM_COPYDATA, |
1cf02fbe6281
updated for version 7.3.1211
Bram Moolenaar <bram@vim.org>
parents:
4926
diff
changeset
|
2148 (WPARAM)message_window, (LPARAM)(&reply)); |
11175
9836b701afd9
patch 8.0.0474: the client-server feature is not tested
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2149 vim_free(tofree); |
7 | 2150 vim_free(res); |
2151 return retval; | |
2152 | |
2153 case COPYDATA_REPLY: | |
2154 case COPYDATA_RESULT: | |
2155 case COPYDATA_ERROR_RESULT: | |
2156 if (data->lpData != NULL) | |
2157 { | |
39 | 2158 str = serverConvert(client_enc, (char_u *)data->lpData, |
2159 &tofree); | |
2160 if (tofree == NULL) | |
2161 str = vim_strsave(str); | |
2162 if (save_reply(sender, str, | |
7 | 2163 (data->dwData == COPYDATA_REPLY ? 0 : |
2164 (data->dwData == COPYDATA_RESULT ? 1 : | |
39 | 2165 2))) == FAIL) |
2166 vim_free(str); | |
7 | 2167 #ifdef FEAT_AUTOCMD |
39 | 2168 else if (data->dwData == COPYDATA_REPLY) |
7 | 2169 { |
4926
784e342ddcae
updated for version 7.3.1208
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
2170 char_u winstr[30]; |
784e342ddcae
updated for version 7.3.1208
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
2171 |
840 | 2172 sprintf((char *)winstr, PRINTF_HEX_LONG_U, (long_u)sender); |
39 | 2173 apply_autocmds(EVENT_REMOTEREPLY, winstr, str, |
7 | 2174 TRUE, curbuf); |
2175 } | |
2176 #endif | |
2177 } | |
2178 return 1; | |
2179 } | |
2180 | |
2181 return 0; | |
2182 } | |
2183 | |
2184 else if (msg == WM_ACTIVATE && wParam == WA_ACTIVE) | |
2185 { | |
2186 /* When the message window is activated (brought to the foreground), | |
2187 * this actually applies to the text window. */ | |
2188 #ifndef FEAT_GUI | |
2189 GetConsoleHwnd(); /* get value of s_hwnd */ | |
2190 #endif | |
2191 if (s_hwnd != 0) | |
2192 { | |
2193 SetForegroundWindow(s_hwnd); | |
2194 return 0; | |
2195 } | |
2196 } | |
2197 | |
2198 return DefWindowProc(hwnd, msg, wParam, lParam); | |
2199 } | |
2200 | |
2201 /* | |
2202 * Initialise the message handling process. This involves creating a window | |
2203 * to handle messages - the window will not be visible. | |
2204 */ | |
2205 void | |
2206 serverInitMessaging(void) | |
2207 { | |
2208 WNDCLASS wndclass; | |
2209 HINSTANCE s_hinst; | |
2210 | |
2211 /* Clean up on exit */ | |
2212 atexit(CleanUpMessaging); | |
2213 | |
2214 /* Register a window class - we only really care | |
2215 * about the window procedure | |
2216 */ | |
2217 s_hinst = (HINSTANCE)GetModuleHandle(0); | |
2218 wndclass.style = 0; | |
2219 wndclass.lpfnWndProc = Messaging_WndProc; | |
2220 wndclass.cbClsExtra = 0; | |
2221 wndclass.cbWndExtra = 0; | |
2222 wndclass.hInstance = s_hinst; | |
2223 wndclass.hIcon = NULL; | |
2224 wndclass.hCursor = NULL; | |
2225 wndclass.hbrBackground = NULL; | |
2226 wndclass.lpszMenuName = NULL; | |
2227 wndclass.lpszClassName = VIM_CLASSNAME; | |
2228 RegisterClass(&wndclass); | |
2229 | |
2230 /* Create the message window. It will be hidden, so the details don't | |
2231 * matter. Don't use WS_OVERLAPPEDWINDOW, it will make a shortcut remove | |
2232 * focus from gvim. */ | |
2233 message_window = CreateWindow(VIM_CLASSNAME, "", | |
2234 WS_POPUPWINDOW | WS_CAPTION, | |
2235 CW_USEDEFAULT, CW_USEDEFAULT, | |
2236 100, 100, NULL, NULL, | |
2237 s_hinst, NULL); | |
2238 } | |
2239 | |
844 | 2240 /* Used by serverSendToVim() to find an alternate server name. */ |
2241 static char_u *altname_buf_ptr = NULL; | |
2242 | |
7 | 2243 /* |
2244 * Get the title of the window "hwnd", which is the Vim server name, in | |
2245 * "name[namelen]" and return the length. | |
2246 * Returns zero if window "hwnd" is not a Vim server. | |
2247 */ | |
2248 static int | |
2249 getVimServerName(HWND hwnd, char *name, int namelen) | |
2250 { | |
2251 int len; | |
2252 char buffer[VIM_CLASSNAME_LEN + 1]; | |
2253 | |
2254 /* Ignore windows which aren't Vim message windows */ | |
2255 len = GetClassName(hwnd, buffer, sizeof(buffer)); | |
2256 if (len != VIM_CLASSNAME_LEN || STRCMP(buffer, VIM_CLASSNAME) != 0) | |
2257 return 0; | |
2258 | |
2259 /* Get the title of the window */ | |
2260 return GetWindowText(hwnd, name, namelen); | |
2261 } | |
2262 | |
2263 static BOOL CALLBACK | |
2264 enumWindowsGetServer(HWND hwnd, LPARAM lparam) | |
2265 { | |
2266 struct server_id *id = (struct server_id *)lparam; | |
2267 char server[MAX_PATH]; | |
2268 | |
2269 /* Get the title of the window */ | |
2270 if (getVimServerName(hwnd, server, sizeof(server)) == 0) | |
2271 return TRUE; | |
2272 | |
2273 /* If this is the server we're looking for, return its HWND */ | |
2274 if (STRICMP(server, id->name) == 0) | |
2275 { | |
2276 id->hwnd = hwnd; | |
2277 return FALSE; | |
2278 } | |
2279 | |
844 | 2280 /* If we are looking for an alternate server, remember this name. */ |
2281 if (altname_buf_ptr != NULL | |
2282 && STRNICMP(server, id->name, STRLEN(id->name)) == 0 | |
2283 && vim_isdigit(server[STRLEN(id->name)])) | |
2284 { | |
2285 STRCPY(altname_buf_ptr, server); | |
2286 altname_buf_ptr = NULL; /* don't use another name */ | |
2287 } | |
2288 | |
7 | 2289 /* Otherwise, keep looking */ |
2290 return TRUE; | |
2291 } | |
2292 | |
2293 static BOOL CALLBACK | |
2294 enumWindowsGetNames(HWND hwnd, LPARAM lparam) | |
2295 { | |
2296 garray_T *ga = (garray_T *)lparam; | |
2297 char server[MAX_PATH]; | |
2298 | |
2299 /* Get the title of the window */ | |
2300 if (getVimServerName(hwnd, server, sizeof(server)) == 0) | |
2301 return TRUE; | |
2302 | |
2303 /* Add the name to the list */ | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2304 ga_concat(ga, (char_u *)server); |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2305 ga_concat(ga, (char_u *)"\n"); |
7 | 2306 return TRUE; |
2307 } | |
2308 | |
2309 static HWND | |
2310 findServer(char_u *name) | |
2311 { | |
2312 struct server_id id; | |
2313 | |
2314 id.name = name; | |
2315 id.hwnd = 0; | |
2316 | |
2317 EnumWindows(enumWindowsGetServer, (LPARAM)(&id)); | |
2318 | |
2319 return id.hwnd; | |
2320 } | |
2321 | |
2322 void | |
2323 serverSetName(char_u *name) | |
2324 { | |
2325 char_u *ok_name; | |
2326 HWND hwnd = 0; | |
2327 int i = 0; | |
2328 char_u *p; | |
2329 | |
2330 /* Leave enough space for a 9-digit suffix to ensure uniqueness! */ | |
835 | 2331 ok_name = alloc((unsigned)STRLEN(name) + 10); |
7 | 2332 |
2333 STRCPY(ok_name, name); | |
2334 p = ok_name + STRLEN(name); | |
2335 | |
2336 for (;;) | |
2337 { | |
2338 /* This is inefficient - we're doing an EnumWindows loop for each | |
2339 * possible name. It would be better to grab all names in one go, | |
2340 * and scan the list each time... | |
2341 */ | |
2342 hwnd = findServer(ok_name); | |
2343 if (hwnd == 0) | |
2344 break; | |
2345 | |
2346 ++i; | |
2347 if (i >= 1000) | |
2348 break; | |
2349 | |
2350 sprintf((char *)p, "%d", i); | |
2351 } | |
2352 | |
2353 if (hwnd != 0) | |
2354 vim_free(ok_name); | |
2355 else | |
2356 { | |
2357 /* Remember the name */ | |
2358 serverName = ok_name; | |
2359 #ifdef FEAT_TITLE | |
2360 need_maketitle = TRUE; /* update Vim window title later */ | |
2361 #endif | |
2362 | |
2363 /* Update the message window title */ | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2364 SetWindowText(message_window, (LPCSTR)ok_name); |
7 | 2365 |
2366 #ifdef FEAT_EVAL | |
2367 /* Set the servername variable */ | |
2368 set_vim_var_string(VV_SEND_SERVER, serverName, -1); | |
2369 #endif | |
2370 } | |
2371 } | |
2372 | |
2373 char_u * | |
2374 serverGetVimNames(void) | |
2375 { | |
2376 garray_T ga; | |
2377 | |
2378 ga_init2(&ga, 1, 100); | |
2379 | |
2380 EnumWindows(enumWindowsGetNames, (LPARAM)(&ga)); | |
21 | 2381 ga_append(&ga, NUL); |
7 | 2382 |
2383 return ga.ga_data; | |
2384 } | |
2385 | |
2386 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2387 serverSendReply( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2388 char_u *name, /* Where to send. */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2389 char_u *reply) /* What to send. */ |
7 | 2390 { |
2391 HWND target; | |
2392 COPYDATASTRUCT data; | |
840 | 2393 long_u n = 0; |
7 | 2394 |
2395 /* The "name" argument is a magic cookie obtained from expand("<client>"). | |
2396 * It should be of the form 0xXXXXX - i.e. a C hex literal, which is the | |
2397 * value of the client's message window HWND. | |
2398 */ | |
840 | 2399 sscanf((char *)name, SCANF_HEX_LONG_U, &n); |
7 | 2400 if (n == 0) |
2401 return -1; | |
2402 | |
2403 target = (HWND)n; | |
2404 if (!IsWindow(target)) | |
2405 return -1; | |
2406 | |
2407 data.dwData = COPYDATA_REPLY; | |
835 | 2408 data.cbData = (DWORD)STRLEN(reply) + 1; |
7 | 2409 data.lpData = reply; |
2410 | |
39 | 2411 serverSendEnc(target); |
7 | 2412 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window, |
2413 (LPARAM)(&data))) | |
2414 return 0; | |
2415 | |
2416 return -1; | |
2417 } | |
2418 | |
2419 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2420 serverSendToVim( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2421 char_u *name, /* Where to send. */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2422 char_u *cmd, /* What to send. */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2423 char_u **result, /* Result of eval'ed expression */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2424 void *ptarget, /* HWND of server */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2425 int asExpr, /* Expression or keys? */ |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11187
diff
changeset
|
2426 int timeout, /* timeout in seconds or zero */ |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2427 int silent) /* don't complain about no server */ |
7 | 2428 { |
844 | 2429 HWND target; |
7 | 2430 COPYDATASTRUCT data; |
2431 char_u *retval = NULL; | |
2432 int retcode = 0; | |
844 | 2433 char_u altname_buf[MAX_PATH]; |
2434 | |
11177
76fb679a310e
patch 8.0.0475: not enough testing for the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11175
diff
changeset
|
2435 /* Execute locally if no display or target is ourselves */ |
76fb679a310e
patch 8.0.0475: not enough testing for the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11175
diff
changeset
|
2436 if (serverName != NULL && STRICMP(name, serverName) == 0) |
76fb679a310e
patch 8.0.0475: not enough testing for the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11175
diff
changeset
|
2437 return sendToLocalVim(cmd, asExpr, result); |
76fb679a310e
patch 8.0.0475: not enough testing for the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11175
diff
changeset
|
2438 |
844 | 2439 /* If the server name does not end in a digit then we look for an |
2440 * alternate name. e.g. when "name" is GVIM the we may find GVIM2. */ | |
2441 if (STRLEN(name) > 1 && !vim_isdigit(name[STRLEN(name) - 1])) | |
2442 altname_buf_ptr = altname_buf; | |
2443 altname_buf[0] = NUL; | |
2444 target = findServer(name); | |
2445 altname_buf_ptr = NULL; | |
2446 if (target == 0 && altname_buf[0] != NUL) | |
2447 /* Use another server name we found. */ | |
2448 target = findServer(altname_buf); | |
7 | 2449 |
2450 if (target == 0) | |
2451 { | |
2452 if (!silent) | |
2453 EMSG2(_(e_noserver), name); | |
2454 return -1; | |
2455 } | |
2456 | |
2457 if (ptarget) | |
2458 *(HWND *)ptarget = target; | |
2459 | |
2460 data.dwData = asExpr ? COPYDATA_EXPR : COPYDATA_KEYS; | |
835 | 2461 data.cbData = (DWORD)STRLEN(cmd) + 1; |
7 | 2462 data.lpData = cmd; |
2463 | |
39 | 2464 serverSendEnc(target); |
7 | 2465 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window, |
2466 (LPARAM)(&data)) == 0) | |
2467 return -1; | |
2468 | |
2469 if (asExpr) | |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11187
diff
changeset
|
2470 retval = serverGetReply(target, &retcode, TRUE, TRUE, timeout); |
7 | 2471 |
2472 if (result == NULL) | |
2473 vim_free(retval); | |
2474 else | |
2475 *result = retval; /* Caller assumes responsibility for freeing */ | |
2476 | |
2477 return retcode; | |
2478 } | |
2479 | |
2480 /* | |
2481 * Bring the server to the foreground. | |
2482 */ | |
2483 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2484 serverForeground(char_u *name) |
7 | 2485 { |
2486 HWND target = findServer(name); | |
2487 | |
2488 if (target != 0) | |
2489 SetForegroundWindow(target); | |
2490 } | |
2491 | |
2492 /* Replies from server need to be stored until the client picks them up via | |
2493 * remote_read(). So we maintain a list of server-id/reply pairs. | |
2494 * Note that there could be multiple replies from one server pending if the | |
2495 * client is slow picking them up. | |
2496 * We just store the replies in a simple list. When we remove an entry, we | |
2497 * move list entries down to fill the gap. | |
2498 * The server ID is simply the HWND. | |
2499 */ | |
2500 typedef struct | |
2501 { | |
2502 HWND server; /* server window */ | |
2503 char_u *reply; /* reply string */ | |
2504 int expr_result; /* 0 for REPLY, 1 for RESULT 2 for error */ | |
323 | 2505 } reply_T; |
7 | 2506 |
2507 static garray_T reply_list = {0, 0, sizeof(reply_T), 5, 0}; | |
2508 | |
2509 #define REPLY_ITEM(i) ((reply_T *)(reply_list.ga_data) + (i)) | |
2510 #define REPLY_COUNT (reply_list.ga_len) | |
2511 | |
2512 /* Flag which is used to wait for a reply */ | |
2513 static int reply_received = 0; | |
2514 | |
39 | 2515 /* |
2516 * Store a reply. "reply" must be allocated memory (or NULL). | |
2517 */ | |
7 | 2518 static int |
2519 save_reply(HWND server, char_u *reply, int expr) | |
2520 { | |
2521 reply_T *rep; | |
2522 | |
2523 if (ga_grow(&reply_list, 1) == FAIL) | |
2524 return FAIL; | |
2525 | |
2526 rep = REPLY_ITEM(REPLY_COUNT); | |
2527 rep->server = server; | |
39 | 2528 rep->reply = reply; |
7 | 2529 rep->expr_result = expr; |
2530 if (rep->reply == NULL) | |
2531 return FAIL; | |
2532 | |
2533 ++REPLY_COUNT; | |
2534 reply_received = 1; | |
2535 return OK; | |
2536 } | |
2537 | |
2538 /* | |
2539 * Get a reply from server "server". | |
2540 * When "expr_res" is non NULL, get the result of an expression, otherwise a | |
2541 * server2client() message. | |
2542 * When non NULL, point to return code. 0 => OK, -1 => ERROR | |
2543 * If "remove" is TRUE, consume the message, the caller must free it then. | |
2544 * if "wait" is TRUE block until a message arrives (or the server exits). | |
2545 */ | |
2546 char_u * | |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11187
diff
changeset
|
2547 serverGetReply(HWND server, int *expr_res, int remove, int wait, int timeout) |
7 | 2548 { |
2549 int i; | |
2550 char_u *reply; | |
2551 reply_T *rep; | |
11187
515db00c4676
patch 8.0.0480: the remote_peek() test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11181
diff
changeset
|
2552 int did_process = FALSE; |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11187
diff
changeset
|
2553 time_t start; |
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11187
diff
changeset
|
2554 time_t now; |
7 | 2555 |
2556 /* When waiting, loop until the message waiting for is received. */ | |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11187
diff
changeset
|
2557 time(&start); |
7 | 2558 for (;;) |
2559 { | |
2560 /* Reset this here, in case a message arrives while we are going | |
2561 * through the already received messages. */ | |
2562 reply_received = 0; | |
2563 | |
2564 for (i = 0; i < REPLY_COUNT; ++i) | |
2565 { | |
2566 rep = REPLY_ITEM(i); | |
2567 if (rep->server == server | |
2568 && ((rep->expr_result != 0) == (expr_res != NULL))) | |
2569 { | |
2570 /* Save the values we've found for later */ | |
2571 reply = rep->reply; | |
2572 if (expr_res != NULL) | |
2573 *expr_res = rep->expr_result == 1 ? 0 : -1; | |
2574 | |
2575 if (remove) | |
2576 { | |
2577 /* Move the rest of the list down to fill the gap */ | |
2578 mch_memmove(rep, rep + 1, | |
2579 (REPLY_COUNT - i - 1) * sizeof(reply_T)); | |
2580 --REPLY_COUNT; | |
2581 } | |
2582 | |
2583 /* Return the reply to the caller, who takes on responsibility | |
2584 * for freeing it if "remove" is TRUE. */ | |
2585 return reply; | |
2586 } | |
2587 } | |
2588 | |
2589 /* If we got here, we didn't find a reply. Return immediately if the | |
2590 * "wait" parameter isn't set. */ | |
2591 if (!wait) | |
11187
515db00c4676
patch 8.0.0480: the remote_peek() test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11181
diff
changeset
|
2592 { |
515db00c4676
patch 8.0.0480: the remote_peek() test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11181
diff
changeset
|
2593 /* Process pending messages once. Without this, looping on |
515db00c4676
patch 8.0.0480: the remote_peek() test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11181
diff
changeset
|
2594 * remote_peek() would never get the reply. */ |
515db00c4676
patch 8.0.0480: the remote_peek() test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11181
diff
changeset
|
2595 if (!did_process) |
515db00c4676
patch 8.0.0480: the remote_peek() test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11181
diff
changeset
|
2596 { |
515db00c4676
patch 8.0.0480: the remote_peek() test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11181
diff
changeset
|
2597 did_process = TRUE; |
515db00c4676
patch 8.0.0480: the remote_peek() test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11181
diff
changeset
|
2598 serverProcessPendingMessages(); |
515db00c4676
patch 8.0.0480: the remote_peek() test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11181
diff
changeset
|
2599 continue; |
515db00c4676
patch 8.0.0480: the remote_peek() test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11181
diff
changeset
|
2600 } |
7 | 2601 break; |
11187
515db00c4676
patch 8.0.0480: the remote_peek() test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11181
diff
changeset
|
2602 } |
7 | 2603 |
2604 /* We need to wait for a reply. Enter a message loop until the | |
2605 * "reply_received" flag gets set. */ | |
2606 | |
2607 /* Loop until we receive a reply */ | |
2608 while (reply_received == 0) | |
2609 { | |
11181
13544aa85dc0
patch 8.0.0477: the client-server test may hang when failing
Christian Brabandt <cb@256bit.org>
parents:
11177
diff
changeset
|
2610 #ifdef FEAT_TIMERS |
13544aa85dc0
patch 8.0.0477: the client-server test may hang when failing
Christian Brabandt <cb@256bit.org>
parents:
11177
diff
changeset
|
2611 check_due_timer(); |
13544aa85dc0
patch 8.0.0477: the client-server test may hang when failing
Christian Brabandt <cb@256bit.org>
parents:
11177
diff
changeset
|
2612 #endif |
11211
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11187
diff
changeset
|
2613 time(&now); |
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11187
diff
changeset
|
2614 if (timeout > 0 && (now - start) >= timeout) |
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11187
diff
changeset
|
2615 break; |
71311d899b42
patch 8.0.0492: a failing client-server request can make Vim hang
Christian Brabandt <cb@256bit.org>
parents:
11187
diff
changeset
|
2616 |
7 | 2617 /* Wait for a SendMessage() call to us. This could be the reply |
2618 * we are waiting for. Use a timeout of a second, to catch the | |
2619 * situation that the server died unexpectedly. */ | |
2620 MsgWaitForMultipleObjects(0, NULL, TRUE, 1000, QS_ALLINPUT); | |
2621 | |
2622 /* If the server has died, give up */ | |
2623 if (!IsWindow(server)) | |
2624 return NULL; | |
2625 | |
2626 serverProcessPendingMessages(); | |
2627 } | |
2628 } | |
2629 | |
2630 return NULL; | |
2631 } | |
2632 | |
2633 /* | |
2634 * Process any messages in the Windows message queue. | |
2635 */ | |
2636 void | |
2637 serverProcessPendingMessages(void) | |
2638 { | |
2639 MSG msg; | |
2640 | |
3010 | 2641 while (pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) |
7 | 2642 { |
2643 TranslateMessage(&msg); | |
3010 | 2644 pDispatchMessage(&msg); |
7 | 2645 } |
2646 } | |
2647 | |
2648 #endif /* FEAT_CLIENTSERVER */ | |
2649 | |
2650 #if defined(FEAT_GUI) || (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) \ | |
2651 || defined(PROTO) | |
2652 | |
2653 struct charset_pair | |
2654 { | |
2655 char *name; | |
2656 BYTE charset; | |
2657 }; | |
2658 | |
2659 static struct charset_pair | |
2660 charset_pairs[] = | |
2661 { | |
2662 {"ANSI", ANSI_CHARSET}, | |
2663 {"CHINESEBIG5", CHINESEBIG5_CHARSET}, | |
2664 {"DEFAULT", DEFAULT_CHARSET}, | |
2665 {"HANGEUL", HANGEUL_CHARSET}, | |
2666 {"OEM", OEM_CHARSET}, | |
2667 {"SHIFTJIS", SHIFTJIS_CHARSET}, | |
2668 {"SYMBOL", SYMBOL_CHARSET}, | |
2669 {"ARABIC", ARABIC_CHARSET}, | |
2670 {"BALTIC", BALTIC_CHARSET}, | |
2671 {"EASTEUROPE", EASTEUROPE_CHARSET}, | |
2672 {"GB2312", GB2312_CHARSET}, | |
2673 {"GREEK", GREEK_CHARSET}, | |
2674 {"HEBREW", HEBREW_CHARSET}, | |
2675 {"JOHAB", JOHAB_CHARSET}, | |
2676 {"MAC", MAC_CHARSET}, | |
2677 {"RUSSIAN", RUSSIAN_CHARSET}, | |
2678 {"THAI", THAI_CHARSET}, | |
2679 {"TURKISH", TURKISH_CHARSET}, | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2680 #ifdef VIETNAMESE_CHARSET |
7 | 2681 {"VIETNAMESE", VIETNAMESE_CHARSET}, |
2682 #endif | |
2683 {NULL, 0} | |
2684 }; | |
2685 | |
8835
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2686 struct quality_pair |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2687 { |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2688 char *name; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2689 DWORD quality; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2690 }; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2691 |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2692 static struct quality_pair |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2693 quality_pairs[] = { |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2694 #ifdef CLEARTYPE_QUALITY |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2695 {"CLEARTYPE", CLEARTYPE_QUALITY}, |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2696 #endif |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2697 #ifdef ANTIALIASED_QUALITY |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2698 {"ANTIALIASED", ANTIALIASED_QUALITY}, |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2699 #endif |
9091
294cfd18e9c7
commit https://github.com/vim/vim/commit/73a733e08bb7853d2ac12c60756ae51e39abb4d9
Christian Brabandt <cb@256bit.org>
parents:
8843
diff
changeset
|
2700 #ifdef NONANTIALIASED_QUALITY |
294cfd18e9c7
commit https://github.com/vim/vim/commit/73a733e08bb7853d2ac12c60756ae51e39abb4d9
Christian Brabandt <cb@256bit.org>
parents:
8843
diff
changeset
|
2701 {"NONANTIALIASED", NONANTIALIASED_QUALITY}, |
8835
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2702 #endif |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2703 #ifdef PROOF_QUALITY |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2704 {"PROOF", PROOF_QUALITY}, |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2705 #endif |
8843
87a6a0d65788
commit https://github.com/vim/vim/commit/4c9ce053d9f2a94cd704342dd4c25670a5995cbd
Christian Brabandt <cb@256bit.org>
parents:
8835
diff
changeset
|
2706 #ifdef DRAFT_QUALITY |
8835
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2707 {"DRAFT", DRAFT_QUALITY}, |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2708 #endif |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2709 {"DEFAULT", DEFAULT_QUALITY}, |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2710 {NULL, 0} |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2711 }; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2712 |
7 | 2713 /* |
2714 * Convert a charset ID to a name. | |
2715 * Return NULL when not recognized. | |
2716 */ | |
2717 char * | |
2718 charset_id2name(int id) | |
2719 { | |
2720 struct charset_pair *cp; | |
2721 | |
2722 for (cp = charset_pairs; cp->name != NULL; ++cp) | |
2723 if ((BYTE)id == cp->charset) | |
2724 break; | |
2725 return cp->name; | |
2726 } | |
2727 | |
8835
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2728 /* |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2729 * Convert a quality ID to a name. |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2730 * Return NULL when not recognized. |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2731 */ |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2732 char * |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2733 quality_id2name(DWORD id) |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2734 { |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2735 struct quality_pair *qp; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2736 |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2737 for (qp = quality_pairs; qp->name != NULL; ++qp) |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2738 if (id == qp->quality) |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2739 break; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2740 return qp->name; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2741 } |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2742 |
7 | 2743 static const LOGFONT s_lfDefault = |
2744 { | |
2745 -12, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, DEFAULT_CHARSET, | |
2746 OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, | |
2747 PROOF_QUALITY, FIXED_PITCH | FF_DONTCARE, | |
2748 "Fixedsys" /* see _ReadVimIni */ | |
2749 }; | |
2750 | |
2751 /* Initialise the "current height" to -12 (same as s_lfDefault) just | |
2752 * in case the user specifies a font in "guifont" with no size before a font | |
2753 * with an explicit size has been set. This defaults the size to this value | |
2754 * (-12 equates to roughly 9pt). | |
2755 */ | |
2756 int current_font_height = -12; /* also used in gui_w48.c */ | |
2757 | |
2758 /* Convert a string representing a point size into pixels. The string should | |
2759 * be a positive decimal number, with an optional decimal point (eg, "12", or | |
2760 * "10.5"). The pixel value is returned, and a pointer to the next unconverted | |
2761 * character is stored in *end. The flag "vertical" says whether this | |
2762 * calculation is for a vertical (height) size or a horizontal (width) one. | |
2763 */ | |
2764 static int | |
840 | 2765 points_to_pixels(char_u *str, char_u **end, int vertical, long_i pprinter_dc) |
7 | 2766 { |
2767 int pixels; | |
2768 int points = 0; | |
2769 int divisor = 0; | |
2770 HWND hwnd = (HWND)0; | |
2771 HDC hdc; | |
2772 HDC printer_dc = (HDC)pprinter_dc; | |
2773 | |
2774 while (*str != NUL) | |
2775 { | |
2776 if (*str == '.' && divisor == 0) | |
2777 { | |
2778 /* Start keeping a divisor, for later */ | |
2779 divisor = 1; | |
2780 } | |
2781 else | |
2782 { | |
2783 if (!VIM_ISDIGIT(*str)) | |
2784 break; | |
2785 | |
2786 points *= 10; | |
2787 points += *str - '0'; | |
2788 divisor *= 10; | |
2789 } | |
2790 ++str; | |
2791 } | |
2792 | |
2793 if (divisor == 0) | |
2794 divisor = 1; | |
2795 | |
2796 if (printer_dc == NULL) | |
2797 { | |
2798 hwnd = GetDesktopWindow(); | |
2799 hdc = GetWindowDC(hwnd); | |
2800 } | |
2801 else | |
2802 hdc = printer_dc; | |
2803 | |
2804 pixels = MulDiv(points, | |
2805 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX), | |
2806 72 * divisor); | |
2807 | |
2808 if (printer_dc == NULL) | |
2809 ReleaseDC(hwnd, hdc); | |
2810 | |
2811 *end = str; | |
2812 return pixels; | |
2813 } | |
2814 | |
2815 static int CALLBACK | |
2816 font_enumproc( | |
2817 ENUMLOGFONT *elf, | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
2818 NEWTEXTMETRIC *ntm UNUSED, |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10440
diff
changeset
|
2819 int type UNUSED, |
7 | 2820 LPARAM lparam) |
2821 { | |
2822 /* Return value: | |
2823 * 0 = terminate now (monospace & ANSI) | |
2824 * 1 = continue, still no luck... | |
2825 * 2 = continue, but we have an acceptable LOGFONT | |
2826 * (monospace, not ANSI) | |
2827 * We use these values, as EnumFontFamilies returns 1 if the | |
2828 * callback function is never called. So, we check the return as | |
2829 * 0 = perfect, 2 = OK, 1 = no good... | |
2830 * It's not pretty, but it works! | |
2831 */ | |
2832 | |
2833 LOGFONT *lf = (LOGFONT *)(lparam); | |
2834 | |
2835 #ifndef FEAT_PROPORTIONAL_FONTS | |
2836 /* Ignore non-monospace fonts without further ado */ | |
2837 if ((ntm->tmPitchAndFamily & 1) != 0) | |
2838 return 1; | |
2839 #endif | |
2840 | |
2841 /* Remember this LOGFONT as a "possible" */ | |
2842 *lf = elf->elfLogFont; | |
2843 | |
2844 /* Terminate the scan as soon as we find an ANSI font */ | |
2845 if (lf->lfCharSet == ANSI_CHARSET | |
2846 || lf->lfCharSet == OEM_CHARSET | |
2847 || lf->lfCharSet == DEFAULT_CHARSET) | |
2848 return 0; | |
2849 | |
2850 /* Continue the scan - we have a non-ANSI font */ | |
2851 return 2; | |
2852 } | |
2853 | |
2854 static int | |
2855 init_logfont(LOGFONT *lf) | |
2856 { | |
2857 int n; | |
2858 HWND hwnd = GetDesktopWindow(); | |
2859 HDC hdc = GetWindowDC(hwnd); | |
2860 | |
2861 n = EnumFontFamilies(hdc, | |
2862 (LPCSTR)lf->lfFaceName, | |
2863 (FONTENUMPROC)font_enumproc, | |
2864 (LPARAM)lf); | |
2865 | |
2866 ReleaseDC(hwnd, hdc); | |
2867 | |
4352 | 2868 /* If we couldn't find a usable font, return failure */ |
7 | 2869 if (n == 1) |
2870 return FAIL; | |
2871 | |
2872 /* Tidy up the rest of the LOGFONT structure. We set to a basic | |
2873 * font - get_logfont() sets bold, italic, etc based on the user's | |
2874 * input. | |
2875 */ | |
2876 lf->lfHeight = current_font_height; | |
2877 lf->lfWidth = 0; | |
2878 lf->lfItalic = FALSE; | |
2879 lf->lfUnderline = FALSE; | |
2880 lf->lfStrikeOut = FALSE; | |
2881 lf->lfWeight = FW_NORMAL; | |
2882 | |
2883 /* Return success */ | |
2884 return OK; | |
2885 } | |
2886 | |
37 | 2887 /* |
2888 * Get font info from "name" into logfont "lf". | |
2889 * Return OK for a valid name, FAIL otherwise. | |
2890 */ | |
7 | 2891 int |
2892 get_logfont( | |
37 | 2893 LOGFONT *lf, |
2894 char_u *name, | |
2895 HDC printer_dc, | |
2896 int verbose) | |
7 | 2897 { |
2898 char_u *p; | |
2899 int i; | |
5714 | 2900 int ret = FAIL; |
7 | 2901 static LOGFONT *lastlf = NULL; |
5714 | 2902 #ifdef FEAT_MBYTE |
2903 char_u *acpname = NULL; | |
2904 #endif | |
7 | 2905 |
2906 *lf = s_lfDefault; | |
2907 if (name == NULL) | |
37 | 2908 return OK; |
7 | 2909 |
5714 | 2910 #ifdef FEAT_MBYTE |
2911 /* Convert 'name' from 'encoding' to the current codepage, because | |
2912 * lf->lfFaceName uses the current codepage. | |
2913 * TODO: Use Wide APIs instead of ANSI APIs. */ | |
2914 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2915 { | |
2916 int len; | |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
2917 enc_to_acp(name, (int)STRLEN(name), &acpname, &len); |
5714 | 2918 name = acpname; |
2919 } | |
2920 #endif | |
7 | 2921 if (STRCMP(name, "*") == 0) |
2922 { | |
2923 #if defined(FEAT_GUI_W32) | |
2924 CHOOSEFONT cf; | |
2925 /* if name is "*", bring up std font dialog: */ | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
1936
diff
changeset
|
2926 vim_memset(&cf, 0, sizeof(cf)); |
7 | 2927 cf.lStructSize = sizeof(cf); |
2928 cf.hwndOwner = s_hwnd; | |
2929 cf.Flags = CF_SCREENFONTS | CF_FIXEDPITCHONLY | CF_INITTOLOGFONTSTRUCT; | |
2930 if (lastlf != NULL) | |
2931 *lf = *lastlf; | |
2932 cf.lpLogFont = lf; | |
2933 cf.nFontType = 0 ; //REGULAR_FONTTYPE; | |
2934 if (ChooseFont(&cf)) | |
5714 | 2935 ret = OK; |
7 | 2936 #endif |
5714 | 2937 goto theend; |
7 | 2938 } |
2939 | |
2940 /* | |
2941 * Split name up, it could be <name>:h<height>:w<width> etc. | |
2942 */ | |
2943 for (p = name; *p && *p != ':'; p++) | |
2944 { | |
10355
9f88dba65a2d
commit https://github.com/vim/vim/commit/38bc49563782ee1cb91660e58acf1afe1a31020a
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
2945 if (p - name + 1 >= LF_FACESIZE) |
5714 | 2946 goto theend; /* Name too long */ |
7 | 2947 lf->lfFaceName[p - name] = *p; |
2948 } | |
2949 if (p != name) | |
2950 lf->lfFaceName[p - name] = NUL; | |
2951 | |
2952 /* First set defaults */ | |
2953 lf->lfHeight = -12; | |
2954 lf->lfWidth = 0; | |
2955 lf->lfWeight = FW_NORMAL; | |
2956 lf->lfItalic = FALSE; | |
2957 lf->lfUnderline = FALSE; | |
2958 lf->lfStrikeOut = FALSE; | |
2959 | |
2960 /* | |
2961 * If the font can't be found, try replacing '_' by ' '. | |
2962 */ | |
2963 if (init_logfont(lf) == FAIL) | |
2964 { | |
2965 int did_replace = FALSE; | |
2966 | |
2967 for (i = 0; lf->lfFaceName[i]; ++i) | |
12054
ee070a5eb3a0
patch 8.0.0907: with cp932 font names might be misinterpreted
Christian Brabandt <cb@256bit.org>
parents:
12015
diff
changeset
|
2968 if (IsDBCSLeadByte(lf->lfFaceName[i])) |
ee070a5eb3a0
patch 8.0.0907: with cp932 font names might be misinterpreted
Christian Brabandt <cb@256bit.org>
parents:
12015
diff
changeset
|
2969 ++i; |
ee070a5eb3a0
patch 8.0.0907: with cp932 font names might be misinterpreted
Christian Brabandt <cb@256bit.org>
parents:
12015
diff
changeset
|
2970 else if (lf->lfFaceName[i] == '_') |
7 | 2971 { |
2972 lf->lfFaceName[i] = ' '; | |
2973 did_replace = TRUE; | |
2974 } | |
2975 if (!did_replace || init_logfont(lf) == FAIL) | |
5714 | 2976 goto theend; |
7 | 2977 } |
2978 | |
2979 while (*p == ':') | |
2980 p++; | |
2981 | |
2982 /* Set the values found after ':' */ | |
2983 while (*p) | |
2984 { | |
2985 switch (*p++) | |
2986 { | |
2987 case 'h': | |
840 | 2988 lf->lfHeight = - points_to_pixels(p, &p, TRUE, (long_i)printer_dc); |
7 | 2989 break; |
2990 case 'w': | |
840 | 2991 lf->lfWidth = points_to_pixels(p, &p, FALSE, (long_i)printer_dc); |
7 | 2992 break; |
2993 case 'b': | |
2994 lf->lfWeight = FW_BOLD; | |
2995 break; | |
2996 case 'i': | |
2997 lf->lfItalic = TRUE; | |
2998 break; | |
2999 case 'u': | |
3000 lf->lfUnderline = TRUE; | |
3001 break; | |
3002 case 's': | |
3003 lf->lfStrikeOut = TRUE; | |
3004 break; | |
3005 case 'c': | |
3006 { | |
3007 struct charset_pair *cp; | |
3008 | |
3009 for (cp = charset_pairs; cp->name != NULL; ++cp) | |
3010 if (STRNCMP(p, cp->name, strlen(cp->name)) == 0) | |
3011 { | |
3012 lf->lfCharSet = cp->charset; | |
3013 p += strlen(cp->name); | |
3014 break; | |
3015 } | |
37 | 3016 if (cp->name == NULL && verbose) |
7 | 3017 { |
273 | 3018 vim_snprintf((char *)IObuff, IOSIZE, |
3019 _("E244: Illegal charset name \"%s\" in font name \"%s\""), p, name); | |
7 | 3020 EMSG(IObuff); |
3021 break; | |
3022 } | |
3023 break; | |
3024 } | |
8835
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3025 case 'q': |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3026 { |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3027 struct quality_pair *qp; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3028 |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3029 for (qp = quality_pairs; qp->name != NULL; ++qp) |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3030 if (STRNCMP(p, qp->name, strlen(qp->name)) == 0) |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3031 { |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3032 lf->lfQuality = qp->quality; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3033 p += strlen(qp->name); |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3034 break; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3035 } |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3036 if (qp->name == NULL && verbose) |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3037 { |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3038 vim_snprintf((char *)IObuff, IOSIZE, |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3039 _("E244: Illegal quality name \"%s\" in font name \"%s\""), p, name); |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3040 EMSG(IObuff); |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3041 break; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3042 } |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3043 break; |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
3044 } |
7 | 3045 default: |
37 | 3046 if (verbose) |
3047 { | |
273 | 3048 vim_snprintf((char *)IObuff, IOSIZE, |
37 | 3049 _("E245: Illegal char '%c' in font name \"%s\""), |
3050 p[-1], name); | |
3051 EMSG(IObuff); | |
3052 } | |
5714 | 3053 goto theend; |
7 | 3054 } |
3055 while (*p == ':') | |
3056 p++; | |
3057 } | |
5714 | 3058 ret = OK; |
3059 | |
7 | 3060 theend: |
3061 /* ron: init lastlf */ | |
5714 | 3062 if (ret == OK && printer_dc == NULL) |
7 | 3063 { |
3064 vim_free(lastlf); | |
3065 lastlf = (LOGFONT *)alloc(sizeof(LOGFONT)); | |
3066 if (lastlf != NULL) | |
3067 mch_memmove(lastlf, lf, sizeof(LOGFONT)); | |
3068 } | |
5714 | 3069 #ifdef FEAT_MBYTE |
3070 vim_free(acpname); | |
3071 #endif | |
3072 | |
3073 return ret; | |
7 | 3074 } |
3075 | |
3076 #endif /* defined(FEAT_GUI) || defined(FEAT_PRINTER) */ | |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3077 |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
3078 #if defined(FEAT_JOB_CHANNEL) || defined(PROTO) |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3079 /* |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3080 * Initialize the Winsock dll. |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3081 */ |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3082 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
3083 channel_init_winsock(void) |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3084 { |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3085 WSADATA wsaData; |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3086 int wsaerr; |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3087 |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3088 if (WSInitialized) |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3089 return; |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3090 |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3091 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData); |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3092 if (wsaerr == 0) |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3093 WSInitialized = TRUE; |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3094 } |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
3095 #endif |