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