//************************************************************************************* void CBCGPFullScreenImpl::ShowFullScreen(CFrameWnd* pFrame) { ASSERT (m_uiFullScreenID != -1); if (m_uiFullScreenID == -1) { return; } m_bMenuBarWasVisible = FALSE; BOOL bSplitter = FALSE; CBCGPMDIFrameWnd* pbcgMDIFrame = DYNAMIC_DOWNCAST (CBCGPMDIFrameWnd, pFrame); if (pbcgMDIFrame != NULL) { if (pbcgMDIFrame->IsPrintPreview()) { return; } CBCGPMDIChildWnd* pChildWnd = DYNAMIC_DOWNCAST (CBCGPMDIChildWnd, pbcgMDIFrame->MDIGetActive ()); if (pChildWnd != NULL) { CWnd* pViewWnd = pChildWnd->GetActiveView (); if (pViewWnd == NULL && !pChildWnd->IsTabbedControlBar ()) { return; } bSplitter = ContainsSplitter (pChildWnd); } } else { CBCGPFrameWnd* pbcgFrame = DYNAMIC_DOWNCAST (CBCGPFrameWnd, pFrame); if (pbcgFrame == NULL) { return; } if (pbcgFrame->IsPrintPreview()) { return; } bSplitter = ContainsSplitter (pbcgFrame); } CRect rectFrame, rectView, rectChild, rcScreen; pFrame->GetWindowRect (&rectFrame); m_rectFramePrev = rectFrame; MONITORINFO mi; mi.cbSize = sizeof (MONITORINFO); if (GetMonitorInfo (MonitorFromRect (rectFrame, MONITOR_DEFAULTTONEAREST), &mi)) { rcScreen = mi.rcMonitor; } else { ::SystemParametersInfo (SPI_GETWORKAREA, 0, &rcScreen, 0); } m_strRegSection = g_pWorkspace->GetRegistryBase (); if (pbcgMDIFrame != NULL) { g_pWorkspace->SaveState(pbcgMDIFrame, m_strRegSection); if (m_bUseFullScreenRegPath) { g_pWorkspace->CleanState (_T("FullScreeenState")); } } else { CBCGPFrameWnd* pbcgFrame = DYNAMIC_DOWNCAST (CBCGPFrameWnd, pFrame); if (pbcgFrame != NULL) { g_pWorkspace->SaveState (pbcgFrame, m_strRegSection); if (m_bUseFullScreenRegPath) { g_pWorkspace->CleanState (_T("FullScreeenState")); } } else { return; } } CBCGPMenuBar* pMenuBar = NULL; if (pbcgMDIFrame != NULL) { pMenuBar = DYNAMIC_DOWNCAST (CBCGPMenuBar, pbcgMDIFrame->GetMenuBar ()); } else { CBCGPFrameWnd* pbcgFrame = DYNAMIC_DOWNCAST (CBCGPFrameWnd, pFrame); if (pbcgFrame != NULL) { pMenuBar = DYNAMIC_DOWNCAST (CBCGPMenuBar, pbcgFrame->GetMenuBar ()); } } CSize sizeMenu = CSize (0,0); if (pMenuBar != NULL) { m_bMenuBarWasVisible = pMenuBar->IsWindowVisible(); if (m_bMenuBarWasVisible) { sizeMenu = pMenuBar->CalcFixedLayout (FALSE, TRUE); } } BOOL bNormalizeFrame = FALSE; BOOL bAdjustBasicMode = FALSE; #ifndef BCGP_EXCLUDE_RIBBON if (m_pImpl != NULL && m_pImpl->m_pRibbonBar->GetSafeHwnd () != NULL && m_pImpl->m_pRibbonBar->IsWindowVisible () && globalData.DwmIsCompositionEnabled () && pFrame->IsZoomed()) { bNormalizeFrame = TRUE; } if (m_pImpl != NULL && m_pImpl->m_pRibbonBar->GetSafeHwnd () != NULL && m_pImpl->m_pRibbonBar->IsWindowVisible () && !globalData.DwmIsCompositionEnabled () && !pFrame->IsZoomed()) { bAdjustBasicMode = TRUE; } #endif pFrame->SetRedraw (FALSE); UnDockAndHideControlBars (pFrame); CBCGPMDIChildWnd* pChildWnd = NULL; if (pbcgMDIFrame != NULL) { pChildWnd = DYNAMIC_DOWNCAST (CBCGPMDIChildWnd, pbcgMDIFrame->MDIGetActive ()); } if (pbcgMDIFrame != NULL && pChildWnd != NULL) { CWnd* pViewWnd = NULL; if (pChildWnd->IsTabbedControlBar ()) { pViewWnd = pChildWnd->GetTabbedControlBar (); } else { pViewWnd = pChildWnd->GetActiveView (); } if (pViewWnd == NULL) { return; } pChildWnd->GetWindowRect (&rectView); pViewWnd->GetWindowRect (&rectChild); if (bSplitter) { pChildWnd->GetClientRect (&rectView); pChildWnd->ClientToScreen (&rectView); } CRect rectClient; pbcgMDIFrame->GetClientRect (&rectClient); pbcgMDIFrame->ClientToScreen (&rectClient); rectFrame.InflateRect ( (rectClient.left - rcScreen.left), (rectClient.top - rcScreen.top) , (rcScreen.right - rectClient.right), rcScreen.bottom - rectClient.bottom); } else // Maybe SDI { CBCGPFrameWnd* pbcgFrame = DYNAMIC_DOWNCAST (CBCGPFrameWnd, pFrame); if (pbcgFrame != NULL) { CWnd* pViewWnd = pFrame->GetActiveView (); if (pViewWnd == NULL) { CRect rectFrmClient; pbcgFrame->GetClientRect (&rectFrmClient); pbcgFrame->ClientToScreen (&rectFrmClient); rectFrame.InflateRect ( rectFrmClient.left - rcScreen.left, rectFrmClient.top - rcScreen.top, rcScreen.right - rectFrmClient.right, rcScreen.bottom - rectFrmClient.bottom); } else { int nMargin = bAdjustBasicMode ? GetSystemMetrics (SM_CYSIZEFRAME) : 0; pViewWnd->GetWindowRect (&rectView); pbcgFrame->GetWindowRect (&rectFrame); rectFrame.InflateRect ( rectView.left - rcScreen.left, rectView.top - rcScreen.top, rcScreen.right - rectView.right, rcScreen.bottom - rectView.bottom + nMargin); } } } if (pbcgMDIFrame != NULL && pChildWnd == NULL) { CRect rectFrmClient; pbcgMDIFrame->GetClientRect (&rectFrmClient); pbcgMDIFrame->ClientToScreen (&rectFrmClient); rectFrame.InflateRect ( rectFrmClient.left - rcScreen.left, rectFrmClient.top - rcScreen.top, rcScreen.right - rectFrmClient.right, rcScreen.bottom - rectFrmClient.bottom); } if (m_bAutoHideTaskbar) { AdjustFrameToAutoHideTaskbar (rectFrame); } // Remember this for OnGetMinMaxInfo() m_rectFullScreenWindow = rectFrame; m_pwndFullScreenBar = new CBCGFullScreenToolbar; if (!m_pwndFullScreenBar->Create (pFrame)) { TRACE0("Failed to create toolbar\n"); return; // fail to create } CString strCaption; CString strLabel; { CBCGPLocalResource locaRes; strLabel.LoadString (IDS_BCGBARRES_FULLSCREEN_CLOSE); strCaption.LoadString (IDS_BCGBARRES_FULLSCREEN); } CBCGPToolbarButton button (m_uiFullScreenID, -1, strLabel, FALSE, TRUE); m_pwndFullScreenBar->InsertButton (button); m_pwndFullScreenBar->EnableDocking (0); m_pwndFullScreenBar->SetWindowPos (0, 100, 100, 100, 100, SWP_NOZORDER | SWP_NOACTIVATE | SWP_SHOWWINDOW); m_pwndFullScreenBar->SetWindowText (strCaption); m_pwndFullScreenBar->FloatControlBar (CRect(rcScreen.left + 100, rcScreen.top + 100, 200, 200)); m_bFullScreen = TRUE; if (bNormalizeFrame) { pFrame->ShowWindow(SW_NORMAL); } pFrame->SetWindowPos (NULL, rectFrame.left, rectFrame.top, rectFrame.Width (), rectFrame.Height (), SWP_NOZORDER); if (m_bShowMenu) { if (pbcgMDIFrame != NULL) { const CBCGPMenuBar* pMenuBar = pbcgMDIFrame->GetMenuBar (); if (pMenuBar != NULL) { if (m_bTabsArea) { if (pMenuBar->CanFloat ()) { pbcgMDIFrame->DockControlBar ((CBCGPBaseControlBar*)pMenuBar); } pbcgMDIFrame->ShowControlBar ((CBCGPBaseControlBar*)pMenuBar, TRUE,FALSE, FALSE); } else { if (pMenuBar->CanFloat ()) { pbcgMDIFrame->DockControlBar ((CBCGPBaseControlBar*)pMenuBar); ((CBCGPBaseControlBar*)pMenuBar)->FloatControlBar (CRect(300, 200, 500, 500)); } pbcgMDIFrame->ShowControlBar ((CBCGPBaseControlBar*)pMenuBar, TRUE,FALSE, FALSE); } } } else { CBCGPFrameWnd* pbcgFrame = DYNAMIC_DOWNCAST (CBCGPFrameWnd, pFrame); if (pbcgFrame != NULL) { const CBCGPMenuBar* pMenuBar = pbcgFrame->GetMenuBar (); if (pMenuBar != NULL) { if (pMenuBar->CanFloat ()) { pbcgFrame->DockControlBar ((CBCGPBaseControlBar*)pMenuBar); } pbcgFrame->ShowControlBar ((CBCGPBaseControlBar*)pMenuBar, TRUE,FALSE, FALSE); } } } } pFrame->SetRedraw (TRUE); pFrame->RedrawWindow (NULL, NULL, RDW_INVALIDATE | RDW_UPDATENOW | RDW_ERASE | RDW_ALLCHILDREN); if (pbcgMDIFrame != NULL && pbcgMDIFrame->IsMDITabbedGroup ()) { pbcgMDIFrame->AdjustClientArea (); } }
//************************************************************************************* void CBCGPFullScreenImpl::RestoreState(CFrameWnd* pFrame) { ASSERT (m_uiFullScreenID != -1); if (m_uiFullScreenID == -1) { return; } // Destroy the toolbar CWnd* pWnd = m_pwndFullScreenBar->GetParentMiniFrame (); if (pWnd == NULL) pWnd = m_pwndFullScreenBar; VERIFY (pWnd->DestroyWindow()); delete m_pwndFullScreenBar; m_pwndFullScreenBar = NULL; m_bFullScreen = FALSE; CBCGPMDIFrameWnd* pbcgMDIFrame = DYNAMIC_DOWNCAST (CBCGPMDIFrameWnd, pFrame); //Restore window pos pFrame->SetWindowPos (NULL, m_rectFramePrev.left, m_rectFramePrev.top, m_rectFramePrev.Width (), m_rectFramePrev.Height (), SWP_NOZORDER); //restore layout pFrame->SetRedraw (FALSE); g_pWorkspace->m_bLoadUserToolbars = FALSE; if (pbcgMDIFrame != NULL) { g_pWorkspace->LoadState (pbcgMDIFrame, m_strRegSection); } else { CBCGPFrameWnd* pbcgFrame = DYNAMIC_DOWNCAST (CBCGPFrameWnd, pFrame); if (pbcgFrame != NULL) { g_pWorkspace->LoadState (pbcgFrame, m_strRegSection); } } pFrame->SetRedraw (TRUE); pFrame->RedrawWindow (NULL, NULL, RDW_INVALIDATE | RDW_UPDATENOW | RDW_ERASE | RDW_ALLCHILDREN); if (!m_bShowMenu && m_bMenuBarWasVisible) { if (pbcgMDIFrame != NULL) { const CBCGPMenuBar* pMenuBar = pbcgMDIFrame->GetMenuBar (); if (pMenuBar != NULL) { pbcgMDIFrame->ShowControlBar ((CBCGPBaseControlBar*)pMenuBar, TRUE,FALSE, FALSE); if (pMenuBar->IsFloating ()) { pbcgMDIFrame->SetFocus (); } } } else { CBCGPFrameWnd* pbcgFrame = DYNAMIC_DOWNCAST (CBCGPFrameWnd, pFrame); if (pbcgFrame != NULL) { const CBCGPMenuBar* pMenuBar = pbcgFrame->GetMenuBar (); if (pMenuBar != NULL) { pbcgFrame->ShowControlBar ((CBCGPBaseControlBar*)pMenuBar, TRUE,FALSE, FALSE); if (pMenuBar->IsFloating ()) { pbcgFrame->SetFocus (); } } } } } if (m_pImpl != NULL) { CBCGPMenuBar* pMenuBar = m_pImpl->GetMenuBar(); if (pMenuBar != NULL && pMenuBar->IsPopupMode()) { pMenuBar->ShowControlBar (FALSE, FALSE, FALSE); } } if (pbcgMDIFrame != NULL && pbcgMDIFrame->IsMDITabbedGroup ()) { pbcgMDIFrame->AdjustClientArea (); } BOOL bDontCallChangeVM = FALSE; #ifndef BCGP_EXCLUDE_RIBBON if (m_pImpl != NULL && m_pImpl->m_pRibbonBar->GetSafeHwnd () != NULL) { if (m_pImpl->m_pRibbonBar->IsWindowVisible () && m_pImpl->m_pRibbonBar->IsReplaceFrameCaption ()) { m_pImpl->OnChangeVisualManager (); m_pImpl->m_pRibbonBar->DWMCompositionChanged (); bDontCallChangeVM = TRUE; } if (!m_pImpl->m_pRibbonBar->IsWindowVisible () && pFrame->IsZoomed()) { pFrame->SetWindowPos(NULL, -1, -1, -1, -1, SWP_FRAMECHANGED | SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER); } } #endif if (m_pImpl != NULL && !bDontCallChangeVM) { m_pImpl->OnChangeVisualManager (); } }