annotate src/os_mswin.c @ 35513:6e98e7638914 v9.1.0518

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