Click here to Skip to main content
15,892,298 members
Articles / Desktop Programming / WTL

WTL Helper

Rate me:
Please Sign up or sign in to vote.
4.92/5 (116 votes)
27 Aug 200713 min read 713.4K   8.8K   190  
Add-in for Microsoft VC++.NET 2003 that helps to insert message handlers for WTL.
#pragma once

#include "resources/Resources.h"

enum eControlType
{
	eCTCommand,
	eCTNotify,
	eCTScrollbar
};

class CResourceManager
{
	CResources m_Resources;

	void AddResourceFiles(EnvDTE::ProjectItemPtr pParentItem, CAtlArray<CString>& Files);
	void GetResourceFiles(EnvDTE::ProjectPtr pProj, CAtlArray<CString>& Files);
	static void LoadMenuItemIds(CResMenu& Menu, CAtlArray<CString>& ResIds);
public:
	CResourceManager(void);
	~CResourceManager(void);

	bool LoadResources(EnvDTE::ProjectPtr pProj);
	bool LoadResources(EnvDTE::ProjectItemPtr pProjItem);

	const CResources* GetResources();
	const CResDialog* GetDialog(const CString lpDlgID) const;
	const ResControl* GetDlgControl(const CString DlgId, const CString ControlId) const;
	const ResControl* GetDlgControl(const CResDialog* pDlg, const CString ControlId) const;

	static eControlType GetControlType(const CString Type);
	
	bool GetMenuIds(CAtlArray<CString>& StringIds, bool bAppend = true);
	bool GetMenuIds(const CString ResID, CAtlArray<CString>& StringIds);
	bool GetToolbarIds(CAtlArray<CString>& StringIds, bool bAppend = true);
	bool GetToolbarIds(const CString ResID, CAtlArray<CString>& StringIds);
	bool GetAcceleratorIds(CAtlArray<CString>& StringIds, bool bAppend = true);
	bool GetAcceleratorIds(const CString ResID, CAtlArray<CString>& StringIds);

	// get controls IDs from the dialog which send WM_COMMAND notification message
	bool GetCommandControls(const CString DialogID, CAtlArray<CString>& StringIds) const;
	// get controls IDs from the dialog which of type in the list of possible types
	bool GetTypedControls(const CString DialogID, const CAtlArray<CString>* pPosibleTypes, CAtlArray<CString>& StringIds) const;

	// get controls IDs from the dialog which send WM_NOTIFY notification message
	bool GetNotifyControls(const CString DialogID, CAtlArray<CString>& StringIds) const;

	bool GetAllControls(const CString DialogID, CAtlArray<ResControl>& Controls) const;
};

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
Web Developer
Belarus Belarus
I am a software developer for 3 years.

Comments and Discussions