📄 oleipfrm.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 AFX_OLE3_SEG
#pragma code_seg(AFX_OLE3_SEG)
#endif
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#define new DEBUG_NEW
/////////////////////////////////////////////////////////////////////////////
// COleCntrFrameWnd implementation
COleCntrFrameWnd::COleCntrFrameWnd(COleIPFrameWnd* pInPlaceFrame)
{
m_pInPlaceFrame = pInPlaceFrame;
RemoveFrameWnd();
}
COleCntrFrameWnd::~COleCntrFrameWnd()
{
AddFrameWnd();
Detach();
}
void COleCntrFrameWnd::RecalcLayout(BOOL /*bNotify*/)
{
if (!m_bInRecalcLayout)
{
m_bInRecalcLayout = TRUE;
m_nIdleFlags &= ~(idleLayout|idleNotify);
ASSERT_VALID(m_pInPlaceFrame);
COleServerDoc* pDoc = (COleServerDoc*)m_pInPlaceFrame->GetActiveDocument();
if (pDoc != NULL && AfxGetThread()->m_pActiveWnd == m_pInPlaceFrame)
{
ASSERT_VALID(pDoc);
ASSERT_KINDOF(COleServerDoc, pDoc);
if (this == m_pInPlaceFrame->m_pMainFrame)
pDoc->OnResizeBorder(NULL, m_pInPlaceFrame->m_lpFrame, TRUE);
if (this == m_pInPlaceFrame->m_pDocFrame)
pDoc->OnResizeBorder(NULL, m_pInPlaceFrame->m_lpDocFrame, FALSE);
}
m_bInRecalcLayout = FALSE;
}
}
void COleCntrFrameWnd::OnIdleUpdateCmdUI()
{
// do frame delayed recalc
if (m_nIdleFlags & idleLayout)
RecalcLayout(m_nIdleFlags & idleNotify);
// update control bars
POSITION pos = m_listControlBars.GetHeadPosition();
while (pos != NULL)
{
CControlBar* pBar = (CControlBar*)m_listControlBars.GetNext(pos);
ASSERT(pBar != NULL);
ASSERT_VALID(pBar);
AfxCallWndProc(pBar, pBar->m_hWnd, WM_IDLEUPDATECMDUI, TRUE, 0);
}
}
BOOL COleCntrFrameWnd::OnCmdMsg(UINT nID, int nCode, void* pExtra,
AFX_CMDHANDLERINFO* pHandlerInfo)
{
ASSERT_VALID(m_pInPlaceFrame);
// pump through inplace frame
CPushRoutingFrame push(this);
return m_pInPlaceFrame->OnCmdMsg(nID, nCode, pExtra, pHandlerInfo);
}
void COleCntrFrameWnd::PostNcDestroy()
{
// do nothing to avoid destroying window
}
#ifdef _DEBUG
void COleCntrFrameWnd::AssertValid() const
{
// COleCntrFrameWnd bends the CWnd rules just a little bit.
ASSERT(m_hWnd == NULL || ::IsWindow(m_hWnd));
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// COleIPFrameWnd implementation
BEGIN_MESSAGE_MAP(COleIPFrameWnd, CFrameWnd)
//{{AFX_MSG_MAP(COleIPFrameWnd)
ON_WM_SIZE()
ON_MESSAGE(WM_RECALCPARENT, OnRecalcParent)
ON_MESSAGE_VOID(WM_IDLEUPDATECMDUI, OnIdleUpdateCmdUI)
ON_WM_WINDOWPOSCHANGING()
ON_WM_CREATE()
ON_WM_DESTROY()
ON_MESSAGE(WM_SIZECHILD, OnResizeChild)
ON_MESSAGE(WM_SETMESSAGESTRING, OnSetMessageString)
ON_UPDATE_COMMAND_UI(ID_VIEW_STATUS_BAR, OnUpdateControlBarMenu)
ON_COMMAND_EX(ID_VIEW_STATUS_BAR, OnBarCheck)
ON_UPDATE_COMMAND_UI(ID_VIEW_TOOLBAR, OnUpdateControlBarMenu)
ON_COMMAND_EX(ID_VIEW_TOOLBAR, OnBarCheck)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
COleIPFrameWnd::COleIPFrameWnd()
{
// initialize OLEINPLACEFRAMEINFO struct
memset(&m_frameInfo, 0, sizeof(m_frameInfo));
m_frameInfo.cb = sizeof m_frameInfo;
// initialize in-place state
m_bUIActive = FALSE;
m_lpFrame = NULL;
m_lpDocFrame = NULL;
m_hOleMenu = NULL;
m_rectPos.SetRectEmpty();
m_rectClip.SetRectEmpty();
m_bInsideRecalc = FALSE;
m_hSharedMenu = NULL;
m_pMainFrame = NULL;
m_pDocFrame = NULL;
ASSERT_VALID(this);
}
COleIPFrameWnd::~COleIPFrameWnd()
{
ASSERT_VALID(this);
// destroy wrappers of container's frames
delete m_pMainFrame;
delete m_pDocFrame;
// destroy shared menu
if (m_hSharedMenu != NULL)
::DestroyMenu(m_hSharedMenu);
// interfaces to the container should already be released
RELEASE(m_lpFrame);
RELEASE(m_lpDocFrame);
}
int COleIPFrameWnd::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
ASSERT_VALID(this);
if (CFrameWnd::OnCreate(lpCreateStruct) < 0)
return -1;
// remove WS_EX_CLIENTEDGE style if present
ModifyStyleEx(WS_EX_CLIENTEDGE, 0, 0);
// need to remove the pending WM_SETMESSAGESTRING from the queue
MSG msg;
PeekMessage(&msg, m_hWnd, WM_SETMESSAGESTRING, WM_SETMESSAGESTRING,
PM_REMOVE|PM_NOYIELD);
ASSERT_VALID(this);
return 0;
}
void COleIPFrameWnd::OnDestroy()
{
// notify the container that the rectangle has changed!
COleServerDoc* pDoc = (COleServerDoc*)GetActiveDocument();
if (pDoc != NULL)
{
ASSERT_KINDOF(COleServerDoc, pDoc);
// close and abort changes to the document
pDoc->DisconnectViews();
pDoc->OnCloseDocument();
}
// explicitly destroy all of the dock bars since this window
// is actually in the container and will not be destroyed
if (m_pMainFrame != NULL)
m_pMainFrame->DestroyDockBars();
if (m_pDocFrame != NULL)
m_pDocFrame->DestroyDockBars();
CFrameWnd::OnDestroy();
}
BOOL COleIPFrameWnd::OnCreateControlBars(CWnd* pWndFrame, CWnd* /*pWndDoc*/)
{
ASSERT(pWndFrame != NULL);
UNUSED(pWndFrame); // not used in release builds
return TRUE;
}
BOOL COleIPFrameWnd::OnCreateControlBars(CFrameWnd* pWndFrame,
CFrameWnd* pWndDoc)
{
return OnCreateControlBars((CWnd*)pWndFrame, (CWnd*)pWndDoc);
}
void COleIPFrameWnd::OnIdleUpdateCmdUI()
{
// update toolbars which may be on the container
// and allow delayed recalc layouts to execute
if (m_pMainFrame != NULL)
m_pMainFrame->OnIdleUpdateCmdUI();
if (m_pDocFrame != NULL)
m_pDocFrame->OnIdleUpdateCmdUI();
}
void COleIPFrameWnd::OnWindowPosChanging(LPWINDOWPOS lpWndPos)
{
MSG msg;
if (!::PeekMessage(&msg, NULL, WM_KICKIDLE, WM_KICKIDLE, PM_NOREMOVE))
::PostThreadMessage(GetCurrentThreadId(), WM_KICKIDLE, 0, 0);
CFrameWnd::OnWindowPosChanging(lpWndPos);
}
LRESULT COleIPFrameWnd::OnSetMessageString(WPARAM wParam, LPARAM lParam)
{
USES_CONVERSION;
if (m_lpFrame != NULL)
{
LPCTSTR lpsz = NULL;
CString strMessage;
// set the message bar text
if (lParam != NULL)
{
ASSERT(wParam == 0); // can't have both an ID and a string
lpsz = (LPCTSTR)lParam; // set an explicit string
}
else if (wParam != 0)
{
// get message associated with the ID indicated by wParam
GetMessageString(wParam, strMessage);
lpsz = strMessage;
}
// notify container of new status text
if (lpsz == NULL)
lpsz = _T("");
m_lpFrame->SetStatusText(T2COLE(lpsz));
}
UINT nIDLast = m_nIDLastMessage;
m_nIDLastMessage = (UINT)wParam; // new ID (or 0)
m_nIDTracking = (UINT)wParam; // so F1 on toolbar buttons work
return nIDLast;
}
BOOL COleIPFrameWnd::LoadFrame(UINT nIDResource, DWORD dwDefaultStyle,
CWnd* pParentWnd, CCreateContext* pContext)
{
if (pParentWnd != NULL)
ASSERT_VALID(pParentWnd);
// only do this once
ASSERT_VALID_IDR(nIDResource);
ASSERT(m_nIDHelp == 0 || m_nIDHelp == nIDResource);
m_nIDHelp = nIDResource; // ID for help context (+HID_BASE_RESOURCE)
// create the window (use child window style create)
CRect rect(0, 0, 0, 0);
if (!CWnd::Create(NULL, NULL, dwDefaultStyle, rect, pParentWnd,
nIDResource, pContext))
{
return FALSE; // will self destruct on failure normally
}
// load accelerator resource
LoadAccelTable(MAKEINTRESOURCE(nIDResource));
return TRUE;
}
void COleIPFrameWnd::OnSize(UINT /*nType*/, int /*cx*/, int /*cy*/)
{
// recalc layout is not called in OnSize since COleIPFrameWnd does
// "inside out" recalc -- which is driven by the size of the
// inner most window changing, not the outer most!
}
LRESULT COleIPFrameWnd::OnResizeChild(WPARAM, LPARAM lParam)
{
// notify the container that the rectangle has changed!
COleServerDoc* pDoc = (COleServerDoc*)GetActiveDocument();
if (pDoc == NULL)
return 0;
ASSERT_KINDOF(COleServerDoc, pDoc);
// get new rect and parent
CRect rectNew;
rectNew.CopyRect((LPCRECT)lParam);
CWnd* pParentWnd = GetParent();
ASSERT_VALID(pParentWnd);
// convert rectNew relative to pParentWnd
ClientToScreen(&rectNew);
pParentWnd->ScreenToClient(&rectNew);
// adjust the new rectangle for the current control bars
CWnd* pLeftOver = GetDlgItem(AFX_IDW_PANE_FIRST);
ASSERT(pLeftOver != NULL);
CRect rectCur = m_rectPos;
pLeftOver->CalcWindowRect(&rectCur, CWnd::adjustOutside);
rectNew.left += m_rectPos.left - rectCur.left;
rectNew.top += m_rectPos.top - rectCur.top;
rectNew.right -= rectCur.right - m_rectPos.right;
rectNew.bottom -= rectCur.bottom - m_rectPos.bottom;
OnRequestPositionChange(rectNew);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -