// TestProgView.h : interface of the CTestProgView class // #pragma once class CTestProgCntrItem; class CTestProgView : public CView { protected: // create from serialization only CTestProgView(); DECLARE_DYNCREATE(CTestProgView) // Attributes public: CTestProgDoc* GetDocument() const; // m_pSelection holds the selection to the current CTestProgCntrItem. // For many applications, such a member variable isn't adequate to // represent a selection, such as a multiple selection or a selection // of objects that are not CTestProgCntrItem objects. This selection // mechanism is provided just to help you get started // TODO: replace this selection mechanism with one appropriate to your app CTestProgCntrItem* m_pSelection; // Operations public: // Overrides public: virtual void OnDraw(CDC* pDC); // overridden to draw this view virtual BOOL PreCreateWindow(CREATESTRUCT& cs); protected: virtual void OnInitialUpdate(); // called first time after construct virtual BOOL OnPreparePrinting(CPrintInfo* pInfo); virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo); virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo); virtual BOOL IsSelected(const CObject* pDocItem) const;// Container support // Implementation public: virtual ~CTestProgView(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: // Generated message map functions protected: afx_msg void OnDestroy(); afx_msg void OnSetFocus(CWnd* pOldWnd); afx_msg void OnSize(UINT nType, int cx, int cy); afx_msg void OnInsertObject(); afx_msg void OnCancelEditCntr(); afx_msg void OnFilePrint(); afx_msg void OnCancelEditSrvr(); DECLARE_MESSAGE_MAP() }; #ifndef _DEBUG // debug version in TestProgView.cpp inline CTestProgDoc* CTestProgView::GetDocument() const { return reinterpret_cast(m_pDocument); } #endif