SplitterWindowView.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // SplitterWindowView.h : interface of the CSplitterWindowView class
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined(AFX_SplitterWindowVIEW_H__94C50575_8281_4E70_88B3_D88F2D1B79DF__INCLUDED_)
  21. #define AFX_SplitterWindowVIEW_H__94C50575_8281_4E70_88B3_D88F2D1B79DF__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. // class forwards
  26. class CSplitterWindowDoc;
  27. class CSplitterWindowView : public CView
  28. {
  29. protected: // create from serialization only
  30. CSplitterWindowView();
  31. DECLARE_DYNCREATE(CSplitterWindowView)
  32. // Attributes
  33. public:
  34. CSplitterWindowDoc* GetDocument();
  35. // Operations
  36. public:
  37. // Overrides
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CSplitterWindowView)
  40. public:
  41. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  42. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  43. protected:
  44. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  45. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  46. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. public:
  50. virtual ~CSplitterWindowView();
  51. #ifdef _DEBUG
  52. virtual void AssertValid() const;
  53. virtual void Dump(CDumpContext& dc) const;
  54. #endif
  55. protected:
  56. // Generated message map functions
  57. protected:
  58. //{{AFX_MSG(CSplitterWindowView)
  59. // NOTE - the ClassWizard will add and remove member functions here.
  60. //    DO NOT EDIT what you see in these blocks of generated code !
  61. //}}AFX_MSG
  62. DECLARE_MESSAGE_MAP()
  63. };
  64. #ifndef _DEBUG  // debug version in SplitterWindowView.cpp
  65. inline CSplitterWindowDoc* CSplitterWindowView::GetDocument()
  66. { return (CSplitterWindowDoc*)m_pDocument; }
  67. #endif
  68. /////////////////////////////////////////////////////////////////////////////
  69. //{{AFX_INSERT_LOCATION}}
  70. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  71. #endif // !defined(AFX_SplitterWindowVIEW_H__94C50575_8281_4E70_88B3_D88F2D1B79DF__INCLUDED_)