📄 hanoiview.h
字号:
// HanoiView.h : interface of the CHanoiView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_HANOIVIEW_H__ECD40304_5AEE_4923_B66D_CA58CABEC933__INCLUDED_)
#define AFX_HANOIVIEW_H__ECD40304_5AEE_4923_B66D_CA58CABEC933__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define MIDDLELINEA 100
#define MIDDLELINEB 320
#define MIDDLELINEC 540
#define CHESSNUM 5
class CHanoiView : public CView
{
protected: // create from serialization only
CHanoiView();
DECLARE_DYNCREATE(CHanoiView)
// Attributes
public:
CHanoiDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CHanoiView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
virtual void OnInitialUpdate();
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
typedef struct
{
CRect Rect;
int Holder;
}NODE;
NODE node[CHESSNUM];
int SelectChess;
bool SelectOrNot;
bool PutOrNot;
int ComeLine;
CRect FormerRect;
int PointInRectWidth;
int PointInRectHeight;
virtual ~CHanoiView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CHanoiView)
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
afx_msg void OnAppChessnum();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in HanoiView.cpp
inline CHanoiDoc* CHanoiView::GetDocument()
{ return (CHanoiDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_HANOIVIEW_H__ECD40304_5AEE_4923_B66D_CA58CABEC933__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -