Click here to Skip to main content
15,893,564 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 714K   8.8K   190  
Add-in for Microsoft VC++.NET 2003 that helps to insert message handlers for WTL.
#pragma once


class CCustomProjectSettings
{
	EnvDTE::_DTEPtr m_pDte;
	EnvDTE::GlobalsPtr GetSolutionGlobals();
	EnvDTE::GlobalsPtr GetProjectGlobals(EnvDTE::ProjectPtr pProject);
	bool GetGlobalsValue(EnvDTE::GlobalsPtr pGlobals, IN LPCTSTR lpszlpszVariableName, OUT _variant_t& vtValue);
	bool SetGlobalsValue(EnvDTE::GlobalsPtr pGlobals, IN LPCTSTR lpszlpszVariableName, IN _variant_t& vtValue);
	bool DeleteGlobalsVariable(EnvDTE::GlobalsPtr pGlobals, IN LPCTSTR lpszlpszVariableName);
public:
	CCustomProjectSettings(void);
	~CCustomProjectSettings(void);

	void Init(EnvDTE::_DTE* dte);

	bool GetSolutionVariableValue(IN LPCTSTR lpszVariableName, OUT _variant_t& vtValue);
	bool SetSolutionVariableValue(IN LPCTSTR lpszVariableName, IN _variant_t& vtValue);
	bool DeleteSolutionVariable(IN LPCTSTR lpszVariableName);

	bool GetProjectVariableValue(IN EnvDTE::ProjectPtr pProject, IN LPCTSTR lpszVariableName, OUT _variant_t& vtValue);
	bool SetProjectVariableValue(IN EnvDTE::ProjectPtr pProject, IN LPCTSTR lpszVariableName, IN _variant_t& vtValue);
	bool DeleteProjectVariable(IN EnvDTE::ProjectPtr pProject, IN LPCTSTR lpszVariableName);
	
	static CCustomProjectSettings m_sCustomProperties;
};

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