shellcontextmenu.h

来自「TabBars的开源源码」· C头文件 代码 · 共 47 行

H
47
字号
/***************************************************************************/
/* NOTE:                                                                   */
/* This document is copyright (c) by Oz Solomonovich.  All non-commercial  */
/* use is allowed, as long as this document not altered in any way, and    */
/* due credit is given.                                                    */
/***************************************************************************/

// ShellContextMenu.h : header file
//

#if !defined(AFX_SHELLCONTEXTMENU_H__24BAC666_2B03_11D3_B9C1_0000861DFCE7__INCLUDED_)
#define AFX_SHELLCONTEXTMENU_H__24BAC666_2B03_11D3_B9C1_0000861DFCE7__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class BCMenu;

class CShellContextMenu
{
    LPCONTEXTMENU           m_lpcm;
    CString                 m_cFullPath;
    HWND                    m_hWnd;
    BCMenu *                m_pSendToMenu;

public:    
    CShellContextMenu(HWND m_hWnd, CString cFullPath);
    ~CShellContextMenu();

    bool IsMenuCommand(int iCmd) const;
    void InvokeCommand(int iCmd) const;

    void CShellContextMenu::SetMenu(BCMenu *pMenu, BCMenu *pMenu2);

protected:    
    void CShellContextMenu::FillSendToMenu(BCMenu *pMenu, 
        LPSHELLFOLDER pSF, UINT &idm);
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_SHELLCONTEXTMENU_H__24BAC666_2B03_11D3_B9C1_0000861DFCE7__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?