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