// PtzeView.h : interface of the CPicturizeView class // ///////////////////////////////////////////////////////////////////////////// #include "PictDoc.h" #if !defined(AFX_PTZEVIEW_H__2F1AD442_1028_11D3_AC40_0060087BAA97__INCLUDED_) #define AFX_PTZEVIEW_H__2F1AD442_1028_11D3_AC40_0060087BAA97__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CPicturizeView : public CView { L_BOOL m_bCallback; public: LBitmapWindow m_LBitmapWnd; protected: // create from serialization only CPicturizeView(); DECLARE_DYNCREATE(CPicturizeView) // Attributes public: CPicturizeDoc* GetDocument(); // Operations public: // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CPicturizeView) public: virtual void OnDraw(CDC* pDC); // overridden to draw this view protected: virtual void OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView); //}}AFX_VIRTUAL // Implementation public: virtual ~CPicturizeView(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: // Generated message map functions protected: //{{AFX_MSG(CPicturizeView) afx_msg void OnFileOpen(); afx_msg void OnFilePicturize(); afx_msg void OnUpdateFilePicturize(CCmdUI* pCmdUI); afx_msg void OnEnablePicCallback(); afx_msg void OnUpdateEnablePicCallback(CCmdUI* pCmdUI); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; #ifndef _DEBUG // debug version in PtzeView.cpp inline CPicturizeDoc* CPicturizeView::GetDocument() { return (CPicturizeDoc*)m_pDocument; } #endif ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_PTZEVIEW_H__2F1AD442_1028_11D3_AC40_0060087BAA97__INCLUDED_)