This repository has been archived on 2022-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
Multichannel-Analyzer/MCA/TotalView.h

40 lines
740 B
C
Raw Normal View History

2022-03-20 15:14:44 +08:00
#pragma once
#include <afxwin.h>
#include "MCADoc.h"
#include "ControlView.h"
2022-03-20 15:14:44 +08:00
class CTotalView :
public CView
{
protected:
DECLARE_DYNCREATE(CTotalView)
// <20><>д
public:
CTotalView();
virtual ~CTotalView();
public:
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
protected:
// <20><><EFBFBD>ɵ<EFBFBD><C9B5><EFBFBD>Ϣӳ<CFA2><EFBFBD><E4BAAF>
protected:
DECLARE_MESSAGE_MAP()
public:
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);
2022-03-20 15:14:44 +08:00
};