/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
// if searching has not been done before this time if (nSlot == SID_BASICIDE_REPEAT_SEARCH && !mpSearchItem)
{
rReq.SetReturnValue(SfxBoolItem(nSlot, false));
nSlot = 0;
}
switch ( nSlot )
{ case SID_SEARCH_OPTIONS: break; case SID_SEARCH_ITEM:
mpSearchItem.reset(pArgs->Get(SID_SEARCH_ITEM).Clone()); break; case FID_SEARCH_ON:
mbJustOpened = true;
GetViewFrame().GetBindings().Invalidate(SID_SEARCH_ITEM); break; case SID_BASICIDE_REPEAT_SEARCH: case FID_SEARCH_NOW:
{ if (!pCurWin->HasActiveEditor()) break;
// If it is a repeat searching if ( nSlot == SID_BASICIDE_REPEAT_SEARCH )
{ if( !mpSearchItem )
mpSearchItem.reset( new SvxSearchItem( SID_SEARCH_ITEM ));
} else
{ // Get SearchItem from request if it is the first searching if ( pArgs )
{
mpSearchItem.reset(pArgs->Get(SID_SEARCH_ITEM).Clone());
}
}
sal_Int32 nFound = 0;
if ( mpSearchItem->GetCommand() == SvxSearchCmd::REPLACE_ALL )
{
sal_uInt16 nActModWindows = 0; for (autoconst& window : aWindowTable)
{
BaseWindow* pWin = window.second; if (pWin->HasActiveEditor())
nActModWindows++;
}
switch ( rReq.GetSlot() )
{ case SID_BASICIDE_HIDECURPAGE:
{
pCurWin->StoreData();
RemoveWindow( pCurWin, false );
} break; case SID_BASICIDE_RENAMECURRENT:
{
pTabBar->StartEditMode( pTabBar->GetCurPageId() );
} break; case SID_UNDO: case SID_REDO: if ( GetUndoManager() && pCurWin->AllowUndo() )
GetViewFrame().ExecuteSlot( rReq ); break; default:
pCurWin->ExecuteCommand( rReq );
}
}
// no matter who's at the top, influence on the shell: void Shell::ExecuteGlobal( SfxRequest& rReq )
{
sal_uInt16 nSlot = rReq.GetSlot(); switch ( nSlot )
{ case SID_NEWDOCDIRECT:
{ // we do not have a new document factory, // so just forward to a fallback method.
SfxGetpApp()->ExecuteSlot(rReq);
} break;
case SID_BASICSTOP:
{ // maybe do not simply stop if on breakpoint! if (ModulWindow* pMCurWin = dynamic_cast<ModulWindow*>(pCurWin.get()))
pMCurWin->BasicStop();
StopBasic();
} break;
case SID_SAVEDOC:
{ if ( pCurWin )
{ // rewrite date into the BASIC
StoreAllWindowData();
case SID_BASICIDE_OBJCAT:
{ // Toggle the visibility of the object catalog bool bVisible = aObjectCatalog->IsVisible();
aObjectCatalog->Show(!bVisible); if (pLayout)
pLayout->ArrangeWindows(); // refresh the button state if (SfxBindings* pBindings = GetBindingsPtr())
pBindings->Invalidate(SID_BASICIDE_OBJCAT);
case SID_BASICIDE_WATCH:
{ // Toggling the watch window can only be done from a ModulWindow if (!dynamic_cast<ModulWindowLayout*>(pLayout.get())) return;
case SID_BASICIDE_STACK:
{ // Toggling the stack window can only be done from a ModulWindow if (!dynamic_cast<ModulWindowLayout*>(pLayout.get())) return;
if (RenameModule(pModWin->GetFrameWeld(), aDocument, aLibName, aOldName, aNewName))
{
bRenameOk = true; // Because we listen for container events for script // modules, rename will delete the 'old' window // pWin has been invalidated, restore now
pWin = FindBasWin( aDocument, aLibName, aNewName, true );
}
} elseif (DialogWindow* pDlgWin = dynamic_cast<DialogWindow*>(pWin.get()))
{
bRenameOk = pDlgWin->RenameDialog( aNewName );
} if ( bRenameOk )
{
MarkDocumentModified( pWin->GetDocument() );
} else
{ // set old name in TabWriter
sal_uInt16 nId = GetWindowId( pWin );
DBG_ASSERT( nId, "No entry in Tabbar!" ); if ( nId )
pTabBar->SetPageText( nId, aOldName );
}
}
// set focus to current window
pWin->GrabFocus();
}
} break; case SID_BASICIDE_STOREMODULESOURCE: case SID_BASICIDE_UPDATEMODULESOURCE:
{
DBG_ASSERT( rReq.GetArgs(), "arguments expected" ); const SfxMacroInfoItem& rInfo = rReq.GetArgs()->Get(SID_BASICIDE_ARG_MACROINFO );
BasicManager* pBasMgr = const_cast<BasicManager*>(rInfo.GetBasicManager());
DBG_ASSERT( pBasMgr, "Store source: No BasMgr?" );
ScriptDocument aDocument( ScriptDocument::getDocumentForBasicManager( pBasMgr ) );
VclPtr<ModulWindow> pWin = FindBasWin( aDocument, rInfo.GetLib(), rInfo.GetModule(), false, true ); if ( pWin )
{ if ( rReq.GetSlot() == SID_BASICIDE_STOREMODULESOURCE )
pWin->StoreData(); else
pWin->UpdateData();
}
} break; case SID_BASICIDE_STOREALLMODULESOURCES: case SID_BASICIDE_UPDATEALLMODULESOURCES:
{ for (autoconst& window : aWindowTable)
{
BaseWindow* pWin = window.second; if (!pWin->IsSuspended() && dynamic_cast<ModulWindow*>(pWin))
{ if ( rReq.GetSlot() == SID_BASICIDE_STOREALLMODULESOURCES )
pWin->StoreData(); else
pWin->UpdateData();
}
}
} break; case SID_BASICIDE_LIBSELECTED: case SID_BASICIDE_LIBREMOVED: case SID_BASICIDE_LIBLOADED:
{
DBG_ASSERT( rReq.GetArgs(), "arguments expected" ); const SfxUnoAnyItem& rShellItem = rReq.GetArgs()->Get( SID_BASICIDE_ARG_DOCUMENT_MODEL );
uno::Reference< frame::XModel > xModel( rShellItem.GetValue(), UNO_QUERY );
ScriptDocument aDocument( xModel.is() ? ScriptDocument( xModel ) : ScriptDocument::getApplicationScriptDocument() ); const SfxStringItem& rLibNameItem = rReq.GetArgs()->Get( SID_BASICIDE_ARG_LIBNAME ); const OUString& aLibName( rLibNameItem.GetValue() );
if ( nSlot == SID_BASICIDE_LIBSELECTED )
{ // load module and dialog library (if not loaded)
aDocument.loadLibraryIfExists( E_SCRIPTS, aLibName );
aDocument.loadLibraryIfExists( E_DIALOGS, aLibName );
// check password, if library is password protected and not verified bool bOK = true;
Reference< script::XLibraryContainer > xModLibContainer( aDocument.getLibraryContainer( E_SCRIPTS ) ); if ( xModLibContainer.is() && xModLibContainer->hasByName( aLibName ) )
{
Reference< script::XLibraryContainerPassword > xPasswd( xModLibContainer, UNO_QUERY ); if ( xPasswd.is() && xPasswd->isLibraryPasswordProtected( aLibName ) && !xPasswd->isLibraryPasswordVerified( aLibName ) )
{
OUString aPassword;
bOK = QueryPassword(rReq.GetFrameWeld(), xModLibContainer, aLibName, aPassword);
}
}
case SID_BASICIDE_COLOR_SCHEME_DLG:
{
ModulWindowLayout* pMyLayout = dynamic_cast<ModulWindowLayout*>(pLayout.get()); if (!pMyLayout) return;
OUString curScheme = pMyLayout->GetActiveColorSchemeId(); auto xDlg = std::make_shared<ColorSchemeDialog>(pCurWin ? pCurWin->GetFrameWeld() : nullptr,
pMyLayout);
weld::DialogController::runAsync(xDlg, [xDlg, pMyLayout, curScheme](sal_Int32 nResult){
OUString sNewScheme(xDlg->GetColorSchemeId()); // If the user canceled the dialog, restores the original color scheme if (nResult != RET_OK)
{ if (curScheme != sNewScheme)
pMyLayout->ApplyColorSchemeToCurrentWindow(curScheme);
}
// If the user selects OK, apply the color scheme to all open ModulWindow if (nResult == RET_OK)
{ // Set the global color scheme in ModulWindowLayout and update definitions in SyntaxColors
pMyLayout->ApplyColorSchemeToCurrentWindow(sNewScheme);
// Update color scheme for all windows for (autoconst& window : GetShell()->GetWindowTable())
{
ModulWindow* pModuleWindow = dynamic_cast<ModulWindow*>(window.second.get()); if (pModuleWindow)
{ // We need to set the current scheme for each window
pModuleWindow->SetEditorColorScheme(sNewScheme);
}
}
// Update registry with the new color scheme ID
std::shared_ptr<comphelper::ConfigurationChanges> batch(comphelper::ConfigurationChanges::create());
officecfg::Office::BasicIDE::EditorSettings::ColorScheme::set(sNewScheme, batch);
batch->commit();
}
});
} break;
case SID_BASICIDE_MANAGE_LANG:
{ auto xRequest = std::make_shared<SfxRequest>(rReq);
rReq.Ignore(); // the 'old' request is not relevant any more auto xDlg = std::make_shared<ManageLanguageDialog>(pCurWin ? pCurWin->GetFrameWeld() : nullptr, m_pCurLocalizationMgr);
weld::DialogController::runAsync(xDlg, [xRequest=std::move(xRequest)](sal_Int32 /*nResult*/){
xRequest->Done();
});
} break;
case SID_ZOOM_IN: case SID_ZOOM_OUT:
{ const sal_uInt16 nOldZoom = GetCurrentZoomSliderValue();
sal_uInt16 nNewZoom; if (nSlot == SID_ZOOM_IN)
nNewZoom = std::min<sal_uInt16>(GetMaxZoom(), basegfx::zoomtools::zoomIn(nOldZoom)); else
nNewZoom = std::max<sal_uInt16>(GetMinZoom(), basegfx::zoomtools::zoomOut(nOldZoom));
SetGlobalEditorZoomLevel(nNewZoom);
lcl_InvalidateZoomSlots(GetBindingsPtr());
} break;
default: if (pLayout)
pLayout->ExecuteGlobal(rReq); if (pCurWin)
pCurWin->ExecuteGlobal(rReq); break;
}
}
void Shell::GetState(SfxItemSet &rSet)
{
SfxWhichIter aIter(rSet); for ( sal_uInt16 nWh = aIter.FirstWhich(); nWh != 0; nWh = aIter.NextWhich() )
{ switch ( nWh )
{ case SID_NEWDOCDIRECT:
{ // we do not have a new document factory, // so just forward to a fallback method.
SfxGetpApp()->GetSlotState(nWh, nullptr, &rSet);
} break; case SID_DOCINFO: case SID_NEWWINDOW: case SID_SAVEASDOC:
{
rSet.DisableItem( nWh );
} break; case SID_SAVEDOC:
{ bool bDisable = false;
if ( bDisable )
rSet.DisableItem( nWh );
} break; case SID_SIGNATURE:
{
SignatureState nState = SignatureState::NOSIGNATURES; if ( pCurWin )
{
DocumentSignature aSignature( pCurWin->GetDocument() );
nState = aSignature.getScriptingSignatureState();
}
rSet.Put( SfxUInt16Item( SID_SIGNATURE, static_cast<sal_uInt16>(nState) ) );
} break; case SID_BASICIDE_MODULEDLG:
{ if ( StarBASIC::IsRunning() )
rSet.DisableItem( nWh );
} break;
case SID_BASICIDE_OBJCAT:
{ if (pLayout)
rSet.Put(SfxBoolItem(nWh, aObjectCatalog->IsVisible())); else
rSet.Put(SfxVisibilityItem(nWh, false));
} break;
case SID_BASICIDE_WATCH:
{ if (pLayout)
{
rSet.Put(SfxBoolItem(nWh, pModulLayout->IsWatchWindowVisible())); // Disable command if the visible window is not a ModulWindow if (!dynamic_cast<ModulWindowLayout*>(pLayout.get()))
rSet.DisableItem(nWh);
} else
rSet.Put(SfxVisibilityItem(nWh, false));
} break;
case SID_BASICIDE_STACK:
{ if (pLayout)
{
rSet.Put(SfxBoolItem(nWh, pModulLayout->IsStackWindowVisible())); // Disable command if the visible window is not a ModulWindow if (!dynamic_cast<ModulWindowLayout*>(pLayout.get()))
rSet.DisableItem(nWh);
} else
rSet.Put(SfxVisibilityItem(nWh, false));
} break;
case SID_BASICIDE_SHOWSBX: case SID_BASICIDE_CREATEMACRO: case SID_BASICIDE_EDITMACRO: case SID_BASICIDE_NAMECHANGEDONTAB:
{
;
} break;
case SID_BASICIDE_ADDWATCH: case SID_BASICIDE_REMOVEWATCH: case SID_BASICLOAD: case SID_BASICSAVEAS: case SID_BASICIDE_MATCHGROUP:
{ if (!dynamic_cast<ModulWindow*>(pCurWin.get()))
rSet.DisableItem( nWh ); elseif ( ( nWh == SID_BASICLOAD ) && ( StarBASIC::IsRunning() || ( pCurWin && pCurWin->IsReadOnly() ) ) )
rSet.DisableItem( nWh );
} break; case SID_BASICRUN: case SID_BASICSTEPINTO: case SID_BASICSTEPOVER: case SID_BASICSTEPOUT: case SID_BASICIDE_TOGGLEBRKPNT: case SID_BASICIDE_MANAGEBRKPNTS:
{ if (ModulWindow* pMCurWin = dynamic_cast<ModulWindow*>(pCurWin.get()))
{ if (StarBASIC::IsRunning() && !pMCurWin->GetBasicStatus().bIsInReschedule)
rSet.DisableItem(nWh);
} else
rSet.DisableItem( nWh );
} break; case SID_BASICCOMPILE:
{ if (StarBASIC::IsRunning() || !dynamic_cast<ModulWindow*>(pCurWin.get()))
rSet.DisableItem( nWh );
} break; case SID_BASICSTOP:
{ // stop is always possible when some Basic is running... if (!StarBASIC::IsRunning())
rSet.DisableItem( nWh );
} break; case SID_CHOOSE_CONTROLS: case SID_DIALOG_TESTMODE: case SID_INSERT_SELECT: case SID_INSERT_PUSHBUTTON: case SID_INSERT_RADIOBUTTON: case SID_INSERT_CHECKBOX: case SID_INSERT_LISTBOX: case SID_INSERT_COMBOBOX: case SID_INSERT_GROUPBOX: case SID_INSERT_EDIT: case SID_INSERT_FIXEDTEXT: case SID_INSERT_IMAGECONTROL: case SID_INSERT_PROGRESSBAR: case SID_INSERT_HSCROLLBAR: case SID_INSERT_VSCROLLBAR: case SID_INSERT_HFIXEDLINE: case SID_INSERT_VFIXEDLINE: case SID_INSERT_DATEFIELD: case SID_INSERT_TIMEFIELD: case SID_INSERT_NUMERICFIELD: case SID_INSERT_CURRENCYFIELD: case SID_INSERT_FORMATTEDFIELD: case SID_INSERT_PATTERNFIELD: case SID_INSERT_FILECONTROL: case SID_INSERT_SPINBUTTON: case SID_INSERT_GRIDCONTROL: case SID_INSERT_HYPERLINKCONTROL: case SID_INSERT_TREECONTROL: case SID_INSERT_FORM_RADIO: case SID_INSERT_FORM_CHECK: case SID_INSERT_FORM_LIST: case SID_INSERT_FORM_COMBO: case SID_INSERT_FORM_VSCROLL: case SID_INSERT_FORM_HSCROLL: case SID_INSERT_FORM_SPIN:
{ if (!dynamic_cast<DialogWindow*>(pCurWin.get()))
rSet.DisableItem( nWh );
} break; case SID_SEARCH_OPTIONS:
{
SearchOptionFlags nOptions = SearchOptionFlags::NONE; if( pCurWin )
nOptions = pCurWin->GetSearchOptions();
rSet.Put( SfxUInt16Item( SID_SEARCH_OPTIONS, static_cast<sal_uInt16>(nOptions) ) );
} break; case SID_BASICIDE_LIBSELECTOR:
{
OUString aName; if ( !m_aCurLibName.isEmpty() )
{
LibraryLocation eLocation = m_aCurDocument.getLibraryLocation( m_aCurLibName );
aName = CreateMgrAndLibStr( m_aCurDocument.getTitle( eLocation ), m_aCurLibName );
}
SfxStringItem aItem( SID_BASICIDE_LIBSELECTOR, aName );
rSet.Put( aItem );
} break; case SID_SEARCH_ITEM:
{ if ( !mpSearchItem )
{
mpSearchItem.reset( new SvxSearchItem( SID_SEARCH_ITEM ));
mpSearchItem->SetSearchString( GetSelectionText( true ));
}
SfxBoolItem aItem(SID_DOC_MODIFIED, bModified);
rSet.Put( aItem );
} break; case SID_BASICIDE_STAT_TITLE:
{ if ( pCurWin )
{
OUString aTitle = pCurWin->CreateQualifiedName(); if (pCurWin->IsReadOnly())
aTitle += " (" + IDEResId(RID_STR_READONLY) + ")";
SfxStringItem aItem( SID_BASICIDE_STAT_TITLE, aTitle );
rSet.Put( aItem );
}
} break; case SID_BASICIDE_CURRENT_ZOOM:
{ // The current zoom value is only visible in a module window
ModulWindow* pModuleWindow = dynamic_cast<ModulWindow*>(pCurWin.get()); if (pModuleWindow)
{
OUString sZoom;
sZoom = OUString::number(m_nCurrentZoomSliderValue) + "%";
SfxStringItem aItem( SID_BASICIDE_CURRENT_ZOOM, sZoom );
rSet.Put( aItem );
}
} break; // are interpreted by the controller: case SID_ATTR_SIZE: case SID_ATTR_INSERT: break; case SID_UNDO: case SID_REDO:
{ if( GetUndoManager() ) // recursive GetState else
GetViewFrame().GetSlotState( nWh, nullptr, &rSet );
} break; case SID_BASICIDE_CURRENT_LANG:
{ if( (pCurWin && pCurWin->IsReadOnly()) || GetCurLibName().isEmpty() )
rSet.DisableItem( nWh ); else
{
OUString aItemStr;
std::shared_ptr<LocalizationMgr> pCurMgr(GetCurLocalizationMgr()); if ( pCurMgr->isLibraryLocalized() )
{
Sequence< lang::Locale > aLocaleSeq = pCurMgr->getStringResourceManager()->getLocales();
sal_Int32 i, nCount = aLocaleSeq.getLength();
// Force different results for any combination of locales and default locale
OUString aLangStr; for ( i = 0; i <= nCount; ++i )
{
lang::Locale aLocale; if( i < nCount )
aLocale = aLocaleSeq[i]; else
aLocale = pCurMgr->getStringResourceManager()->getDefaultLocale();
case SID_BASICIDE_MANAGE_LANG:
{ if( (pCurWin && pCurWin->IsReadOnly()) || GetCurLibName().isEmpty() )
rSet.DisableItem( nWh );
} break; case SID_TOGGLE_COMMENT:
{ // Only available in a ModulWindow if the document can be edited if (pCurWin && (!dynamic_cast<ModulWindow*>(pCurWin.get()) || pCurWin->IsReadOnly()))
rSet.DisableItem(nWh);
} break; case SID_GOTOLINE:
{ // if this is not a module window hide the // setting, doesn't make sense for example if the // dialog editor is open if (pCurWin && !dynamic_cast<ModulWindow*>(pCurWin.get()))
{
rSet.DisableItem( nWh );
rSet.Put(SfxVisibilityItem(nWh, false));
} break;
} case SID_BASICIDE_HIDECURPAGE:
{ if (pTabBar->GetPageCount() == 0)
rSet.DisableItem(nWh);
} break; case SID_BASICIDE_DELETECURRENT: case SID_BASICIDE_RENAMECURRENT:
{ if (pTabBar->GetPageCount() == 0 || StarBASIC::IsRunning())
rSet.DisableItem(nWh); elseif (m_aCurDocument.isInVBAMode())
{ // disable to delete or rename object modules in IDE
BasicManager* pBasMgr = m_aCurDocument.getBasicManager();
StarBASIC* pBasic = pBasMgr ? pBasMgr->GetLib(m_aCurLibName) : nullptr; if (pBasic && dynamic_cast<ModulWindow*>(pCurWin.get()))
{
SbModule* pActiveModule = pBasic->FindModule( pCurWin->GetName() ); if ( pActiveModule && ( pActiveModule->GetModuleType() == script::ModuleType::DOCUMENT ) )
rSet.DisableItem(nWh);
}
}
}
[[fallthrough]];
case SID_ZOOM_IN: case SID_ZOOM_OUT:
{ const sal_uInt16 nCurrentZoom = GetCurrentZoomSliderValue(); if ((nWh == SID_ZOOM_IN && nCurrentZoom >= GetMaxZoom()) ||
(nWh == SID_ZOOM_OUT && nCurrentZoom <= GetMinZoom()))
rSet.DisableItem(nWh);
} break;
case SID_BASICIDE_COLOR_SCHEME_DLG:
{ if (!dynamic_cast<ModulWindowLayout*>(pLayout.get()))
rSet.DisableItem(nWh);
} break;
case SID_ATTR_ZOOMSLIDER:
{ // The zoom slider is only visible in a module window
ModulWindow* pModuleWindow = dynamic_cast<ModulWindow*>(pCurWin.get()); if (pModuleWindow)
{
SvxZoomSliderItem aZoomSliderItem(GetCurrentZoomSliderValue(), GetMinZoom(), GetMaxZoom());
aZoomSliderItem.AddSnappingPoint(100);
rSet.Put( aZoomSliderItem );
}
} break;
default: if (pLayout)
pLayout->GetState(rSet, nWh);
}
} if ( pCurWin )
pCurWin->GetState( rSet );
}
if (nFeature & SfxShellFeature::BasicShowBrowser)
{ // fade out (in) property browser in module (dialog) windows if (dynamic_cast<DialogWindow*>(pCurWin.get()) && !pCurWin->IsReadOnly())
bResult = true;
}
DBG_ASSERT( pActiveModule, "No active module in ErrorHdl!?" ); if ( pActiveModule )
{
VclPtr<ModulWindow> pWin;
SbxObject* pParent = pActiveModule->GetParent(); if (StarBASIC* pLib = dynamic_cast<StarBASIC*>(pParent))
{ if (BasicManager* pBasMgr = FindBasicManager(pLib))
{
ScriptDocument aDocument( ScriptDocument::getDocumentForBasicManager( pBasMgr ) ); const OUString& aLibName = pLib->GetName();
pWin = FindBasWin( aDocument, aLibName, pActiveModule->GetName(), true );
DBG_ASSERT( pWin, "Error/Step-Hdl: Window was not created/found!" );
SetCurLib( aDocument, aLibName );
SetCurWindow( pWin, true );
}
} else
SAL_WARN( "basctl.basicide", "No BASIC!"); if (BasicManager* pBasicMgr = FindBasicManager(pBasic))
StartListening(*pBasicMgr, DuplicateHandling::Prevent /* log on only once */); return pWin;
} return nullptr;
}
void Shell::AdjustPosSizePixel( const Point &rPos, const Size &rSize )
{ // not if iconified because the whole text would be displaced then at restore if ( GetViewFrame().GetWindow().GetOutputSizePixel().Height() == 0 ) return;
// The size to be applied depends on whether it is a DialogWindow or a ModulWindow if (pLayout)
{ if (dynamic_cast<DialogWindow*>(pCurWin.get()))
{
pCurWin->ShowShellScrollBars();
pLayout->SetPosSizePixel(rPos, aSz);
} else
{
pCurWin->ShowShellScrollBars(false);
pLayout->SetPosSizePixel(rPos, aOutSz);
}
}
}
if ( bMDI )
{ if (DialogWindow* pDCurWin = dynamic_cast<DialogWindow*>(pCurWin.get()))
pDCurWin->UpdateBrowser();
}
}
void Shell::Deactivate( bool bMDI )
{ // bMDI == true means that another MDI has been activated; in case of a // deactivate due to a MessageBox bMDI is false if ( bMDI )
{ if (DialogWindow* pXDlgWin = dynamic_cast<DialogWindow*>(pCurWin.get()))
{
pXDlgWin->DisableBrowser(); if( pXDlgWin->IsModified() )
MarkDocumentModified( pXDlgWin->GetDocument() );
}
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.