ToolBarsDemoView.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // ToolBarsDemoView.h : interface of the CToolBarsDemoView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_TOOLBARSDEMOVIEW_H__DF4248BD_863B_4841_A462_91AC2921CE8F__INCLUDED_)
  5. #define AFX_TOOLBARSDEMOVIEW_H__DF4248BD_863B_4841_A462_91AC2921CE8F__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CToolBarsDemoView : public CEditView
  10. {
  11. protected: // create from serialization only
  12. CToolBarsDemoView();
  13. DECLARE_DYNCREATE(CToolBarsDemoView)
  14. // Attributes
  15. public:
  16. CToolBarsDemoDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CToolBarsDemoView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  27. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  28. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. public:
  33. void Message();
  34. virtual ~CToolBarsDemoView();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. protected:
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CToolBarsDemoView)
  43. // NOTE - the ClassWizard will add and remove member functions here.
  44. //    DO NOT EDIT what you see in these blocks of generated code !
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. #ifndef _DEBUG  // debug version in ToolBarsDemoView.cpp
  49. inline CToolBarsDemoDoc* CToolBarsDemoView::GetDocument()
  50.    { return (CToolBarsDemoDoc*)m_pDocument; }
  51. #endif
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_TOOLBARSDEMOVIEW_H__DF4248BD_863B_4841_A462_91AC2921CE8F__INCLUDED_)