www.pudn.com > roll.rar > BGRIDWND.H


// GeomWnd.h : header file 
// 
 
///////////////////////////////////////////////////////////////////////////// 
// CBgridWnd window 
 
class CFigure; 
class CFPoint; 
 
class CBgridWnd : public CWnd 
{ 
// Construction 
public: 
	CBgridWnd(CString filen=""); 
	CFigure *m_pFigure; 
// Attributes 
public: 
 
// Operations 
public: 
 
// Overrides 
	// ClassWizard generated virtual function overrides 
    //{{AFX_VIRTUAL(CBgridWnd) 
	public: 
	virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL); 
	//}}AFX_VIRTUAL 
 
// Implementation 
public: 
        virtual ~CBgridWnd(); 
 
	// Generated message map functions 
protected: 
        //{{AFX_MSG(CBgridWnd) 
	afx_msg void OnPaint(); 
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); 
	afx_msg void OnDestroy(); 
	afx_msg void OnSize(UINT nType, int cx, int cy); 
	//}}AFX_MSG 
	DECLARE_MESSAGE_MAP() 
}; 
 
/////////////////////////////////////////////////////////////////////////////