home *** CD-ROM | disk | FTP | other *** search
- // growview.h : interface of the CGrowView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CGrowView : public CView
- {
- protected: // create from serialization only
- CGrowView();
- DECLARE_DYNCREATE(CGrowView)
-
- // Attributes
- public:
- CGrowDoc* GetDocument();
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- int m_CurrentAddedItem;
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CGrowView();
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CGrowView)
- afx_msg void OnGrowingItem1();
- afx_msg void OnGrowingItem2();
- afx_msg void OnGrowingItem3();
- afx_msg void OnGrowingItem4();
- afx_msg void OnGrowingItem5();
- afx_msg void OnGrowingAdditem();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in growview.cpp
- inline CGrowDoc* CGrowView::GetDocument()
- { return (CGrowDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-