📄 dlgproxy.cpp
字号:
// DlgProxy.cpp : implementation file
//
#include "stdafx.h"
#include "GeoDataBase.h"
#include "DlgProxy.h"
#include "GeoDataBaseDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGeoDataBaseDlgAutoProxy
IMPLEMENT_DYNCREATE(CGeoDataBaseDlgAutoProxy, CCmdTarget)
CGeoDataBaseDlgAutoProxy::CGeoDataBaseDlgAutoProxy()
{
EnableAutomation();
// To keep the application running as long as an automation
// object is active, the constructor calls AfxOleLockApp.
AfxOleLockApp();
// Get access to the dialog through the application's
// main window pointer. Set the proxy's internal pointer
// to point to the dialog, and set the dialog's back pointer to
// this proxy.
ASSERT (AfxGetApp()->m_pMainWnd != NULL);
ASSERT_VALID (AfxGetApp()->m_pMainWnd);
ASSERT_KINDOF(CGeoDataBaseDlg, AfxGetApp()->m_pMainWnd);
m_pDialog = (CGeoDataBaseDlg*) AfxGetApp()->m_pMainWnd;
m_pDialog->m_pAutoProxy = this;
}
CGeoDataBaseDlgAutoProxy::~CGeoDataBaseDlgAutoProxy()
{
// To terminate the application when all objects created with
// with automation, the destructor calls AfxOleUnlockApp.
// Among other things, this will destroy the main dialog
if (m_pDialog != NULL)
m_pDialog->m_pAutoProxy = NULL;
AfxOleUnlockApp();
}
void CGeoDataBaseDlgAutoProxy::OnFinalRelease()
{
// When the last reference for an automation object is released
// OnFinalRelease is called. The base class will automatically
// deletes the object. Add additional cleanup required for your
// object before calling the base class.
CCmdTarget::OnFinalRelease();
}
BEGIN_MESSAGE_MAP(CGeoDataBaseDlgAutoProxy, CCmdTarget)
//{{AFX_MSG_MAP(CGeoDataBaseDlgAutoProxy)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
BEGIN_DISPATCH_MAP(CGeoDataBaseDlgAutoProxy, CCmdTarget)
//{{AFX_DISPATCH_MAP(CGeoDataBaseDlgAutoProxy)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_DISPATCH_MAP
END_DISPATCH_MAP()
// Note: we add support for IID_IGeoDataBase to support typesafe binding
// from VBA. This IID must match the GUID that is attached to the
// dispinterface in the .ODL file.
// {2CC3AD71-F29F-4E85-A481-4284F4CBC6CC}
static const IID IID_IGeoDataBase =
{ 0x2cc3ad71, 0xf29f, 0x4e85, { 0xa4, 0x81, 0x42, 0x84, 0xf4, 0xcb, 0xc6, 0xcc } };
BEGIN_INTERFACE_MAP(CGeoDataBaseDlgAutoProxy, CCmdTarget)
INTERFACE_PART(CGeoDataBaseDlgAutoProxy, IID_IGeoDataBase, Dispatch)
END_INTERFACE_MAP()
// The IMPLEMENT_OLECREATE2 macro is defined in StdAfx.h of this project
// {29680194-959B-4BF3-8656-313288409C81}
IMPLEMENT_OLECREATE2(CGeoDataBaseDlgAutoProxy, "GeoDataBase.Application", 0x29680194, 0x959b, 0x4bf3, 0x86, 0x56, 0x31, 0x32, 0x88, 0x40, 0x9c, 0x81)
/////////////////////////////////////////////////////////////////////////////
// CGeoDataBaseDlgAutoProxy message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -