blob: b85f32e2046083e1480d7d1cd4364da2fd201741 [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 * If you have any questions or any suggestions concerning gvimext, please
11 * contact Tianmiao Hu: tianmiao@acm.org.
12 */
13
14#if !defined(AFX_STDAFX_H__3389658B_AD83_11D3_9C1E_0090278BBD99__INCLUDED_)
15#define AFX_STDAFX_H__3389658B_AD83_11D3_9C1E_0090278BBD99__INCLUDED_
16
Bram Moolenaar175aa242010-02-17 17:24:27 +010017#if defined(_MSC_VER) && _MSC_VER > 1000
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000018#pragma once
Bram Moolenaar175aa242010-02-17 17:24:27 +010019#endif
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000020
21// Insert your headers here
22// #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
23
24//--------------------------------------------------------------
25// common user interface routines
26//
27//
28//--------------------------------------------------------------
29
30#ifndef STRICT
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000031# define STRICT
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000032#endif
33
Bram Moolenaar4f974752019-02-17 17:44:42 +010034#define INC_OLE2 // MS-Windows, get ole2 from windows.h
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000035
Bram Moolenaar362e1a32006-03-06 23:29:24 +000036/* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */
Bram Moolenaar175aa242010-02-17 17:24:27 +010037#if defined(_MSC_VER) && _MSC_VER >= 1400
Bram Moolenaar362e1a32006-03-06 23:29:24 +000038# define _CRT_SECURE_NO_DEPRECATE
39# define _CRT_NONSTDC_NO_DEPRECATE
40#endif
41
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000042#include <windows.h>
43#include <windowsx.h>
44#include <shlobj.h>
Bram Moolenaar271273c2016-02-21 20:30:22 +010045#include <wchar.h>
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000046
47#define ResultFromShort(i) ResultFromScode(MAKE_SCODE(SEVERITY_SUCCESS, 0, (USHORT)(i)))
48
49// Initialize GUIDs (should be done only and at-least once per DLL/EXE)
50//
51#pragma data_seg(".text")
52#define INITGUID
53#include <initguid.h>
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000054
55//
56// The class ID of this Shell extension class.
57//
58// class id: {51EEE242-AD87-11d3-9C1E-0090278BBD99}
59//
60//
61// NOTE!!! If you use this shell extension as a starting point,
62// you MUST change the GUID below. Simply run UUIDGEN.EXE
63// to generate a new GUID.
64//
65
66// {51EEE242-AD87-11d3-9C1E-0090278BBD99}
67// static const GUID <<name>> =
68// { 0x51eee242, 0xad87, 0x11d3, { 0x9c, 0x1e, 0x0, 0x90, 0x27, 0x8b, 0xbd, 0x99 } };
69//
70//
71
72// {51EEE242-AD87-11d3-9C1E-0090278BBD99}
73// IMPLEMENT_OLECREATE(<<class>>, <<external_name>>,
74// 0x51eee242, 0xad87, 0x11d3, 0x9c, 0x1e, 0x0, 0x90, 0x27, 0x8b, 0xbd, 0x99);
75//
76
77// {51EEE242-AD87-11d3-9C1E-0090278BBD99} -- this is the registry format
78DEFINE_GUID(CLSID_ShellExtension, 0x51eee242, 0xad87, 0x11d3, 0x9c, 0x1e, 0x0, 0x90, 0x27, 0x8b, 0xbd, 0x99);
79
80// this class factory object creates context menu handlers for windows 32 shell
81class CShellExtClassFactory : public IClassFactory
82{
83protected:
84 ULONG m_cRef;
85
86public:
87 CShellExtClassFactory();
88 ~CShellExtClassFactory();
89
90 //IUnknown members
91 STDMETHODIMP QueryInterface(REFIID, LPVOID FAR *);
92 STDMETHODIMP_(ULONG) AddRef();
93 STDMETHODIMP_(ULONG) Release();
94
95 //IClassFactory members
96 STDMETHODIMP CreateInstance(LPUNKNOWN, REFIID, LPVOID FAR *);
97 STDMETHODIMP LockServer(BOOL);
98
99};
100typedef CShellExtClassFactory *LPCSHELLEXTCLASSFACTORY;
101#define MAX_HWND 100
102
103// this is the actual OLE Shell context menu handler
104class CShellExt : public IContextMenu,
105 IShellExtInit
106{
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200107private:
108 BOOL LoadMenuIcon();
109
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000110protected:
111 ULONG m_cRef;
112 LPDATAOBJECT m_pDataObj;
113 UINT m_edit_existing_off;
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200114 HBITMAP m_hVimIconBitmap;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000115
116 // For some reason, this callback must be static
117 static BOOL CALLBACK EnumWindowsProc(HWND hWnd, LPARAM lParam);
118
119 STDMETHODIMP PushToWindow(HWND hParent,
120 LPCSTR pszWorkingDir,
121 LPCSTR pszCmd,
122 LPCSTR pszParam,
123 int iShowCmd,
124 int idHWnd);
125
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000126 STDMETHODIMP InvokeSingleGvim(HWND hParent,
Nir Lichtman1aeccdb2021-12-22 15:21:15 +0000127 LPCWSTR workingDir,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000128 LPCSTR pszCmd,
129 LPCSTR pszParam,
130 int iShowCmd,
msoyka-of-wharton83cd0152021-07-29 19:18:33 +0200131 int gvimExtraOptions);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000132
133public:
134 int m_cntOfHWnd;
135 HWND m_hWnd[MAX_HWND];
136 CShellExt();
137 ~CShellExt();
138
139 //IUnknown members
140 STDMETHODIMP QueryInterface(REFIID, LPVOID FAR *);
141 STDMETHODIMP_(ULONG) AddRef();
142 STDMETHODIMP_(ULONG) Release();
143
144 //IShell members
145 STDMETHODIMP QueryContextMenu(HMENU hMenu,
146 UINT indexMenu,
147 UINT idCmdFirst,
148 UINT idCmdLast,
149 UINT uFlags);
150
151 STDMETHODIMP InvokeCommand(LPCMINVOKECOMMANDINFO lpcmi);
152
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000153 STDMETHODIMP GetCommandString(UINT_PTR idCmd,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000154 UINT uFlags,
155 UINT FAR *reserved,
156 LPSTR pszName,
157 UINT cchMax);
158
159 //IShellExtInit methods
160 STDMETHODIMP Initialize(LPCITEMIDLIST pIDFolder,
161 LPDATAOBJECT pDataObj,
162 HKEY hKeyID);
163};
164
165typedef CShellExt *LPCSHELLEXT;
166#pragma data_seg()
167
168#endif