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

对话框与窗口

开发平台:

Visual C++

  1. // PropertiesView.h
  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_PROPERTIESFRAME_H__19FCF03D_2F7A_4F06_B2FA_DD2F8BF25F24__INCLUDED_)
  21. #define AFX_PROPERTIESFRAME_H__19FCF03D_2F7A_4F06_B2FA_DD2F8BF25F24__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. // PropertiesFrame.h : header file
  26. //
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CPropertiesFrame frame
  29. #define CXTPMiniFrameWnd CXTPFrameWndBase<CMiniFrameWnd>
  30. class CPropertiesFrame : public CXTPMiniFrameWnd
  31. {
  32. public:
  33. CPropertiesFrame(CView* pOwnerView);           // protected constructor used by dynamic creation
  34. // Attributes
  35. public:
  36. // Operations
  37. public:
  38. CView* m_pOwnerView;
  39. CToolBar m_wndToolBar;
  40. // Overrides
  41. // ClassWizard generated virtual function overrides
  42. //{{AFX_VIRTUAL(CPropertiesFrame)
  43. //}}AFX_VIRTUAL
  44. // Implementation
  45. protected:
  46. virtual ~CPropertiesFrame();
  47. // Generated message map functions
  48. //{{AFX_MSG(CPropertiesFrame)
  49. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  50. afx_msg void OnDestroy();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CPropertiesView view
  57. class CPropertiesView : public CView
  58. {
  59. protected:
  60. CPropertiesView();           // protected constructor used by dynamic creation
  61. DECLARE_DYNCREATE(CPropertiesView)
  62. // Attributes
  63. public:
  64. CXTPReportControl m_wndReport;
  65. // Operations
  66. public:
  67. CXTPReportControl* GetTargetReport();
  68. // Overrides
  69. // ClassWizard generated virtual function overrides
  70. //{{AFX_VIRTUAL(CPropertiesView)
  71. protected:
  72. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  73. //}}AFX_VIRTUAL
  74. // Implementation
  75. protected:
  76. virtual ~CPropertiesView();
  77. #ifdef _DEBUG
  78. virtual void AssertValid() const;
  79. virtual void Dump(CDumpContext& dc) const;
  80. #endif
  81. // Generated message map functions
  82. protected:
  83. //{{AFX_MSG(CPropertiesView)
  84. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  85. afx_msg void OnSize(UINT nType, int cx, int cy);
  86. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  87. afx_msg void OnSetFocus(CWnd* pOldWnd);
  88. //}}AFX_MSG
  89. afx_msg void OnPropertyChanged(NMHDR * pNotifyStruct, LRESULT * /*result*/);
  90. DECLARE_MESSAGE_MAP()
  91. };
  92. //{{AFX_INSERT_LOCATION}}
  93. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  94. #endif // !defined(AFX_PROPERTIESFRAME_H__19FCF03D_2F7A_4F06_B2FA_DD2F8BF25F24__INCLUDED_)