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