// ScrView.h : interface of the CScrView class // ///////////////////////////////////////////////////////////////////////////// #if !defined(AFX_MFCVIEW_H__20697B0F_0F36_11D2_8DD4_0060087BAA97__INCLUDED_) #define AFX_MFCVIEW_H__20697B0F_0F36_11D2_8DD4_0060087BAA97__INCLUDED_ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 class CScrView : public CView { protected: // create from serialization only CScrView(); DECLARE_DYNCREATE(CScrView) // Attributes public: CScrDoc* GetDocument(); // Operations public: // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CScrView) public: virtual void OnDraw(CDC* pDC); // overridden to draw this view virtual BOOL PreCreateWindow(CREATESTRUCT& cs); protected: virtual BOOL OnPreparePrinting(CPrintInfo* pInfo); virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo); virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo); virtual void OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView); //}}AFX_VIRTUAL // Implementation LRESULT OnDoRealize(WPARAM wParam, LPARAM lParam); public: CLead m_LeadBitmap; virtual ~CScrView(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: // Generated message map functions protected: //{{AFX_MSG(CScrView) // afx_msg void OnCaptureFromexedlgtabbedview(); /// afx_msg void OnCaptureFullscreen(); /// afx_msg void OnCaptureMousecursor(); /// afx_msg void OnCaptureSelectedobject(); /// afx_msg void OnCaptureWindowundercursor(); // afx_msg void OnOptionsObject(); afx_msg void OnFileSaveAs(); afx_msg void OnSize(UINT nType, int cx, int cy); afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; #ifndef _DEBUG // debug version in MFCView.cpp inline CScrDoc* CScrView::GetDocument() { return (CScrDoc*)m_pDocument; } #endif ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Developer Studio will insert additional declarations immediately before the previous line. #endif // !defined(AFX_MFCVIEW_H__20697B0F_0F36_11D2_8DD4_0060087BAA97__INCLUDED_)