mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
33 lines
748 B
C
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
|
||
|
|