www.pudn.com > vc开发的精美界面.zip > BCGPrintPreviewView.h
//******************************************************************************* // COPYRIGHT NOTES // --------------- // This source code is a part of BCGControlBar library. // You may use, compile or redistribute it as part of your application // for free. You cannot redistribute it as a part of a software development // library without the agreement of the author. If the sources are // distributed along with the application, you should leave the original // copyright notes in the source code without any changes. // This code can be used WITHOUT ANY WARRANTIES on your own risk. // // For the latest updates to this library, check my site: // http://welcome.to/bcgsoft // // Stas Levin// // Created by Rui Godinho Lopes // ////////////////////////////////////////////////////////////////////// //******************************************************************** // // BCGPrintPreviewView.h : header file // // REVISION HISTORY // ---------------- // 0.00 9february2000 // creation // 0.01 14february2000 // + CBCGPrintPreviewView for disabling user access to the // UserPopupToolBar and Customize Dialog // + "Pages" image icon toggling implemented (by Stas Levin) // //******************************************************************** #if !defined(AFX_BCGPRINTPREVIEWVIEW_H__7AA67963_DFEF_11D3_AA95_000000000000__INCLUDED_) #define AFX_BCGPRINTPREVIEWVIEW_H__7AA67963_DFEF_11D3_AA95_000000000000__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include //for CPreviewView #include "BCGToolBar.h" #include "bcgcontrolbar.h" BCGCONTROLBARDLLEXPORT void BCGPrintPreview (CView* pView); ///////////////////////////////////////////////////////////////////////////// // CBCGPrintPreviewToolBar toolbar class CBCGPrintPreviewToolBar : public CBCGToolBar { protected: //{{AFX_MSG(CBCGPrintPreviewToolBar) afx_msg void OnContextMenu(CWnd *pWnd, CPoint pos); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ///////////////////////////////////////////////////////////////////////////// // CBCGPrintPreviewView window class CBCGPrintPreviewView : public CPreviewView { protected: CBCGPrintPreviewView(); // protected constructor used by dynamic creation DECLARE_DYNCREATE(CBCGPrintPreviewView) // Attributes public: // Operations protected: void SetToolbarSize (); // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CBCGPrintPreviewView) //}}AFX_VIRTUAL // Implementation protected: virtual ~CBCGPrintPreviewView(); CBCGPrintPreviewToolBar m_wndToolBar; int m_iOnePageImageIndex; int m_iTwoPageImageIndex; int m_iPagesBtnIndex; // Generated message map functions protected: //{{AFX_MSG(CBCGPrintPreviewView) afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); afx_msg void OnUpdatePreviewNumPage(CCmdUI* pCmdUI); afx_msg void OnSize(UINT nType, int cx, int cy); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_BCGPRINTPREVIEWVIEW_H__7AA67963_DFEF_11D3_AA95_000000000000__INCLUDED_)