home *** CD-ROM | disk | FTP | other *** search
- // vcsamvw.h : interface of the CVcsamp1View class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CVcsamp1View : public CView
- {
- protected: // create from serialization only
- CVcsamp1View();
- DECLARE_DYNCREATE(CVcsamp1View)
-
- // Attributes
- public:
- CVcsamp1Doc* GetDocument();
- CScheduleVBX* m_SchedVBX;
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CVcsamp1View();
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Printing support
- virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
- virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
- virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
- void OnInitialUpdate();
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CVcsamp1View)
- afx_msg void OnDialog();
- afx_msg void OnSize(UINT nType, int cx, int cy);
- afx_msg void OnResourceview();
- afx_msg void OnYearlyview();
- afx_msg void OnMonthlyview();
- afx_msg void OnWeeklyview();
- afx_msg void OnDailyview();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in vcsamvw.cpp
- inline CVcsamp1Doc* CVcsamp1View::GetDocument()
- { return (CVcsamp1Doc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-