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

对话框与窗口

开发平台:

Visual C++

  1. // DynamicHelpView.h : header file
  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(__DYNAMICHELPVIEW_H__)
  21. #define __DYNAMICHELPVIEW_H__
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. #ifndef __AFXEXT_H__
  26. #include <afxext.h>
  27. #endif
  28. #if _MSC_VER >= 1200 // MFC 5.0
  29. #include <afxhtml.h>
  30. #else
  31. #define CHtmlView CEditView
  32. #endif
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CDynamicHelpView html view
  35. class CDynamicHelpView : public CHtmlView
  36. {
  37. protected:
  38. CDynamicHelpView();           // protected constructor used by dynamic creation
  39. DECLARE_DYNCREATE(CDynamicHelpView)
  40. // html Data
  41. public:
  42. //{{AFX_DATA(CDynamicHelpView)
  43. // NOTE: the ClassWizard will add data members here
  44. //}}AFX_DATA
  45. // Attributes
  46. public:
  47. // Operations
  48. public:
  49. // Overrides
  50. // ClassWizard generated virtual function overrides
  51. //{{AFX_VIRTUAL(CDynamicHelpView)
  52. public:
  53. virtual void OnInitialUpdate();
  54. protected:
  55. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  56. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  57. //}}AFX_VIRTUAL
  58. // Implementation
  59. protected:
  60. virtual ~CDynamicHelpView();
  61. #ifdef _DEBUG
  62. virtual void AssertValid() const;
  63. virtual void Dump(CDumpContext& dc) const;
  64. #endif
  65. // Generated message map functions
  66. //{{AFX_MSG(CDynamicHelpView)
  67. afx_msg void OnNcPaint();
  68. afx_msg void OnNcCalcSize(BOOL bCalcValidRects, NCCALCSIZE_PARAMS FAR* lpncsp);
  69. //}}AFX_MSG
  70. afx_msg int OnMouseActivate(CWnd* pDesktopWnd, UINT nHitTest, UINT message);
  71. DECLARE_MESSAGE_MAP()
  72. };
  73. /////////////////////////////////////////////////////////////////////////////
  74. //{{AFX_INSERT_LOCATION}}
  75. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  76. #endif // !defined(__DYNAMICHELPVIEW_H__)