#pragma once
#include <afxwin.h>
#include "MCADoc.h"
#include "ControlView.h"
class CTotalView :
public CView
{
protected:
DECLARE_DYNCREATE(CTotalView)
// <20><>д
public:
CTotalView();
virtual ~CTotalView();
virtual void OnDraw(CDC* pDC); // <20><>д<EFBFBD>Ի<EFBFBD><D4BB>Ƹ<EFBFBD><C6B8><EFBFBD>ͼ
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
// <20><><EFBFBD>ɵ<EFBFBD><C9B5><EFBFBD>Ϣӳ<CFA2>亯<EFBFBD><E4BAAF>
DECLARE_MESSAGE_MAP()
CMCADoc* pDoc = nullptr;
CControlView* pView = nullptr;
afx_msg void OnPaint();
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
virtual BOOL PreTranslateMessage(MSG* pMsg);
};