blob: 2b9f1ad8f73d587ccf50c2f52829747c736e2cf8 [file] [log] [blame]
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved gvimext by Tianmiao Hu
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8
9/*
10 * gvimext is a DLL which is used for the "Edit with Vim" context menu
11 * extension. It implements a MS defined interface with the Shell.
12 *
13 * If you have any questions or any suggestions concerning gvimext, please
14 * contact Tianmiao Hu: tianmiao@acm.org.
15 */
16
17#include "gvimext.h"
18
19#ifdef __BORLANDC__
20# include <dir.h>
21# ifndef _strnicmp
22# define _strnicmp(a, b, c) strnicmp((a), (b), (c))
23# endif
24#else
25static char *searchpath(char *name);
26#endif
27
28// Always get an error while putting the following stuff to the
29// gvimext.h file as class protected variables, give up and
30// declare them as global stuff
31FORMATETC fmte = {CF_HDROP,
32 (DVTARGETDEVICE FAR *)NULL,
33 DVASPECT_CONTENT,
34 -1,
35 TYMED_HGLOBAL
36 };
37STGMEDIUM medium;
38HRESULT hres = 0;
39UINT cbFiles = 0;
40
Bram Moolenaar6199d432017-10-14 19:05:44 +020041/* The buffers size used to be MAX_PATH (260 bytes), but that's not always
Bram Moolenaare759a7a2005-07-12 22:50:18 +000042 * enough */
43#define BUFSIZE 1100
44
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000045//
46// Get the name of the Gvim executable to use, with the path.
47// When "runtime" is non-zero, we were called to find the runtime directory.
Bram Moolenaare759a7a2005-07-12 22:50:18 +000048// Returns the path in name[BUFSIZE]. It's empty when it fails.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000049//
50 static void
51getGvimName(char *name, int runtime)
52{
53 HKEY keyhandle;
54 DWORD hlen;
55
56 // Get the location of gvim from the registry.
57 name[0] = 0;
58 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Vim\\Gvim", 0,
59 KEY_READ, &keyhandle) == ERROR_SUCCESS)
60 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +000061 hlen = BUFSIZE;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000062 if (RegQueryValueEx(keyhandle, "path", 0, NULL, (BYTE *)name, &hlen)
63 != ERROR_SUCCESS)
64 name[0] = 0;
65 else
66 name[hlen] = 0;
67 RegCloseKey(keyhandle);
68 }
69
70 // Registry didn't work, use the search path.
71 if (name[0] == 0)
Bram Moolenaar7baa45d2007-08-18 15:00:42 +000072 strcpy(name, searchpath((char *)"gvim.exe"));
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000073
74 if (!runtime)
75 {
76 // Only when looking for the executable, not the runtime dir, we can
77 // search for the batch file or a name without a path.
78 if (name[0] == 0)
Bram Moolenaar7baa45d2007-08-18 15:00:42 +000079 strcpy(name, searchpath((char *)"gvim.bat"));
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000080 if (name[0] == 0)
81 strcpy(name, "gvim"); // finds gvim.bat or gvim.exe
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000082 }
83}
84
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +020085 static void
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +020086getGvimInvocation(char *name, int runtime)
87{
88 getGvimName(name, runtime);
89 // avoid that Vim tries to expand wildcards in the file names
90 strcat(name, " --literal");
91}
92
93 static void
94getGvimInvocationW(wchar_t *nameW)
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +020095{
96 char *name;
97
98 name = (char *)malloc(BUFSIZE);
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +020099 getGvimInvocation(name, 0);
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200100 mbstowcs(nameW, name, BUFSIZE);
101 free(name);
102}
103
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000104//
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000105// Get the Vim runtime directory into buf[BUFSIZE].
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000106// The result is empty when it failed.
107// When it works, the path ends in a slash or backslash.
108//
109 static void
110getRuntimeDir(char *buf)
111{
112 int idx;
113
114 getGvimName(buf, 1);
115 if (buf[0] != 0)
116 {
117 // When no path found, use the search path to expand it.
118 if (strchr(buf, '/') == NULL && strchr(buf, '\\') == NULL)
119 strcpy(buf, searchpath(buf));
120
121 // remove "gvim.exe" from the end
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000122 for (idx = (int)strlen(buf) - 1; idx >= 0; idx--)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000123 if (buf[idx] == '\\' || buf[idx] == '/')
124 {
125 buf[idx + 1] = 0;
126 break;
127 }
128 }
129}
130
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200131HBITMAP IconToBitmap(HICON hIcon, HBRUSH hBackground, int width, int height)
132{
133 HDC hDC = GetDC(NULL);
134 HDC hMemDC = CreateCompatibleDC(hDC);
135 HBITMAP hMemBmp = CreateCompatibleBitmap(hDC, width, height);
136 HBITMAP hResultBmp = NULL;
137 HGDIOBJ hOrgBMP = SelectObject(hMemDC, hMemBmp);
138
139 DrawIconEx(hMemDC, 0, 0, hIcon, width, height, 0, hBackground, DI_NORMAL);
140
141 hResultBmp = hMemBmp;
142 hMemBmp = NULL;
143
144 SelectObject(hMemDC, hOrgBMP);
145 DeleteDC(hMemDC);
146 ReleaseDC(NULL, hDC);
147 DestroyIcon(hIcon);
148 return hResultBmp;
149}
150
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000151//
152// GETTEXT: translated messages and menu entries
153//
154#ifndef FEAT_GETTEXT
155# define _(x) x
156#else
157# define _(x) (*dyn_libintl_gettext)(x)
158# define VIMPACKAGE "vim"
159# ifndef GETTEXT_DLL
160# define GETTEXT_DLL "libintl.dll"
Bram Moolenaar271273c2016-02-21 20:30:22 +0100161# define GETTEXT_DLL_ALT "libintl-8.dll"
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000162# endif
163
164// Dummy functions
165static char *null_libintl_gettext(const char *);
166static char *null_libintl_textdomain(const char *);
167static char *null_libintl_bindtextdomain(const char *, const char *);
168static int dyn_libintl_init(char *dir);
169static void dyn_libintl_end(void);
170
Bram Moolenaarcf839732011-08-10 16:31:23 +0200171static wchar_t *oldenv = NULL;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000172static HINSTANCE hLibintlDLL = 0;
173static char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext;
174static char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain;
175static char *(*dyn_libintl_bindtextdomain)(const char *, const char *)
176 = null_libintl_bindtextdomain;
177
178//
179// Attempt to load libintl.dll. If it doesn't work, use dummy functions.
180// "dir" is the directory where the libintl.dll might be.
181// Return 1 for success, 0 for failure.
182//
183 static int
184dyn_libintl_init(char *dir)
185{
186 int i;
187 static struct
188 {
189 char *name;
190 FARPROC *ptr;
191 } libintl_entry[] =
192 {
Bram Moolenaar7baa45d2007-08-18 15:00:42 +0000193 {(char *)"gettext", (FARPROC*)&dyn_libintl_gettext},
194 {(char *)"textdomain", (FARPROC*)&dyn_libintl_textdomain},
195 {(char *)"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain},
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000196 {NULL, NULL}
197 };
Bram Moolenaar271273c2016-02-21 20:30:22 +0100198 DWORD len, len2;
199 LPWSTR buf = NULL;
200 LPWSTR buf2 = NULL;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000201
202 // No need to initialize twice.
203 if (hLibintlDLL)
204 return 1;
205
Bram Moolenaar6199d432017-10-14 19:05:44 +0200206 // Load gettext library from $VIMRUNTIME\GvimExt{64,32} directory.
Bram Moolenaar271273c2016-02-21 20:30:22 +0100207 // Add the directory to $PATH temporarily.
208 len = GetEnvironmentVariableW(L"PATH", NULL, 0);
209 len2 = MAX_PATH + 1 + len;
210 buf = (LPWSTR)malloc(len * sizeof(WCHAR));
211 buf2 = (LPWSTR)malloc(len2 * sizeof(WCHAR));
212 if (buf != NULL && buf2 != NULL)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000213 {
Bram Moolenaar271273c2016-02-21 20:30:22 +0100214 GetEnvironmentVariableW(L"PATH", buf, len);
Bram Moolenaar6199d432017-10-14 19:05:44 +0200215#ifdef _WIN64
216 _snwprintf(buf2, len2, L"%S\\GvimExt64;%s", dir, buf);
217#else
218 _snwprintf(buf2, len2, L"%S\\GvimExt32;%s", dir, buf);
219#endif
Bram Moolenaar271273c2016-02-21 20:30:22 +0100220 SetEnvironmentVariableW(L"PATH", buf2);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000221 hLibintlDLL = LoadLibrary(GETTEXT_DLL);
Bram Moolenaar271273c2016-02-21 20:30:22 +0100222#ifdef GETTEXT_DLL_ALT
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000223 if (!hLibintlDLL)
Bram Moolenaar271273c2016-02-21 20:30:22 +0100224 hLibintlDLL = LoadLibrary(GETTEXT_DLL_ALT);
225#endif
226 SetEnvironmentVariableW(L"PATH", buf);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000227 }
Bram Moolenaar271273c2016-02-21 20:30:22 +0100228 free(buf);
229 free(buf2);
230 if (!hLibintlDLL)
231 return 0;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000232
233 // Get the addresses of the functions we need.
234 for (i = 0; libintl_entry[i].name != NULL
235 && libintl_entry[i].ptr != NULL; ++i)
236 {
237 if ((*libintl_entry[i].ptr = GetProcAddress(hLibintlDLL,
238 libintl_entry[i].name)) == NULL)
239 {
240 dyn_libintl_end();
241 return 0;
242 }
243 }
244 return 1;
245}
246
247 static void
248dyn_libintl_end(void)
249{
250 if (hLibintlDLL)
251 FreeLibrary(hLibintlDLL);
252 hLibintlDLL = NULL;
253 dyn_libintl_gettext = null_libintl_gettext;
254 dyn_libintl_textdomain = null_libintl_textdomain;
255 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain;
256}
257
258 static char *
259null_libintl_gettext(const char *msgid)
260{
261 return (char *)msgid;
262}
263
264 static char *
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000265null_libintl_bindtextdomain(const char * /* domainname */, const char * /* dirname */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000266{
267 return NULL;
268}
269
270 static char *
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000271null_libintl_textdomain(const char* /* domainname */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000272{
273 return NULL;
274}
275
276//
277// Setup for translating strings.
278//
279 static void
280dyn_gettext_load(void)
281{
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000282 char szBuff[BUFSIZE];
283 char szLang[BUFSIZE];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000284 DWORD len;
285 HKEY keyhandle;
286 int gotlang = 0;
287
288 strcpy(szLang, "LANG=");
289
290 // First try getting the language from the registry, this can be
291 // used to overrule the system language.
292 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Vim\\Gvim", 0,
293 KEY_READ, &keyhandle) == ERROR_SUCCESS)
294 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000295 len = BUFSIZE;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000296 if (RegQueryValueEx(keyhandle, "lang", 0, NULL, (BYTE*)szBuff, &len)
297 == ERROR_SUCCESS)
298 {
299 szBuff[len] = 0;
300 strcat(szLang, szBuff);
301 gotlang = 1;
302 }
303 RegCloseKey(keyhandle);
304 }
305
306 if (!gotlang && getenv("LANG") == NULL)
307 {
308 // Get the language from the system.
309 // Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
310 // LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
311 // only the first two.
312 len = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000313 (LPTSTR)szBuff, BUFSIZE);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000314 if (len >= 2 && _strnicmp(szBuff, "en", 2) != 0)
315 {
316 // There are a few exceptions (probably more)
317 if (_strnicmp(szBuff, "cht", 3) == 0
318 || _strnicmp(szBuff, "zht", 3) == 0)
319 strcpy(szBuff, "zh_TW");
320 else if (_strnicmp(szBuff, "chs", 3) == 0
321 || _strnicmp(szBuff, "zhc", 3) == 0)
322 strcpy(szBuff, "zh_CN");
323 else if (_strnicmp(szBuff, "jp", 2) == 0)
324 strcpy(szBuff, "ja");
325 else
326 szBuff[2] = 0; // truncate to two-letter code
327 strcat(szLang, szBuff);
328 gotlang = 1;
329 }
330 }
331 if (gotlang)
332 putenv(szLang);
333
334 // Try to locate the runtime files. The path is used to find libintl.dll
335 // and the vim.mo files.
336 getRuntimeDir(szBuff);
337 if (szBuff[0] != 0)
338 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000339 len = (DWORD)strlen(szBuff);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000340 if (dyn_libintl_init(szBuff))
341 {
342 strcpy(szBuff + len, "lang");
343
344 (*dyn_libintl_bindtextdomain)(VIMPACKAGE, szBuff);
345 (*dyn_libintl_textdomain)(VIMPACKAGE);
346 }
347 }
348}
349
350 static void
351dyn_gettext_free(void)
352{
353 dyn_libintl_end();
354}
355#endif // FEAT_GETTEXT
356
357//
358// Global variables
359//
360UINT g_cRefThisDll = 0; // Reference count of this DLL.
361HINSTANCE g_hmodThisDll = NULL; // Handle to this DLL itself.
362
363
364//---------------------------------------------------------------------------
365// DllMain
366//---------------------------------------------------------------------------
367extern "C" int APIENTRY
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000368DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /* lpReserved */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000369{
370 switch (dwReason)
371 {
372 case DLL_PROCESS_ATTACH:
373 // Extension DLL one-time initialization
374 g_hmodThisDll = hInstance;
375 break;
376
377 case DLL_PROCESS_DETACH:
378 break;
379 }
380
381 return 1; // ok
382}
383
384 static void
385inc_cRefThisDLL()
386{
387#ifdef FEAT_GETTEXT
Bram Moolenaarcf839732011-08-10 16:31:23 +0200388 if (g_cRefThisDll == 0) {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000389 dyn_gettext_load();
Bram Moolenaarcf839732011-08-10 16:31:23 +0200390 oldenv = GetEnvironmentStringsW();
391 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000392#endif
393 InterlockedIncrement((LPLONG)&g_cRefThisDll);
394}
395
396 static void
397dec_cRefThisDLL()
398{
399#ifdef FEAT_GETTEXT
Bram Moolenaarcf839732011-08-10 16:31:23 +0200400 if (InterlockedDecrement((LPLONG)&g_cRefThisDll) == 0) {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000401 dyn_gettext_free();
Bram Moolenaarcf839732011-08-10 16:31:23 +0200402 if (oldenv != NULL) {
403 FreeEnvironmentStringsW(oldenv);
404 oldenv = NULL;
405 }
406 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000407#else
408 InterlockedDecrement((LPLONG)&g_cRefThisDll);
409#endif
410}
411
412//---------------------------------------------------------------------------
413// DllCanUnloadNow
414//---------------------------------------------------------------------------
415
416STDAPI DllCanUnloadNow(void)
417{
418 return (g_cRefThisDll == 0 ? S_OK : S_FALSE);
419}
420
421STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppvOut)
422{
423 *ppvOut = NULL;
424
425 if (IsEqualIID(rclsid, CLSID_ShellExtension))
426 {
427 CShellExtClassFactory *pcf = new CShellExtClassFactory;
428
429 return pcf->QueryInterface(riid, ppvOut);
430 }
431
432 return CLASS_E_CLASSNOTAVAILABLE;
433}
434
435CShellExtClassFactory::CShellExtClassFactory()
436{
437 m_cRef = 0L;
438
439 inc_cRefThisDLL();
440}
441
442CShellExtClassFactory::~CShellExtClassFactory()
443{
444 dec_cRefThisDLL();
445}
446
447STDMETHODIMP CShellExtClassFactory::QueryInterface(REFIID riid,
448 LPVOID FAR *ppv)
449{
450 *ppv = NULL;
451
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200452 // any interface on this object is the object pointer
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000453
454 if (IsEqualIID(riid, IID_IUnknown) || IsEqualIID(riid, IID_IClassFactory))
455 {
456 *ppv = (LPCLASSFACTORY)this;
457
458 AddRef();
459
460 return NOERROR;
461 }
462
463 return E_NOINTERFACE;
464}
465
466STDMETHODIMP_(ULONG) CShellExtClassFactory::AddRef()
467{
468 return InterlockedIncrement((LPLONG)&m_cRef);
469}
470
471STDMETHODIMP_(ULONG) CShellExtClassFactory::Release()
472{
473 if (InterlockedDecrement((LPLONG)&m_cRef))
474 return m_cRef;
475
476 delete this;
477
478 return 0L;
479}
480
481STDMETHODIMP CShellExtClassFactory::CreateInstance(LPUNKNOWN pUnkOuter,
482 REFIID riid,
483 LPVOID *ppvObj)
484{
485 *ppvObj = NULL;
486
487 // Shell extensions typically don't support aggregation (inheritance)
488
489 if (pUnkOuter)
490 return CLASS_E_NOAGGREGATION;
491
492 // Create the main shell extension object. The shell will then call
493 // QueryInterface with IID_IShellExtInit--this is how shell extensions are
494 // initialized.
495
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200496 LPCSHELLEXT pShellExt = new CShellExt(); // create the CShellExt object
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000497
498 if (NULL == pShellExt)
499 return E_OUTOFMEMORY;
500
501 return pShellExt->QueryInterface(riid, ppvObj);
502}
503
504
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000505STDMETHODIMP CShellExtClassFactory::LockServer(BOOL /* fLock */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000506{
507 return NOERROR;
508}
509
510// *********************** CShellExt *************************
511CShellExt::CShellExt()
512{
513 m_cRef = 0L;
514 m_pDataObj = NULL;
515
516 inc_cRefThisDLL();
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200517
518 LoadMenuIcon();
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000519}
520
521CShellExt::~CShellExt()
522{
523 if (m_pDataObj)
524 m_pDataObj->Release();
525
526 dec_cRefThisDLL();
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200527
528 if (m_hVimIconBitmap)
529 DeleteObject(m_hVimIconBitmap);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000530}
531
532STDMETHODIMP CShellExt::QueryInterface(REFIID riid, LPVOID FAR *ppv)
533{
534 *ppv = NULL;
535
536 if (IsEqualIID(riid, IID_IShellExtInit) || IsEqualIID(riid, IID_IUnknown))
537 {
538 *ppv = (LPSHELLEXTINIT)this;
539 }
540 else if (IsEqualIID(riid, IID_IContextMenu))
541 {
542 *ppv = (LPCONTEXTMENU)this;
543 }
544
545 if (*ppv)
546 {
547 AddRef();
548
549 return NOERROR;
550 }
551
552 return E_NOINTERFACE;
553}
554
555STDMETHODIMP_(ULONG) CShellExt::AddRef()
556{
557 return InterlockedIncrement((LPLONG)&m_cRef);
558}
559
560STDMETHODIMP_(ULONG) CShellExt::Release()
561{
562
563 if (InterlockedDecrement((LPLONG)&m_cRef))
564 return m_cRef;
565
566 delete this;
567
568 return 0L;
569}
570
571
572//
573// FUNCTION: CShellExt::Initialize(LPCITEMIDLIST, LPDATAOBJECT, HKEY)
574//
575// PURPOSE: Called by the shell when initializing a context menu or property
576// sheet extension.
577//
578// PARAMETERS:
579// pIDFolder - Specifies the parent folder
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200580// pDataObj - Specifies the set of items selected in that folder.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000581// hRegKey - Specifies the type of the focused item in the selection.
582//
583// RETURN VALUE:
584//
585// NOERROR in all cases.
586//
587// COMMENTS: Note that at the time this function is called, we don't know
588// (or care) what type of shell extension is being initialized.
589// It could be a context menu or a property sheet.
590//
591
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000592STDMETHODIMP CShellExt::Initialize(LPCITEMIDLIST /* pIDFolder */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000593 LPDATAOBJECT pDataObj,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000594 HKEY /* hRegKey */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000595{
596 // Initialize can be called more than once
597 if (m_pDataObj)
598 m_pDataObj->Release();
599
600 // duplicate the object pointer and registry handle
601
602 if (pDataObj)
603 {
604 m_pDataObj = pDataObj;
605 pDataObj->AddRef();
606 }
607
608 return NOERROR;
609}
610
611
612//
613// FUNCTION: CShellExt::QueryContextMenu(HMENU, UINT, UINT, UINT, UINT)
614//
615// PURPOSE: Called by the shell just before the context menu is displayed.
616// This is where you add your specific menu items.
617//
618// PARAMETERS:
619// hMenu - Handle to the context menu
620// indexMenu - Index of where to begin inserting menu items
621// idCmdFirst - Lowest value for new menu ID's
622// idCmtLast - Highest value for new menu ID's
623// uFlags - Specifies the context of the menu event
624//
625// RETURN VALUE:
626//
627//
628// COMMENTS:
629//
630
631STDMETHODIMP CShellExt::QueryContextMenu(HMENU hMenu,
632 UINT indexMenu,
633 UINT idCmdFirst,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000634 UINT /* idCmdLast */,
635 UINT /* uFlags */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000636{
637 UINT idCmd = idCmdFirst;
638
639 hres = m_pDataObj->GetData(&fmte, &medium);
640 if (medium.hGlobal)
641 cbFiles = DragQueryFile((HDROP)medium.hGlobal, (UINT)-1, 0, 0);
642
643 // InsertMenu(hMenu, indexMenu++, MF_SEPARATOR|MF_BYPOSITION, 0, NULL);
644
645 // Initialize m_cntOfHWnd to 0
646 m_cntOfHWnd = 0;
Bram Moolenaarce35c882011-07-20 17:27:25 +0200647
648 HKEY keyhandle;
649 bool showExisting = true;
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200650 bool showIcons = true;
Bram Moolenaarce35c882011-07-20 17:27:25 +0200651
652 // Check whether "Edit with existing Vim" entries are disabled.
653 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Vim\\Gvim", 0,
654 KEY_READ, &keyhandle) == ERROR_SUCCESS)
655 {
656 if (RegQueryValueEx(keyhandle, "DisableEditWithExisting", 0, NULL,
657 NULL, NULL) == ERROR_SUCCESS)
658 showExisting = false;
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200659 if (RegQueryValueEx(keyhandle, "DisableContextMenuIcons", 0, NULL,
660 NULL, NULL) == ERROR_SUCCESS)
661 showIcons = false;
Bram Moolenaarce35c882011-07-20 17:27:25 +0200662 RegCloseKey(keyhandle);
663 }
664
665 // Retrieve all the vim instances, unless disabled.
666 if (showExisting)
667 EnumWindows(EnumWindowsProc, (LPARAM)this);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000668
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200669 MENUITEMINFO mii = { sizeof(MENUITEMINFO) };
670 mii.fMask = MIIM_STRING | MIIM_ID;
671 if (showIcons)
672 {
673 mii.fMask |= MIIM_BITMAP;
674 mii.hbmpItem = m_hVimIconBitmap;
675 }
676
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000677 if (cbFiles > 1)
678 {
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200679 mii.wID = idCmd++;
680 mii.dwTypeData = _("Edit with &multiple Vims");
681 mii.cch = lstrlen(mii.dwTypeData);
682 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000683
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200684 mii.wID = idCmd++;
685 mii.dwTypeData = _("Edit with single &Vim");
686 mii.cch = lstrlen(mii.dwTypeData);
687 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000688
689 if (cbFiles <= 4)
690 {
691 // Can edit up to 4 files in diff mode
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200692 mii.wID = idCmd++;
693 mii.dwTypeData = _("Diff with Vim");
694 mii.cch = lstrlen(mii.dwTypeData);
695 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000696 m_edit_existing_off = 3;
697 }
698 else
699 m_edit_existing_off = 2;
700
701 }
702 else
703 {
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200704 mii.wID = idCmd++;
705 mii.dwTypeData = _("Edit with &Vim");
706 mii.cch = lstrlen(mii.dwTypeData);
707 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000708 m_edit_existing_off = 1;
709 }
710
711 // Now display all the vim instances
712 for (int i = 0; i < m_cntOfHWnd; i++)
713 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000714 char title[BUFSIZE];
715 char temp[BUFSIZE];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000716
717 // Obtain window title, continue if can not
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000718 if (GetWindowText(m_hWnd[i], title, BUFSIZE - 1) == 0)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000719 continue;
720 // Truncate the title before the path, keep the file name
721 char *pos = strchr(title, '(');
722 if (pos != NULL)
723 {
724 if (pos > title && pos[-1] == ' ')
725 --pos;
726 *pos = 0;
727 }
728 // Now concatenate
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000729 strncpy(temp, _("Edit with existing Vim - "), BUFSIZE - 1);
Bram Moolenaardc7e00e2009-09-11 11:26:56 +0000730 temp[BUFSIZE - 1] = '\0';
731 strncat(temp, title, BUFSIZE - 1 - strlen(temp));
732 temp[BUFSIZE - 1] = '\0';
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200733
734 mii.wID = idCmd++;
735 mii.dwTypeData = temp;
736 mii.cch = lstrlen(mii.dwTypeData);
737 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000738 }
739 // InsertMenu(hMenu, indexMenu++, MF_SEPARATOR|MF_BYPOSITION, 0, NULL);
740
741 // Must return number of menu items we added.
742 return ResultFromShort(idCmd-idCmdFirst);
743}
744
745//
746// FUNCTION: CShellExt::InvokeCommand(LPCMINVOKECOMMANDINFO)
747//
748// PURPOSE: Called by the shell after the user has selected on of the
749// menu items that was added in QueryContextMenu().
750//
751// PARAMETERS:
752// lpcmi - Pointer to an CMINVOKECOMMANDINFO structure
753//
754// RETURN VALUE:
755//
756//
757// COMMENTS:
758//
759
760STDMETHODIMP CShellExt::InvokeCommand(LPCMINVOKECOMMANDINFO lpcmi)
761{
762 HRESULT hr = E_INVALIDARG;
763
764 // If HIWORD(lpcmi->lpVerb) then we have been called programmatically
765 // and lpVerb is a command that should be invoked. Otherwise, the shell
766 // has called us, and LOWORD(lpcmi->lpVerb) is the menu ID the user has
767 // selected. Actually, it's (menu ID - idCmdFirst) from QueryContextMenu().
768 if (!HIWORD(lpcmi->lpVerb))
769 {
770 UINT idCmd = LOWORD(lpcmi->lpVerb);
771
772 if (idCmd >= m_edit_existing_off)
773 {
774 // Existing with vim instance
775 hr = PushToWindow(lpcmi->hwnd,
776 lpcmi->lpDirectory,
777 lpcmi->lpVerb,
778 lpcmi->lpParameters,
779 lpcmi->nShow,
780 idCmd - m_edit_existing_off);
781 }
782 else
783 {
784 switch (idCmd)
785 {
786 case 0:
787 hr = InvokeGvim(lpcmi->hwnd,
788 lpcmi->lpDirectory,
789 lpcmi->lpVerb,
790 lpcmi->lpParameters,
791 lpcmi->nShow);
792 break;
793 case 1:
794 hr = InvokeSingleGvim(lpcmi->hwnd,
795 lpcmi->lpDirectory,
796 lpcmi->lpVerb,
797 lpcmi->lpParameters,
798 lpcmi->nShow,
799 0);
800 break;
801 case 2:
802 hr = InvokeSingleGvim(lpcmi->hwnd,
803 lpcmi->lpDirectory,
804 lpcmi->lpVerb,
805 lpcmi->lpParameters,
806 lpcmi->nShow,
807 1);
808 break;
809 }
810 }
811 }
812 return hr;
813}
814
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000815STDMETHODIMP CShellExt::PushToWindow(HWND /* hParent */,
816 LPCSTR /* pszWorkingDir */,
817 LPCSTR /* pszCmd */,
818 LPCSTR /* pszParam */,
819 int /* iShowCmd */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000820 int idHWnd)
821{
822 HWND hWnd = m_hWnd[idHWnd];
823
824 // Show and bring vim instance to foreground
825 if (IsIconic(hWnd) != 0)
826 ShowWindow(hWnd, SW_RESTORE);
827 else
828 ShowWindow(hWnd, SW_SHOW);
829 SetForegroundWindow(hWnd);
830
831 // Post the selected files to the vim instance
832 PostMessage(hWnd, WM_DROPFILES, (WPARAM)medium.hGlobal, 0);
833
834 return NOERROR;
835}
836
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000837STDMETHODIMP CShellExt::GetCommandString(UINT_PTR /* idCmd */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000838 UINT uFlags,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000839 UINT FAR * /* reserved */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000840 LPSTR pszName,
841 UINT cchMax)
842{
843 if (uFlags == GCS_HELPTEXT && cchMax > 35)
844 lstrcpy(pszName, _("Edits the selected file(s) with Vim"));
845
846 return NOERROR;
847}
848
849BOOL CALLBACK CShellExt::EnumWindowsProc(HWND hWnd, LPARAM lParam)
850{
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000851 char temp[BUFSIZE];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000852
853 // First do a bunch of check
854 // No invisible window
855 if (!IsWindowVisible(hWnd)) return TRUE;
856 // No child window ???
857 // if (GetParent(hWnd)) return TRUE;
858 // Class name should be Vim, if failed to get class name, return
859 if (GetClassName(hWnd, temp, sizeof(temp)) == 0)
860 return TRUE;
861 // Compare class name to that of vim, if not, return
862 if (_strnicmp(temp, "vim", sizeof("vim")) != 0)
863 return TRUE;
864 // First check if the number of vim instance exceeds MAX_HWND
865 CShellExt *cs = (CShellExt*) lParam;
866 if (cs->m_cntOfHWnd >= MAX_HWND) return TRUE;
867 // Now we get the vim window, put it into some kind of array
868 cs->m_hWnd[cs->m_cntOfHWnd] = hWnd;
869 cs->m_cntOfHWnd ++;
870
871 return TRUE; // continue enumeration (otherwise this would be false)
872}
873
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200874BOOL CShellExt::LoadMenuIcon()
875{
876 char vimExeFile[BUFSIZE];
877 getGvimName(vimExeFile, 1);
878 if (vimExeFile[0] == '\0')
879 return FALSE;
880 HICON hVimIcon;
881 if (ExtractIconEx(vimExeFile, 0, NULL, &hVimIcon, 1) == 0)
882 return FALSE;
883 m_hVimIconBitmap = IconToBitmap(hVimIcon,
884 GetSysColorBrush(COLOR_MENU),
885 GetSystemMetrics(SM_CXSMICON),
886 GetSystemMetrics(SM_CYSMICON));
887 return TRUE;
888}
889
Bram Moolenaar6199d432017-10-14 19:05:44 +0200890#ifndef __BORLANDC__
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000891 static char *
892searchpath(char *name)
893{
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000894 static char widename[2 * BUFSIZE];
895 static char location[2 * BUFSIZE + 2];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000896
897 // There appears to be a bug in FindExecutableA() on Windows NT.
898 // Use FindExecutableW() instead...
Bram Moolenaar6199d432017-10-14 19:05:44 +0200899 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)name, -1,
900 (LPWSTR)widename, BUFSIZE);
901 if (FindExecutableW((LPCWSTR)widename, (LPCWSTR)"",
902 (LPWSTR)location) > (HINSTANCE)32)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000903 {
Bram Moolenaar6199d432017-10-14 19:05:44 +0200904 WideCharToMultiByte(CP_ACP, 0, (LPWSTR)location, -1,
905 (LPSTR)widename, 2 * BUFSIZE, NULL, NULL);
906 return widename;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000907 }
Bram Moolenaar7baa45d2007-08-18 15:00:42 +0000908 return (char *)"";
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000909}
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000910#endif
911
912STDMETHODIMP CShellExt::InvokeGvim(HWND hParent,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000913 LPCSTR /* pszWorkingDir */,
914 LPCSTR /* pszCmd */,
915 LPCSTR /* pszParam */,
916 int /* iShowCmd */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000917{
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200918 wchar_t m_szFileUserClickedOn[BUFSIZE];
919 wchar_t cmdStrW[BUFSIZE];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000920 UINT i;
921
922 for (i = 0; i < cbFiles; i++)
923 {
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200924 DragQueryFileW((HDROP)medium.hGlobal,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000925 i,
926 m_szFileUserClickedOn,
927 sizeof(m_szFileUserClickedOn));
928
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200929 getGvimInvocationW(cmdStrW);
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200930 wcscat(cmdStrW, L" \"");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000931
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200932 if ((wcslen(cmdStrW) + wcslen(m_szFileUserClickedOn) + 2) < BUFSIZE)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000933 {
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200934 wcscat(cmdStrW, m_szFileUserClickedOn);
935 wcscat(cmdStrW, L"\"");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000936
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200937 STARTUPINFOW si;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000938 PROCESS_INFORMATION pi;
939
940 ZeroMemory(&si, sizeof(si));
941 si.cb = sizeof(si);
942
943 // Start the child process.
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200944 if (!CreateProcessW(NULL, // No module name (use command line).
945 cmdStrW, // Command line.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000946 NULL, // Process handle not inheritable.
947 NULL, // Thread handle not inheritable.
948 FALSE, // Set handle inheritance to FALSE.
Bram Moolenaarcf839732011-08-10 16:31:23 +0200949 oldenv == NULL ? 0 : CREATE_UNICODE_ENVIRONMENT,
950 oldenv, // Use unmodified environment block.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000951 NULL, // Use parent's starting directory.
952 &si, // Pointer to STARTUPINFO structure.
953 &pi) // Pointer to PROCESS_INFORMATION structure.
954 )
955 {
956 MessageBox(
957 hParent,
958 _("Error creating process: Check if gvim is in your path!"),
959 _("gvimext.dll error"),
960 MB_OK);
961 }
962 else
963 {
964 CloseHandle( pi.hProcess );
965 CloseHandle( pi.hThread );
966 }
967 }
968 else
969 {
970 MessageBox(
971 hParent,
972 _("Path length too long!"),
973 _("gvimext.dll error"),
974 MB_OK);
975 }
976 }
977
978 return NOERROR;
979}
980
981
982STDMETHODIMP CShellExt::InvokeSingleGvim(HWND hParent,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000983 LPCSTR /* pszWorkingDir */,
984 LPCSTR /* pszCmd */,
985 LPCSTR /* pszParam */,
986 int /* iShowCmd */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000987 int useDiff)
988{
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200989 wchar_t m_szFileUserClickedOn[BUFSIZE];
990 wchar_t *cmdStrW;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000991 size_t cmdlen;
992 size_t len;
993 UINT i;
994
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000995 cmdlen = BUFSIZE;
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200996 cmdStrW = (wchar_t *) malloc(cmdlen * sizeof(wchar_t));
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200997 getGvimInvocationW(cmdStrW);
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200998
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000999 if (useDiff)
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001000 wcscat(cmdStrW, L" -d");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001001 for (i = 0; i < cbFiles; i++)
1002 {
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001003 DragQueryFileW((HDROP)medium.hGlobal,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001004 i,
1005 m_szFileUserClickedOn,
1006 sizeof(m_szFileUserClickedOn));
1007
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001008 len = wcslen(cmdStrW) + wcslen(m_szFileUserClickedOn) + 4;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001009 if (len > cmdlen)
1010 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +00001011 cmdlen = len + BUFSIZE;
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001012 cmdStrW = (wchar_t *)realloc(cmdStrW, cmdlen * sizeof(wchar_t));
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001013 }
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001014 wcscat(cmdStrW, L" \"");
1015 wcscat(cmdStrW, m_szFileUserClickedOn);
1016 wcscat(cmdStrW, L"\"");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001017 }
1018
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001019 STARTUPINFOW si;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001020 PROCESS_INFORMATION pi;
1021
1022 ZeroMemory(&si, sizeof(si));
1023 si.cb = sizeof(si);
1024
1025 // Start the child process.
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001026 if (!CreateProcessW(NULL, // No module name (use command line).
1027 cmdStrW, // Command line.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001028 NULL, // Process handle not inheritable.
1029 NULL, // Thread handle not inheritable.
1030 FALSE, // Set handle inheritance to FALSE.
Bram Moolenaarcf839732011-08-10 16:31:23 +02001031 oldenv == NULL ? 0 : CREATE_UNICODE_ENVIRONMENT,
1032 oldenv, // Use unmodified environment block.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001033 NULL, // Use parent's starting directory.
1034 &si, // Pointer to STARTUPINFO structure.
1035 &pi) // Pointer to PROCESS_INFORMATION structure.
1036 )
1037 {
1038 MessageBox(
1039 hParent,
1040 _("Error creating process: Check if gvim is in your path!"),
1041 _("gvimext.dll error"),
1042 MB_OK);
1043 }
1044 else
1045 {
1046 CloseHandle(pi.hProcess);
1047 CloseHandle(pi.hThread);
1048 }
1049
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001050 free(cmdStrW);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001051
1052 return NOERROR;
1053}