📄 fractalview.h
字号:
//贵州省安顺市第二高级中学 高二一班 蒋伟
//2002.7.1
//请勿修改版权信息 谢谢
//Neil
//
// FractalView.h : interface of the CFractalView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_FRACTALVIEW_H__98162DFB_9924_49A5_B3C8_8CA0B6627E15__INCLUDED_)
#define AFX_FRACTALVIEW_H__98162DFB_9924_49A5_B3C8_8CA0B6627E15__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CFractalView : public CView
{
protected: // create from serialization only
CFractalView();
DECLARE_DYNCREATE(CFractalView)
// Attributes
public:
CFractalDoc* GetDocument();
CWinThread* m_pDrawThread;
static UINT m_AdjustMsg;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CFractalView)
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual void OnDraw(CDC* pDC);
//}}AFX_VIRTUAL
// Implementation
public:
// void DrawBranch(int x,int y,double Length,int StartAngle,CDC *pDC);
virtual ~CFractalView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
afx_msg LRESULT OnAdjustBar(WPARAM wParam, LPARAM lParam);
afx_msg LRESULT OnUpdateStautsBar(WPARAM wParam, LPARAM lParam);
CString strLocation;
//{{AFX_MSG(CFractalView)
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
afx_msg void OnViewRefresh();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in FractalView.cpp
inline CFractalDoc* CFractalView::GetDocument()
{ return (CFractalDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_FRACTALVIEW_H__98162DFB_9924_49A5_B3C8_8CA0B6627E15__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -