HtmlViewEx.cpp
上传用户:bsw_2008
上传日期:2013-07-09
资源大小:2446k
文件大小:2k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // HtmlViewEx.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "CGameHallFrame.h"
  5. #include "HtmlViewEx.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CHtmlViewEx
  13. IMPLEMENT_DYNCREATE(CHtmlViewEx, CHtmlView)
  14. CHtmlViewEx::CHtmlViewEx()
  15. {
  16. EnableAutomation();
  17. //{{AFX_DATA_INIT(CHtmlViewEx)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. }
  21. CHtmlViewEx::~CHtmlViewEx()
  22. {
  23. }
  24. void CHtmlViewEx::OnFinalRelease()
  25. {
  26. // When the last reference for an automation object is released
  27. // OnFinalRelease is called.  The base class will automatically
  28. // deletes the object.  Add additional cleanup required for your
  29. // object before calling the base class.
  30. CHtmlView::OnFinalRelease();
  31. }
  32. void CHtmlViewEx::DoDataExchange(CDataExchange* pDX)
  33. {
  34. CHtmlView::DoDataExchange(pDX);
  35. //{{AFX_DATA_MAP(CHtmlViewEx)
  36. // NOTE: the ClassWizard will add DDX and DDV calls here
  37. //}}AFX_DATA_MAP
  38. }
  39. BEGIN_MESSAGE_MAP(CHtmlViewEx, CHtmlView)
  40. //{{AFX_MSG_MAP(CHtmlViewEx)
  41. // NOTE - the ClassWizard will add and remove mapping macros here.
  42. //}}AFX_MSG_MAP
  43. END_MESSAGE_MAP()
  44. BEGIN_DISPATCH_MAP(CHtmlViewEx, CHtmlView)
  45. //{{AFX_DISPATCH_MAP(CHtmlViewEx)
  46. // NOTE - the ClassWizard will add and remove mapping macros here.
  47. //}}AFX_DISPATCH_MAP
  48. END_DISPATCH_MAP()
  49. // Note: we add support for IID_IHtmlViewEx to support typesafe binding
  50. //  from VBA.  This IID must match the GUID that is attached to the 
  51. //  dispinterface in the .ODL file.
  52. // {A67DFE3C-E329-4506-933C-30254610CC4E}
  53. static const IID IID_IHtmlViewEx =
  54. { 0xa67dfe3c, 0xe329, 0x4506, { 0x93, 0x3c, 0x30, 0x25, 0x46, 0x10, 0xcc, 0x4e } };
  55. BEGIN_INTERFACE_MAP(CHtmlViewEx, CHtmlView)
  56. INTERFACE_PART(CHtmlViewEx, IID_IHtmlViewEx, Dispatch)
  57. END_INTERFACE_MAP()
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CHtmlViewEx diagnostics
  60. #ifdef _DEBUG
  61. void CHtmlViewEx::AssertValid() const
  62. {
  63. CHtmlView::AssertValid();
  64. }
  65. void CHtmlViewEx::Dump(CDumpContext& dc) const
  66. {
  67. CHtmlView::Dump(dc);
  68. }
  69. #endif //_DEBUG
  70. /////////////////////////////////////////////////////////////////////////////
  71. // CHtmlViewEx message handlers