home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / ba / tvxsamp / dlgproxy.cpp next >
C/C++ Source or Header  |  1997-09-03  |  3KB  |  96 lines

  1. // DlgProxy.cpp : TV Viewer sample application
  2. //
  3. // Copyright (C) 1997 Microsoft Corporation
  4. // All rights reserved.
  5. //
  6. // This source code is only intended as a supplement to the
  7. // Broadcast Architecture Programmer's Reference.
  8. // For detailed information regarding Broadcast
  9. // Architecture, see the reference.
  10. // implementation file
  11. //
  12.  
  13. #include "stdafx.h"
  14. #include "TVXSamp.h"
  15. #include "DlgProxy.h"
  16. #include "TVXSampDlg.h"
  17.  
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CTVXSampDlgAutoProxy
  26.  
  27. IMPLEMENT_DYNCREATE(CTVXSampDlgAutoProxy, CCmdTarget)
  28.  
  29. CTVXSampDlgAutoProxy::CTVXSampDlgAutoProxy()
  30. {
  31.     EnableAutomation();
  32.     
  33.     // To keep the application running as long as an OLE automation 
  34.     //    object is active, the constructor calls AfxOleLockApp.
  35.     AfxOleLockApp();
  36.  
  37.     // Get access to the dialog through the application's
  38.     //  main window pointer.  Set the proxy's internal pointer
  39.     //  to point to the dialog, and set the dialog's back pointer to
  40.     //  this proxy.
  41.     ASSERT (AfxGetApp()->m_pMainWnd != NULL);
  42.     ASSERT_VALID (AfxGetApp()->m_pMainWnd);
  43.     ASSERT_KINDOF(CTVXSampDlg, AfxGetApp()->m_pMainWnd);
  44.     m_pDialog = (CTVXSampDlg*) AfxGetApp()->m_pMainWnd;
  45.     m_pDialog->m_pAutoProxy = this;
  46. }
  47.  
  48. CTVXSampDlgAutoProxy::~CTVXSampDlgAutoProxy()
  49. {
  50.     // To terminate the application when all objects created with
  51.     //     with OLE automation, the destructor calls AfxOleUnlockApp.
  52.     //  Among other things, this will destroy the main dialog
  53.     AfxOleUnlockApp();
  54. }
  55.  
  56. void CTVXSampDlgAutoProxy::OnFinalRelease()
  57. {
  58.     // When the last reference for an automation object is released
  59.     // OnFinalRelease is called.  The base class will automatically
  60.     // deletes the object.  Add additional cleanup required for your
  61.     // object before calling the base class.
  62.  
  63.     CCmdTarget::OnFinalRelease();
  64. }
  65.  
  66. BEGIN_MESSAGE_MAP(CTVXSampDlgAutoProxy, CCmdTarget)
  67.     //{{AFX_MSG_MAP(CTVXSampDlgAutoProxy)
  68.         // NOTE - the ClassWizard will add and remove mapping macros here.
  69.     //}}AFX_MSG_MAP
  70. END_MESSAGE_MAP()
  71.  
  72. BEGIN_DISPATCH_MAP(CTVXSampDlgAutoProxy, CCmdTarget)
  73.     //{{AFX_DISPATCH_MAP(CTVXSampDlgAutoProxy)
  74.         // NOTE - the ClassWizard will add and remove mapping macros here.
  75.     //}}AFX_DISPATCH_MAP
  76. END_DISPATCH_MAP()
  77.  
  78. // Note: we add support for IID_ITVXSamp to support typesafe binding
  79. //  from VBA.  This IID must match the GUID that is attached to the 
  80. //  dispinterface in the .ODL file.
  81.  
  82. // {FF521024-0CE4-11D1-98AE-080009DC95C5}
  83. static const IID IID_ITVXSamp =
  84. { 0xff521024, 0xce4, 0x11d1, { 0x98, 0xae, 0x8, 0x0, 0x9, 0xdc, 0x95, 0xc5 } };
  85.  
  86. BEGIN_INTERFACE_MAP(CTVXSampDlgAutoProxy, CCmdTarget)
  87.     INTERFACE_PART(CTVXSampDlgAutoProxy, IID_ITVXSamp, Dispatch)
  88. END_INTERFACE_MAP()
  89.  
  90. // The IMPLEMENT_OLECREATE2 macro is defined in StdAfx.h of this project
  91. // {FF521022-0CE4-11D1-98AE-080009DC95C5}
  92. IMPLEMENT_OLECREATE2(CTVXSampDlgAutoProxy, "TVXSamp.Application", 0xff521022, 0xce4, 0x11d1, 0x98, 0xae, 0x8, 0x0, 0x9, 0xdc, 0x95, 0xc5)
  93.  
  94. /////////////////////////////////////////////////////////////////////////////
  95. // CTVXSampDlgAutoProxy message handlers
  96.