Click here to Skip to main content
15,886,578 members
Articles / Desktop Programming / ATL

The Mini Shell Extension Framework – Part III

Rate me:
Please Sign up or sign in to vote.
4.96/5 (11 votes)
18 Sep 200516 min read 139.9K   1.4K   46  
Discussion of a small C++ framework to create Windows shell extensions (IShellFolderImpl).
//
// (C) Copyright by Victor Derks <vba64@xs4all.nl>
//
// See README.TXT for the details of the software licence.
//
#pragma once


namespace MSF
{

class CMenuItemInfo : public MENUITEMINFO
{
public:

	CMenuItemInfo()
	{
		CommonConstruct();
	}


	CMenuItemInfo(UINT id)
	{
		CommonConstruct();

		SetID(id);
	}


	CMenuItemInfo(UINT id, const CString& str)
	{
		CommonConstruct();

		SetID(id);
		SetString(str);
	}


	CMenuItemInfo(UINT id, const CString& str, HMENU hsubmenu)
	{
		CommonConstruct();

		SetID(id);
		SetString(str);
		SetSubMenu(hsubmenu);
	}


	CMenuItemInfo(UINT id, HMENU hsubmenu) throw()
	{
		CommonConstruct();

		SetID(id);
		SetSubMenu(hsubmenu);
	}


	void SetID(UINT id) throw()
	{
		fMask |= MIIM_ID;
		wID = id;
	}


	void SetString(const CString& str)
	{
		fMask |= MIIM_TYPE;
		fType |= MFT_STRING;

		m_strCache = str;
		dwTypeData = const_cast<TCHAR*>(m_strCache.GetString());
	}


	void SetSubMenu(HMENU hsubmenu) throw()
	{
		fMask |= MIIM_SUBMENU;
		hSubMenu = hsubmenu;
	}


	void SetOwnerDraw() throw()
	{
		fType |= MFT_OWNERDRAW;
	}


	void SetCheckMarkBmps(HBITMAP hChecked, HBITMAP hUnchecked) throw()
	{
		fMask |= MIIM_CHECKMARKS;
		hbmpChecked   = hChecked;
		hbmpUnchecked = hUnchecked;
	}


	void SetState(UINT uiState) throw()
	{
		fMask |= MIIM_STATE;
		fState = uiState;
	}

private:

	void CommonConstruct() throw()
	{
		cbSize = sizeof(MENUITEMINFO);
		fMask  = 0;
		fType  = 0;
	}

	CMenuItemInfo(const CMenuItemInfo&);            // not implemented by design
	CMenuItemInfo& operator=(const CMenuItemInfo&); // not implemented by design

	// Member variables.
	CString m_strCache;
};

} // end namespace MSF

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior) Hitachi High-Tech Analytical Science
Netherlands Netherlands
Victor lives in Nijmegen, the oldest city in The Netherlands.
He studied Applied Physics in Delft and works Hitachi High-Tech Analytical Science.

Comments and Discussions