#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 1261 of file COpenWithMenu.cpp.
1262{
1263 TRACE(
"Destroying COpenWithMenu(%p)\n",
this);
1264
1266 {
1269
1270
1273 return;
1274
1275
1277 mii.
cbSize =
sizeof(mii);
1279
1281 {
1283 {
1286 }
1287 }
1288 }
1289
1292}
_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 1345 of file COpenWithMenu.cpp.
1346{
1349 if (!pwszName) return;
1350
1352 mii.
cbSize =
sizeof(mii);
1359
1362 {
1365 }
1366
1369}
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 1317 of file COpenWithMenu.cpp.
1318{
1321
1323 mii.
cbSize =
sizeof(mii);
1328
1330 {
1331 ERR(
"Failed to load string\n");
1332 return;
1333 }
1334
1341
1343}
#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 1492 of file COpenWithMenu.cpp.
1494{
1495 TRACE(
"%p %lu %u %p %p %u\n",
this,
1496 idCmd, uType, pwReserved, pszName,
cchMax );
1497
1501
1503}
HRESULT SHELL_GetCommandStringImpl(SIZE_T CmdId, UINT uFlags, LPSTR Buf, UINT cchBuf, const CMVERBMAP *pMap)
◆ HandleMenuMsg()
◆ IconToBitmap()
Definition at line 1294 of file COpenWithMenu.cpp.
1295{
1299
1305
1311
1313
1315}
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 1516 of file COpenWithMenu.cpp.
1519{
1522
1523 TRACE(
"This %p\n",
this);
1524
1527
1528 CDataObjectHIDA pida(pdtobj);
1530 {
1531 ERR(
"pdtobj->GetData failed with 0x%x\n", pida.hr());
1532 return pida.hr();
1533 }
1534
1536
1539
1541 {
1542 TRACE(
"pidl is not a file\n");
1544 }
1545
1547 if (!pidl)
1548 {
1551 }
1552
1554 {
1555 ERR(
"SHGetPathFromIDListW failed\n");
1557 }
1558
1560
1563 {
1564 TRACE(
"file is a executable or shortcut\n");
1566 }
1567
1569}
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 1453 of file COpenWithMenu.cpp.
1454{
1457
1459
1461 goto DoChooseApp;
1462
1464 {
1466 {
1467DoChooseApp:
1469 }
1470 else
1471 {
1472
1475 mii.
cbSize =
sizeof(mii);
1477
1479 {
1480
1484 }
1485 }
1486 }
1487
1489}
static BOOL Execute(SApp *pApp, LPCWSTR pwszFilePath)
HRESULT SHELL_MapContextMenuVerbToCmdId(LPCMINVOKECOMMANDINFO pICI, const CMVERBMAP *pMap)
#define IS_INTRESOURCE(i)
◆ QueryContextMenu()
Implements IContextMenu.
Definition at line 1377 of file COpenWithMenu.cpp.
1383{
1384 TRACE(
"hMenu %p indexMenu %u idFirst %u idLast %u uFlags %u\n", hMenu, indexMenu, idCmdFirst, idCmdLast,
uFlags);
1385
1387
1391 {
1392 ERR(
"Failed to load string\n");
1394 }
1395
1396
1399
1400
1401 if (DefaultPos != -1)
1402 {
1403
1406
1407
1409 {
1411
1413 {
1417 }
1418
1420 }
1421 }
1422
1423
1426 mii.
cbSize =
sizeof(mii);
1429 {
1433 }
1434 else
1436
1440 if (DefaultPos == -1)
1441 {
1443 indexMenu = 0;
1444 }
1445
1448
1450}
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: