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

对话框与窗口

开发平台:

Visual C++

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