Click here to Skip to main content
15,881,139 members
Articles / Programming Languages / C++

Customized Visual Studio .NET package: your fully integrated document window inside the IDE

Rate me:
Please Sign up or sign in to vote.
4.72/5 (20 votes)
20 Dec 200313 min read 63.6K   1.1K   39  
Create a fully integrated document window inside the Visual Studio IDE.
#pragma once

#include "ObjSpy.h"
#include <unknwn.h>

DECL_SPY_OBJ(IVsPackage)

// forward declarartions
interface _VSPROPSHEETPAGE;

// GUID is taken from registry
static const GUID	IID_IVsPackage={0xD4F3F4B1,0xE900,0x4E51,0xAD,0xB3,0xD5,0x32,0x34,0x8F,0x83,0xCB};

/*

#include "ServiceProvider.h"

// forward declarartions
interface _VSPROPSHEETPAGE;

// GUID is taken from registry
static const GUID	IID_IVsPackage={0xD4F3F4B1,0xE900,0x4E51,0xAD,0xB3,0xD5,0x32,0x34,0x8F,0x83,0xCB};

// Declaration if the interface
interface IVsPackage : public IUnknown
{
	virtual STDMETHODIMP SetSite( IServiceProvider* pSP ) = 0;
	virtual STDMETHODIMP QueryClose(long* pfCanClose) = 0;
	virtual STDMETHODIMP Close() = 0;
	virtual STDMETHODIMP GetAutomationObject(LPWSTR pszPropName, IDispatch** ppDisp) = 0;
	virtual STDMETHODIMP CreateTool(GUID* rguidPersistenceSlot) = 0;
	virtual STDMETHODIMP ResetDefaults(unsigned long grfFlags) = 0;
	virtual STDMETHODIMP GetPropertyPage(GUID* rguidPage, _VSPROPSHEETPAGE* ppage) = 0;
};



class CVsPackage : public IVsPackage
{
public:
	CVsPackage(void);
	~CVsPackage(void);
	BOOL Attach( IVsPackage* pVP );
	// IUnknown
	STDMETHODIMP QueryInterface( REFIID, LPVOID* );
	STDMETHODIMP_(ULONG) AddRef(void);
	STDMETHODIMP_(ULONG) Release(void);
	// IVsPackage
	STDMETHODIMP SetSite( IServiceProvider* pSP );
	STDMETHODIMP QueryClose(long* pfCanClose);
	STDMETHODIMP Close();
	STDMETHODIMP GetAutomationObject(LPWSTR pszPropName, IDispatch** ppDisp);
	STDMETHODIMP CreateTool(GUID* rguidPersistenceSlot);
	STDMETHODIMP ResetDefaults(unsigned long grfFlags);
	STDMETHODIMP GetPropertyPage(GUID* rguidPage, _VSPROPSHEETPAGE* ppage);
protected:
	IVsPackage* m_pVP;
	CServiceProvider	m_SP;
};
*/

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
United States United States
For the last 7 years I have developed software in real-time/embedded and MS-Windows environments for military and civil markets. I hold B.Sc. degree in computer engineering. Living in Ontario, Canada, I like hiking and traveling in general. Currently, I'm looking for employment opportunity inside the GTA.

Comments and Discussions