12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #include "stdafx.h"
- #include "Radiant.h"
- #include "RADEditView.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- IMPLEMENT_DYNCREATE(CRADEditView, CEditView)
- CRADEditView::CRADEditView()
- {
- }
- CRADEditView::~CRADEditView()
- {
- }
- BEGIN_MESSAGE_MAP(CRADEditView, CEditView)
-
- ON_CONTROL_REFLECT(EN_CHANGE, OnChange)
-
- END_MESSAGE_MAP()
- void CRADEditView::OnDraw(CDC* pDC)
- {
- CDocument* pDoc = GetDocument();
-
- }
- #ifdef _DEBUG
- void CRADEditView::AssertValid() const
- {
- CEditView::AssertValid();
- }
- void CRADEditView::Dump(CDumpContext& dc) const
- {
- CEditView::Dump(dc);
- }
- #endif
- void CRADEditView::OnChange()
- {
- }
|