Click here to Skip to main content
15,893,668 members
Articles / Desktop Programming / MFC

Understanding CDockablePane

Rate me:
Please Sign up or sign in to vote.
4.95/5 (80 votes)
19 Aug 2015Apache12 min read 362.8K   11.8K   134  
A good reference for CDockablePane
/* 
 * Developed by Huzifa Terkawi 
 * http://www.codeproject.com/Members/huzifa30
 * All permission granted to use this code as long as you retain this notice
 * and refere to orginal Material when part of this code is re-puplished
*/
#ifndef HTMLPANE_H_010DCC620F7740e9A76F3CCCB00CD6D9
#define HTMLPANE_H_010DCC620F7740e9A76F3CCCB00CD6D9

#include <afxhtml.h>

class CHtmlPane : public CDockablePane 
{
	DECLARE_DYNAMIC(CHtmlPane)
	DECLARE_MESSAGE_MAP()
public :
	CHtmlPane();
	virtual ~CHtmlPane();
protected:
	afx_msg int OnCreate(LPCREATESTRUCT lp);
	afx_msg void OnSize(UINT nType,int cx,int cy);
	afx_msg void OnDestroy();
protected:
	CHtmlView* m_wndHtml;
};
#endif

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, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Software Developer (Senior)
Syrian Arab Republic Syrian Arab Republic
C++ , MFC , Win32 professional Developer.

Comments and Discussions