Click here to Skip to main content
15,891,908 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.8K   1.1K   39  
Create a fully integrated document window inside the Visual Studio IDE.
#pragma once

#include <windows.h>

class CVsWindow;
typedef LONG (CVsWindow::*TFnMsgHandler)(WPARAM,LPARAM);
struct TMsgEntry
{
	UINT m_uMsg;
	TFnMsgHandler m_pFn;
};

struct TMsgMap
{
	TMsgMap* m_pBaseMap;
	TMsgEntry* m_pMsgEntries;
};

#define MS_DECL_MSG_MAP()		\
	virtual TMsgMap* GetMessageMap(); \
	static TMsgEntry m_pMsgEntries[]; \
	static TMsgMap	m_MsgMap;  \

#define MS_START_MSG_MAP( ClassName, BaseClassName )		\
TMsgMap ClassName::m_MsgMap = { &BaseClassName::m_MsgMap, ClassName::m_pMsgEntries };	\
TMsgMap* ClassName::GetMessageMap()				\
{												\
	return &(ClassName::m_MsgMap);				\
}												\
TMsgEntry ClassName::m_pMsgEntries[] =			\
{												\

#define MS_MSG(MSG_ID,FUNCTION)	{MSG_ID,(TFnMsgHandler)FUNCTION},

#define MS_END_MSG_MAP()	{0xFFFFF,NULL} };


class CVsWindow
{
public:
	CVsWindow(void);
	virtual ~CVsWindow(void);
	BOOL Create(HWND hParent, int iX, int iY, int iCX, int iCY );
	HWND GetHandle() { return m_hWnd; };
	void Invalidate() { if ( m_hWnd ) { ::InvalidateRect(m_hWnd,NULL,FALSE); } };
	void Close();
protected:
	virtual BOOL OnCreate( LPCREATESTRUCT pCS ){return TRUE;};
	virtual void OnNcDestroy(){};
	virtual void OnPaint(HDC hDC){};
	MS_DECL_MSG_MAP();
	HWND m_hWnd;
private:
	static LONG CALLBACK _MainWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
	static BOOL	m_bClassRegistered;
	LONG OnCreatePriv(WPARAM,LPARAM);
	LONG OnNcDestroyPriv(WPARAM,LPARAM);
	void OnPaintPriv();
};

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