#include <COpenWithMenu.h>
|
| COpenWithMenu () |
|
| ~COpenWithMenu () |
|
STDMETHOD() | QueryContextMenu (HMENU hMenu, UINT indexMenu, UINT idCmdFirst, UINT idCmdLast, UINT uFlags) override |
|
STDMETHOD() | InvokeCommand (LPCMINVOKECOMMANDINFO lpcmi) override |
|
STDMETHOD() | GetCommandString (UINT_PTR idCommand, UINT uFlags, UINT *lpReserved, LPSTR lpszName, UINT uMaxNameLen) override |
|
STDMETHOD() | HandleMenuMsg (UINT uMsg, WPARAM wParam, LPARAM lParam) override |
|
STDMETHOD() | Initialize (PCIDLIST_ABSOLUTE pidlFolder, IDataObject *pdtobj, HKEY hkeyProgID) override |
|
| ~CComObjectRootEx () |
|
ULONG | InternalAddRef () |
|
ULONG | InternalRelease () |
|
void | Lock () |
|
void | Unlock () |
|
HRESULT | _AtlInitialConstruct () |
|
| CComObjectRootBase () |
|
| ~CComObjectRootBase () |
|
void | SetVoid (void *) |
|
HRESULT | _AtlFinalConstruct () |
|
HRESULT | FinalConstruct () |
|
void | InternalFinalConstructAddRef () |
|
void | InternalFinalConstructRelease () |
|
void | FinalRelease () |
|
HRESULT | HandleMenuMsg ([in] UINT uMsg, [in] WPARAM wParam, [in] LPARAM lParam) |
|
HRESULT | QueryContextMenu ([in] HMENU hmenu, [in] UINT indexMenu, [in] UINT idCmdFirst, [in] UINT idCmdLast, [in] UINT uFlags) |
|
HRESULT | InvokeCommand ([in] LPCMINVOKECOMMANDINFO lpici) |
|
HRESULT | GetCommandString ([in] UINT_PTR idCmd, [in] UINT uType, [out] UINT *pwReserved, [out, size_is(cchMax)] LPSTR pszName, [in] UINT cchMax) |
|
HRESULT | QueryInterface ([in] REFIID riid, [out, iid_is(riid)] void **ppvObject) |
|
ULONG | AddRef () |
|
ULONG | Release () |
|
HRESULT | Initialize ([in] PCIDLIST_ABSOLUTE pidlFolder, [in] IDataObject *pdtobj, [in] HKEY hkeyProgID) |
|
Definition at line 28 of file COpenWithMenu.h.
◆ COpenWithMenu()
COpenWithMenu::COpenWithMenu |
( |
| ) |
|
◆ ~COpenWithMenu()
COpenWithMenu::~COpenWithMenu |
( |
| ) |
|
Definition at line 1143 of file COpenWithMenu.cpp.
1144{
1145 TRACE(
"Destroying COpenWithMenu(%p)\n",
this);
1146
1148 {
1151
1152
1155 return;
1156
1157
1159 mii.
cbSize =
sizeof(mii);
1161
1163 {
1165 {
1168 }
1169 }
1170 }
1171
1174}
_In_ WDFCOLLECTION _In_ ULONG Index
int WINAPI GetMenuItemCount(_In_opt_ HMENU)
BOOL WINAPI GetMenuItemInfoW(_In_ HMENU, _In_ UINT, _In_ BOOL, _Inout_ LPMENUITEMINFOW)
◆ AddApp()
Definition at line 1227 of file COpenWithMenu.cpp.
1228{
1231 if (!pwszName) return;
1232
1234 mii.
cbSize =
sizeof(mii);
1241
1244 {
1247 }
1248
1251}
static LPCWSTR GetName(SApp *pApp)
static HICON GetIcon(SApp *pApp)
BOOL WINAPI InsertMenuItemW(_In_ HMENU, _In_ UINT, _In_ BOOL, _In_ LPCMENUITEMINFOW)
Referenced by QueryContextMenu().
◆ AddChooseProgramItem()
VOID COpenWithMenu::AddChooseProgramItem |
( |
| ) |
|
|
private |
Definition at line 1199 of file COpenWithMenu.cpp.
1200{
1203
1205 mii.
cbSize =
sizeof(mii);
1210
1212 {
1213 ERR(
"Failed to load string\n");
1214 return;
1215 }
1216
1223
1225}
#define shell32_hInstance
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
#define IDS_OPEN_WITH_CHOOSE
int WINAPI LoadStringW(_In_opt_ HINSTANCE hInstance, _In_ UINT uID, _Out_writes_to_(cchBufferMax, return+1) LPWSTR lpBuffer, _In_ int cchBufferMax)
Referenced by QueryContextMenu().
◆ GetCommandString()
Implements IContextMenu.
Definition at line 1381 of file COpenWithMenu.cpp.
1383{
1384 TRACE(
"%p %lu %u %p %p %u\n",
this,
1385 idCmd, uType, pwReserved, pszName,
cchMax );
1386
1390
1392}
HRESULT SHELL_GetCommandStringImpl(SIZE_T CmdId, UINT uFlags, LPSTR Buf, UINT cchBuf, const CMVERBMAP *pMap)
◆ HandleMenuMsg()
◆ IconToBitmap()
Definition at line 1176 of file COpenWithMenu.cpp.
1177{
1181
1187
1193
1195
1197}
DWORD WINAPI GetLastError(void)
HGDIOBJ WINAPI SelectObject(_In_ HDC, _In_ HGDIOBJ)
HDC WINAPI CreateCompatibleDC(_In_opt_ HDC hdc)
HBITMAP WINAPI CreateCompatibleBitmap(_In_ HDC hdc, _In_ INT cx, _In_ INT cy)
int WINAPI FillRect(HDC, LPCRECT, HBRUSH)
BOOL WINAPI DeleteDC(_In_ HDC)
int WINAPI ReleaseDC(_In_opt_ HWND, _In_ HDC)
BOOL WINAPI DrawIconEx(_In_ HDC, _In_ int, _In_ int, _In_ HICON, _In_ int, _In_ int, _In_ UINT, _In_opt_ HBRUSH, _In_ UINT)
HDC WINAPI GetDC(_In_opt_ HWND)
int WINAPI GetSystemMetrics(_In_ int)
BOOL WINAPI SetRect(_Out_ LPRECT, _In_ int, _In_ int, _In_ int, _In_ int)
Referenced by AddApp().
◆ Initialize()
Implements IShellExtInit.
Definition at line 1405 of file COpenWithMenu.cpp.
1408{
1411
1412 TRACE(
"This %p\n",
this);
1413
1416
1417 CDataObjectHIDA pida(pdtobj);
1419 {
1420 ERR(
"pdtobj->GetData failed with 0x%x\n", pida.hr());
1421 return pida.hr();
1422 }
1423
1425
1428
1430 {
1431 TRACE(
"pidl is not a file\n");
1433 }
1434
1436 if (!pidl)
1437 {
1440 }
1441
1443 {
1444 ERR(
"SHGetPathFromIDListW failed\n");
1446 }
1447
1449
1452 {
1453 TRACE(
"file is a executable or shortcut\n");
1455 }
1456
1458}
LPWSTR WINAPI PathFindExtensionW(LPCWSTR lpszPath)
LPITEMIDLIST WINAPI ILCombine(LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2)
BOOL WINAPI SHGetPathFromIDListW(LPCITEMIDLIST pidl, LPWSTR pszPath)
BOOL _ILIsValue(LPCITEMIDLIST pidl)
_Check_return_ _CRTIMP int __cdecl _wcsicmp(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
static PCUIDLIST_RELATIVE HIDA_GetPIDLItem(CIDA const *pida, SIZE_T i)
static PCUIDLIST_ABSOLUTE HIDA_GetPIDLFolder(CIDA const *pida)
const ITEMIDLIST UNALIGNED * LPCITEMIDLIST
◆ InvokeCommand()
Implements IContextMenu.
Definition at line 1334 of file COpenWithMenu.cpp.
1335{
1338
1340
1342 goto DoChooseApp;
1343
1345 {
1347 {
1348DoChooseApp:
1351
1354 if (pwszExt[0])
1358 }
1359 else
1360 {
1361
1364 mii.
cbSize =
sizeof(mii);
1366
1368 {
1369
1373 }
1374 }
1375 }
1376
1378}
static BOOL Execute(SApp *pApp, LPCWSTR pwszFilePath)
HRESULT SHELL_MapContextMenuVerbToCmdId(LPCMINVOKECOMMANDINFO pICI, const CMVERBMAP *pMap)
@ OAIF_ALLOW_REGISTRATION
#define IS_INTRESOURCE(i)
◆ QueryContextMenu()
Implements IContextMenu.
Definition at line 1258 of file COpenWithMenu.cpp.
1264{
1265 TRACE(
"hMenu %p indexMenu %u idFirst %u idLast %u uFlags %u\n", hMenu, indexMenu, idCmdFirst, idCmdLast,
uFlags);
1266
1268
1272 {
1273 ERR(
"Failed to load string\n");
1275 }
1276
1277
1280
1281
1282 if (DefaultPos != -1)
1283 {
1284
1287
1288
1290 {
1292
1294 {
1298 }
1299
1301 }
1302 }
1303
1304
1307 mii.
cbSize =
sizeof(mii);
1310 {
1314 }
1315 else
1317
1321 if (DefaultPos == -1)
1322 {
1324 indexMenu = 0;
1325 }
1326
1329
1331}
BOOL LoadRecommended(LPCWSTR pwszFilePath)
UINT GetRecommendedCount()
#define MAKE_HRESULT(sev, fac, code)
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
HMENU WINAPI CreatePopupMenu(void)
UINT WINAPI GetMenuDefaultItem(_In_ HMENU hMenu, _In_ UINT fByPos, _In_ UINT gmdiFlags)
◆ m_hSubMenu
HMENU COpenWithMenu::m_hSubMenu |
|
private |
◆ m_idCmdFirst
UINT COpenWithMenu::m_idCmdFirst |
|
private |
◆ m_idCmdLast
UINT COpenWithMenu::m_idCmdLast |
|
private |
◆ m_pAppList
◆ m_wszPath
The documentation for this class was generated from the following files: