gecko-dev/cmd/winfe/enderwrp.h
1998-09-10 22:25:05 +00:00

33 lines
748 B
C++

#ifndef ENDERWRP_H
#define ENDERWRP_H
#include "lo_ele.h"
class CNetscapeEditView;
class CEditToolBarController;
class CEnderView: public CView
{
public:
CEnderView(CAbstractCX *p_pCx);
CEnderView(){};
~CEnderView();
BOOL Create(CWnd *pParent, lo_FormElementTextareaData *pData, LO_TextAttr *pTextAttr);
virtual void OnDraw(CDC *pDC);
CNetscapeEditView *GetEditView(){return m_pEditView;}
protected:
DECLARE_DYNCREATE(CEnderView)
//{{AFX_MSG(CEnderView)
afx_msg void OnDestroy();
afx_msg LONG OnToolController(UINT,LONG);
//}}AFX_MSG
private:
CNetscapeEditView *m_pEditView;
CEditToolBarController *m_pToolBarController;
CAbstractCX *m_pCX;
DECLARE_MESSAGE_MAP()
};
#endif //ENDERWRP_H