home *** CD-ROM | disk | FTP | other *** search
- // MandView.h : interface of the CMandelView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CMandelView : public CView
- {
- private:
- int m_Col;
- int m_ColMax;
- float m_CR;
- float m_DCI;
- float m_DCR;
- int m_RowMax;
-
- public:
- void DrawCol ();
-
- protected: // create from serialization only
- CMandelView();
- DECLARE_DYNCREATE(CMandelView)
-
- // Attributes
- public:
- CMandelDoc* GetDocument();
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CMandelView)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- protected:
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CMandelView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CMandelView)
- afx_msg void OnSize(UINT nType, int cx, int cy);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in MandView.cpp
- inline CMandelDoc* CMandelView::GetDocument()
- { return (CMandelDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-