// SaveView.h : interface of the CSaveView class // ///////////////////////////////////////////////////////////////////////////// #if !defined(AFX_SAVEVIEW_H__439DD651_1136_11D3_86FA_0060087BC27A__INCLUDED_) #define AFX_SAVEVIEW_H__439DD651_1136_11D3_86FA_0060087BC27A__INCLUDED_ #include "UsrFile.h" // Added by ClassView #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CSaveView : public CView { protected: // create from serialization only CSaveView(); DECLARE_DYNCREATE(CSaveView) // Attributes public: CSaveDoc* GetDocument(); // Operations public: // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CSaveView) public: virtual void OnDraw(CDC* pDC); // overridden to draw this view virtual BOOL PreCreateWindow(CREATESTRUCT& cs); virtual void OnInitialUpdate(); protected: virtual void OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView); //}}AFX_VIRTUAL // Implementation public: L_BOOL DlgFlag; LUserFile UserLeadFile; L_INT LoadSaveFunction(HWND hWnd, L_INT BitsPerPix); LBitmapWindow m_LBmpWnd; virtual ~CSaveView(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: // Generated message map functions protected: //{{AFX_MSG(CSaveView) afx_msg void OnFileSaveas32(); afx_msg void OnFileSaveas24(); afx_msg void OnFileSaveas16(); afx_msg void OnFileSaveas1(); afx_msg void OnFileSaveas4(); afx_msg void OnFileSaveas8(); afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; #ifndef _DEBUG // debug version in SaveView.cpp inline CSaveDoc* CSaveView::GetDocument() { return (CSaveDoc*)m_pDocument; } #endif ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_SAVEVIEW_H__439DD651_1136_11D3_86FA_0060087BC27A__INCLUDED_)