📄 occmgr.cpp
字号:
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1998 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.
#include "stdafx.h"
#ifdef MACOCX
#define DBINITCONSTANTS
#endif
#include "occimpl.h"
#include "ocdb.h"
#ifdef AFX_OCC_SEG
#pragma code_seg(AFX_OCC_SEG)
#endif
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#define new DEBUG_NEW
#ifndef _AFX_NO_OCC_SUPPORT
/////////////////////////////////////////////////////////////////////////////
// AfxEnableControlContainer - wire up control container functions
PROCESS_LOCAL(COccManager, _afxOccManager)
void AFX_CDECL AfxEnableControlContainer(COccManager* pOccManager)
{
if (pOccManager == NULL)
afxOccManager = _afxOccManager.GetData();
else
afxOccManager = pOccManager;
}
/////////////////////////////////////////////////////////////////////////////
// Helper functions for cracking dialog templates
static inline BOOL IsDialogEx(const DLGTEMPLATE* pTemplate)
{
return ((DLGTEMPLATEEX*)pTemplate)->signature == 0xFFFF;
}
static inline WORD& DlgTemplateItemCount(DLGTEMPLATE* pTemplate)
{
if (IsDialogEx(pTemplate))
return reinterpret_cast<DLGTEMPLATEEX*>(pTemplate)->cDlgItems;
else
return pTemplate->cdit;
}
static inline const WORD& DlgTemplateItemCount(const DLGTEMPLATE* pTemplate)
{
if (IsDialogEx(pTemplate))
return reinterpret_cast<const DLGTEMPLATEEX*>(pTemplate)->cDlgItems;
else
return pTemplate->cdit;
}
AFX_STATIC DLGITEMTEMPLATE* AFXAPI _AfxFindFirstDlgItem(const DLGTEMPLATE* pTemplate)
{
DWORD dwStyle = pTemplate->style;
BOOL bDialogEx = IsDialogEx(pTemplate);
WORD* pw;
if (bDialogEx)
{
pw = (WORD*)((DLGTEMPLATEEX*)pTemplate + 1);
dwStyle = ((DLGTEMPLATEEX*)pTemplate)->style;
}
else
{
pw = (WORD*)(pTemplate + 1);
}
if (*pw == (WORD)-1) // Skip menu name ordinal or string
pw += 2; // WORDs
else
while (*pw++);
if (*pw == (WORD)-1) // Skip class name ordinal or string
pw += 2; // WORDs
else
while (*pw++);
while (*pw++); // Skip caption string
if (dwStyle & DS_SETFONT)
{
pw += bDialogEx ? 3 : 1; // Skip font size, weight, (italic, charset)
while (*pw++); // Skip font name
}
// Dword-align and return
return (DLGITEMTEMPLATE*)(((DWORD)pw + 3) & ~3);
}
AFX_STATIC DLGITEMTEMPLATE* AFXAPI _AfxFindNextDlgItem(DLGITEMTEMPLATE* pItem, BOOL bDialogEx)
{
WORD* pw;
if (bDialogEx)
pw = (WORD*)((DLGITEMTEMPLATEEX*)pItem + 1);
else
pw = (WORD*)(pItem + 1);
if (*pw == (WORD)-1) // Skip class name ordinal or string
pw += 2; // WORDs
else
while (*pw++);
if (*pw == (WORD)-1) // Skip text ordinal or string
pw += 2; // WORDs
else
while (*pw++);
WORD cbExtra = *pw++; // Skip extra data
// Dword-align and return
return (DLGITEMTEMPLATE*)(((DWORD)pw + cbExtra + 3) & ~3);
}
/////////////////////////////////////////////////////////////////////////////
// COccManager
BOOL COccManager::OnEvent(CCmdTarget* pCmdTarget, UINT idCtrl,
AFX_EVENT* pEvent, AFX_CMDHANDLERINFO* pHandlerInfo)
{
return pCmdTarget->OnEvent(idCtrl, pEvent, pHandlerInfo);
}
COleControlContainer* COccManager::CreateContainer(CWnd* pWnd)
{
// advanced control container apps may want to override
return new COleControlContainer(pWnd);
}
COleControlSite* COccManager::CreateSite(COleControlContainer* pCtrlCont)
{
// advanced control container apps may want to override
return new COleControlSite(pCtrlCont);
}
const DLGTEMPLATE* COccManager::PreCreateDialog(_AFX_OCC_DIALOG_INFO* pDlgInfo,
const DLGTEMPLATE* pOrigTemplate)
{
ASSERT(pDlgInfo != NULL);
pDlgInfo->m_ppOleDlgItems =
(DLGITEMTEMPLATE**)malloc(sizeof(DLGITEMTEMPLATE*) *
(DlgTemplateItemCount(pOrigTemplate) + 1));
if (pDlgInfo->m_ppOleDlgItems == NULL)
return NULL;
DLGTEMPLATE* pNewTemplate = SplitDialogTemplate(pOrigTemplate,
pDlgInfo->m_ppOleDlgItems);
pDlgInfo->m_pNewTemplate = pNewTemplate;
return (pNewTemplate != NULL) ? pNewTemplate : pOrigTemplate;
}
void COccManager::PostCreateDialog(_AFX_OCC_DIALOG_INFO* pDlgInfo)
{
if (pDlgInfo->m_pNewTemplate != NULL)
GlobalFree(pDlgInfo->m_pNewTemplate);
if (pDlgInfo->m_ppOleDlgItems != NULL)
free(pDlgInfo->m_ppOleDlgItems);
}
DLGTEMPLATE* COccManager::SplitDialogTemplate(const DLGTEMPLATE* pTemplate,
DLGITEMTEMPLATE** ppOleDlgItems)
{
DLGITEMTEMPLATE* pFirstItem = _AfxFindFirstDlgItem(pTemplate);
ULONG cbHeader = (BYTE*)pFirstItem - (BYTE*)pTemplate;
ULONG cbNewTemplate = cbHeader;
BOOL bDialogEx = IsDialogEx(pTemplate);
int iItem;
int nItems = (int)DlgTemplateItemCount(pTemplate);
DLGITEMTEMPLATE* pItem = pFirstItem;
DLGITEMTEMPLATE* pNextItem = pItem;
#ifndef OLE2ANSI
LPWSTR pszClassName;
#else
LPSTR pszClassName;
#endif
BOOL bHasOleControls = FALSE;
// Make first pass through the dialog template. On this pass, we're
// interested in determining:
// 1. Does this template contain any OLE controls?
// 2. If so, how large a buffer is needed for a template containing
// only the non-OLE controls?
for (iItem = 0; iItem < nItems; iItem++)
{
pNextItem = _AfxFindNextDlgItem(pItem, bDialogEx);
pszClassName = bDialogEx ?
#ifndef OLE2ANSI
(LPWSTR)(((DLGITEMTEMPLATEEX*)pItem) + 1) :
(LPWSTR)(pItem + 1);
#else
(LPSTR)(((DLGITEMTEMPLATEEX*)pItem) + 1) :
(LPSTR)(pItem + 1);
#endif
#ifndef OLE2ANSI
if (pszClassName[0] == L'{')
#else
if (pszClassName[0] == '{')
#endif
{
// Item is an OLE control.
bHasOleControls = TRUE;
}
else
{
// Item is not an OLE control: make room for it in new template.
cbNewTemplate += (BYTE*)pNextItem - (BYTE*)pItem;
}
pItem = pNextItem;
}
// No OLE controls were found, so there's no reason to go any further.
if (!bHasOleControls)
{
ppOleDlgItems[0] = (DLGITEMTEMPLATE*)(-1);
return NULL;
}
// Copy entire header into new template.
BYTE* pNew = (BYTE*)GlobalAlloc(GMEM_FIXED, cbNewTemplate);
DLGTEMPLATE* pNewTemplate = (DLGTEMPLATE*)pNew;
memcpy(pNew, pTemplate, cbHeader);
pNew += cbHeader;
// Initialize item count in new header to zero.
DlgTemplateItemCount(pNewTemplate) = 0;
pItem = pFirstItem;
pNextItem = pItem;
// Second pass through the dialog template. On this pass, we want to:
// 1. Copy all the non-OLE controls into the new template.
// 2. Build an array of item templates for the OLE controls.
for (iItem = 0; iItem < nItems; iItem++)
{
pNextItem = _AfxFindNextDlgItem(pItem, bDialogEx);
pszClassName = bDialogEx ?
#ifndef OLE2ANSI
(LPWSTR)(((DLGITEMTEMPLATEEX*)pItem) + 1) :
(LPWSTR)(pItem + 1);
if (pszClassName[0] == L'{')
#else
(LPSTR)(((DLGITEMTEMPLATEEX*)pItem) + 1) :
(LPSTR)(pItem + 1);
if (pszClassName[0] == '{')
#endif
{
// Item is OLE control: add it to the array.
ppOleDlgItems[iItem] = pItem;
}
else
{
// Item is not an OLE control: copy it to the new template.
ULONG cbItem = (BYTE*)pNextItem - (BYTE*)pItem;
ASSERT(cbItem >= (size_t)(bDialogEx ?
sizeof(DLGITEMTEMPLATEEX) :
sizeof(DLGITEMTEMPLATE)));
memcpy(pNew, pItem, cbItem);
pNew += cbItem;
// Incrememt item count in new header.
++DlgTemplateItemCount(pNewTemplate);
// Put placeholder in OLE item array.
ppOleDlgItems[iItem] = NULL;
}
pItem = pNextItem;
}
ppOleDlgItems[nItems] = (DLGITEMTEMPLATE*)(-1);
return pNewTemplate;
}
BOOL COccManager::CreateDlgControls(CWnd* pWndParent, LPCTSTR lpszResourceName,
_AFX_OCC_DIALOG_INFO* pOccDlgInfo)
{
// find resource handle
void* lpResource = NULL;
HGLOBAL hResource = NULL;
if (lpszResourceName != NULL)
{
HINSTANCE hInst = AfxFindResourceHandle(lpszResourceName, RT_DLGINIT);
HRSRC hDlgInit = ::FindResource(hInst, lpszResourceName, RT_DLGINIT);
if (hDlgInit != NULL)
{
// load it
hResource = LoadResource(hInst, hDlgInit);
if (hResource == NULL)
{
TRACE0("DLGINIT resource was found, but could not be loaded.\n");
return FALSE;
}
// lock it
lpResource = LockResource(hResource);
ASSERT(lpResource != NULL);
}
#ifdef _DEBUG
else
{
// If we didn't find a DLGINIT resource, check whether we were
// expecting to find one
DLGITEMTEMPLATE** ppOleDlgItems = pOccDlgInfo->m_ppOleDlgItems;
ASSERT(ppOleDlgItems != NULL);
while (*ppOleDlgItems != (DLGITEMTEMPLATE*)-1)
{
if (*ppOleDlgItems != NULL)
{
TRACE0("Dialog has OLE controls, but no matching DLGINIT resource.\n");
break;
}
++ppOleDlgItems;
}
}
#endif
}
// execute it
BOOL bResult = TRUE;
if (lpResource != NULL)
bResult = CreateDlgControls(pWndParent, lpResource, pOccDlgInfo);
// cleanup
if (lpResource != NULL && hResource != NULL)
{
UnlockResource(hResource);
FreeResource(hResource);
}
return bResult;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -