forked from amazingfate/loongoffice
from SfxItemPtrMap. Change-Id: Id7e9667f9b918afaf92d9e71bf0e2c2e9c296474 Reviewed-on: https://gerrit.libreoffice.org/11696 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
745 lines
21 KiB
C++
745 lines
21 KiB
C++
/* -*- 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 .
|
|
*/
|
|
|
|
#include <com/sun/star/embed/VerbDescriptor.hpp>
|
|
#include <com/sun/star/embed/VerbAttributes.hpp>
|
|
#include <basic/sbstar.hxx>
|
|
#include <officecfg/Office/Common.hxx>
|
|
#include <rtl/ustring.hxx>
|
|
#include <sal/log.hxx>
|
|
#include <svl/itempool.hxx>
|
|
#include <svl/undo.hxx>
|
|
#include "itemdel.hxx"
|
|
#include <svtools/asynclink.hxx>
|
|
#include <basic/sbx.hxx>
|
|
|
|
#include <sfx2/app.hxx>
|
|
#include <sfx2/shell.hxx>
|
|
#include <sfx2/bindings.hxx>
|
|
#include <sfx2/dispatch.hxx>
|
|
#include <sfx2/viewfrm.hxx>
|
|
#include <sfx2/objface.hxx>
|
|
#include <sfx2/objsh.hxx>
|
|
#include <sfx2/viewsh.hxx>
|
|
#include "sfxtypes.hxx"
|
|
#include <sfx2/request.hxx>
|
|
#include <sfx2/mnumgr.hxx>
|
|
#include "statcach.hxx"
|
|
#include <sfx2/msgpool.hxx>
|
|
#include <sidebar/ContextChangeBroadcaster.hxx>
|
|
|
|
#include <boost/ptr_container/ptr_map.hpp>
|
|
#include <boost/ptr_container/ptr_vector.hpp>
|
|
|
|
// Maps the Which() field to a pointer to a SfxPoolItem
|
|
typedef boost::ptr_map<sal_uInt16, SfxPoolItem> SfxItemPtrMap;
|
|
|
|
TYPEINIT0(SfxShell);
|
|
|
|
typedef boost::ptr_vector<SfxSlot> SfxVerbSlotArr_Impl;
|
|
|
|
using namespace com::sun::star;
|
|
|
|
struct SfxShell_Impl: public SfxBroadcaster
|
|
{
|
|
OUString aObjectName; // Name of Sbx-Objects
|
|
SfxItemPtrMap aItems; // Data exchange on Item level
|
|
SfxViewShell* pViewSh; // SfxViewShell if Shell is
|
|
// ViewFrame/ViewShell/SubShell list
|
|
SfxViewFrame* pFrame; // Frame, if <UI-active>
|
|
SfxRepeatTarget* pRepeatTarget; // SbxObjectRef xParent;
|
|
bool bActive;
|
|
sal_uIntPtr nDisableFlags;
|
|
sal_uIntPtr nHelpId;
|
|
svtools::AsynchronLink* pExecuter;
|
|
svtools::AsynchronLink* pUpdater;
|
|
SfxVerbSlotArr_Impl aSlotArr;
|
|
|
|
com::sun::star::uno::Sequence < com::sun::star::embed::VerbDescriptor > aVerbList;
|
|
::sfx2::sidebar::ContextChangeBroadcaster maContextChangeBroadcaster;
|
|
|
|
SfxShell_Impl()
|
|
: pViewSh(0)
|
|
, pFrame(0)
|
|
, pRepeatTarget(0)
|
|
, bActive(false)
|
|
, nDisableFlags(0)
|
|
, nHelpId(0)
|
|
, pExecuter(0)
|
|
, pUpdater(0)
|
|
{
|
|
}
|
|
|
|
virtual ~SfxShell_Impl() { delete pExecuter; delete pUpdater;}
|
|
};
|
|
|
|
|
|
void SfxShell::EmptyExecStub(SfxShell *, SfxRequest &)
|
|
{
|
|
}
|
|
|
|
void SfxShell::EmptyStateStub(SfxShell *, SfxItemSet &)
|
|
{
|
|
}
|
|
|
|
SfxShell::SfxShell()
|
|
: pImp(0),
|
|
pPool(0),
|
|
pUndoMgr(0)
|
|
{
|
|
pImp = new SfxShell_Impl;
|
|
}
|
|
|
|
SfxShell::SfxShell( SfxViewShell *pViewSh )
|
|
: pImp(0),
|
|
pPool(0),
|
|
pUndoMgr(0)
|
|
{
|
|
pImp = new SfxShell_Impl;
|
|
pImp->pViewSh = pViewSh;
|
|
}
|
|
|
|
SfxShell::~SfxShell()
|
|
{
|
|
|
|
|
|
delete pImp;
|
|
}
|
|
|
|
void SfxShell::SetName( const OUString &rName )
|
|
{
|
|
pImp->aObjectName = rName;
|
|
}
|
|
|
|
const OUString& SfxShell::GetName() const
|
|
{
|
|
return pImp->aObjectName;
|
|
}
|
|
|
|
SfxDispatcher* SfxShell::GetDispatcher() const
|
|
{
|
|
return pImp->pFrame ? pImp->pFrame->GetDispatcher() : 0;
|
|
}
|
|
|
|
SfxViewShell* SfxShell::GetViewShell() const
|
|
{
|
|
return pImp->pViewSh;
|
|
}
|
|
|
|
SfxViewFrame* SfxShell::GetFrame() const
|
|
{
|
|
if ( pImp->pFrame )
|
|
return pImp->pFrame;
|
|
if ( pImp->pViewSh )
|
|
return pImp->pViewSh->GetViewFrame();
|
|
return 0;
|
|
}
|
|
|
|
const SfxPoolItem* SfxShell::GetItem
|
|
(
|
|
sal_uInt16 nSlotId // Slot-Id of the querying <SfxPoolItem>s
|
|
) const
|
|
{
|
|
SfxItemPtrMap::const_iterator it = pImp->aItems.find( nSlotId );
|
|
if( it != pImp->aItems.end() )
|
|
return it->second;
|
|
return 0;
|
|
}
|
|
|
|
void SfxShell::PutItem
|
|
(
|
|
const SfxPoolItem& rItem /* Instance, of which a copy is created,
|
|
which is stored in the SfxShell in a list. */
|
|
)
|
|
{
|
|
DBG_ASSERT( !rItem.ISA(SfxSetItem), "SetItems aren't allowed here" );
|
|
DBG_ASSERT( SfxItemPool::IsSlot( rItem.Which() ),
|
|
"items with Which-Ids aren't allowed here" );
|
|
|
|
// MSC made a mess here of WNT/W95, beware of changes
|
|
SfxPoolItem *pItem = rItem.Clone();
|
|
SfxPoolItemHint aItemHint( pItem );
|
|
sal_uInt16 nWhich = rItem.Which();
|
|
|
|
SfxItemPtrMap::iterator it = pImp->aItems.find( nWhich );
|
|
if( it != pImp->aItems.end() )
|
|
{
|
|
// Replace Item
|
|
pImp->aItems.erase( it );
|
|
pImp->aItems.insert( nWhich, pItem );
|
|
|
|
// if active, notify Bindings
|
|
SfxDispatcher *pDispat = GetDispatcher();
|
|
if ( pDispat )
|
|
{
|
|
SfxBindings* pBindings = pDispat->GetBindings();
|
|
pBindings->Broadcast( aItemHint );
|
|
sal_uInt16 nSlotId = nWhich; //pItem->GetSlotId();
|
|
SfxStateCache* pCache = pBindings->GetStateCache( nSlotId );
|
|
if ( pCache )
|
|
{
|
|
pCache->SetState( SfxItemState::DEFAULT, pItem->Clone(), true );
|
|
pCache->SetCachedState( true );
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
Broadcast( aItemHint );
|
|
pImp->aItems.insert( nWhich, pItem );
|
|
}
|
|
}
|
|
|
|
SfxInterface* SfxShell::GetInterface() const
|
|
{
|
|
return GetStaticInterface();
|
|
}
|
|
|
|
::svl::IUndoManager* SfxShell::GetUndoManager()
|
|
{
|
|
return pUndoMgr;
|
|
}
|
|
|
|
void SfxShell::SetUndoManager( ::svl::IUndoManager *pNewUndoMgr )
|
|
{
|
|
OSL_ENSURE( ( pUndoMgr == NULL ) || ( pNewUndoMgr == NULL ) || ( pUndoMgr == pNewUndoMgr ),
|
|
"SfxShell::SetUndoManager: exchanging one non-NULL manager with another non-NULL manager? Suspicious!" );
|
|
// there's at least one client of our UndoManager - the DocumentUndoManager at the SfxBaseModel - which
|
|
// caches the UndoManager, and registers itself as listener. If exchanging non-NULL UndoManagers is really
|
|
// a supported scenario (/me thinks it is not), then we would need to notify all such clients instances.
|
|
|
|
pUndoMgr = pNewUndoMgr;
|
|
if ( pUndoMgr )
|
|
pUndoMgr->SetMaxUndoActionCount(
|
|
officecfg::Office::Common::Undo::Steps::get());
|
|
}
|
|
|
|
SfxRepeatTarget* SfxShell::GetRepeatTarget() const
|
|
{
|
|
return pImp->pRepeatTarget;
|
|
}
|
|
|
|
void SfxShell::SetRepeatTarget( SfxRepeatTarget *pTarget )
|
|
{
|
|
pImp->pRepeatTarget = pTarget;
|
|
}
|
|
|
|
void SfxShell::Invalidate
|
|
(
|
|
sal_uInt16 nId /* Invalidated Slot-Id or Which-Id.
|
|
If these are 0 (default), then all
|
|
by this Shell currently handled Slot-Ids are
|
|
invalidated. */
|
|
)
|
|
{
|
|
if ( !GetViewShell() )
|
|
{
|
|
OSL_FAIL( "wrong Invalidate method called!" );
|
|
return;
|
|
}
|
|
|
|
Invalidate_Impl( GetViewShell()->GetViewFrame()->GetBindings(), nId );
|
|
}
|
|
|
|
void SfxShell::Invalidate_Impl( SfxBindings& rBindings, sal_uInt16 nId )
|
|
{
|
|
if ( nId == 0 )
|
|
{
|
|
rBindings.InvalidateShell( *this, false );
|
|
}
|
|
else
|
|
{
|
|
const SfxInterface *pIF = GetInterface();
|
|
do
|
|
{
|
|
const SfxSlot *pSlot = pIF->GetSlot(nId);
|
|
if ( pSlot )
|
|
{
|
|
// At Enum-Slots invalidate the Master-Slot
|
|
if ( SFX_KIND_ENUM == pSlot->GetKind() )
|
|
pSlot = pSlot->GetLinkedSlot();
|
|
|
|
// Invalidate the Slot itself and possible also all Slave-Slots
|
|
rBindings.Invalidate( pSlot->GetSlotId() );
|
|
for ( const SfxSlot *pSlave = pSlot->GetLinkedSlot();
|
|
pSlave && pIF->ContainsSlot_Impl( pSlave ) &&
|
|
pSlave->GetLinkedSlot() == pSlot;
|
|
++pSlave )
|
|
rBindings.Invalidate( pSlave->GetSlotId() );
|
|
|
|
return;
|
|
}
|
|
|
|
pIF = pIF->GetGenoType();
|
|
}
|
|
|
|
while ( pIF );
|
|
|
|
DBG_WARNING( "W3: invalidating slot-id unknown in shell" );
|
|
}
|
|
}
|
|
|
|
void SfxShell::DoActivate_Impl( SfxViewFrame *pFrame, bool bMDI )
|
|
{
|
|
#ifdef DBG_UTIL
|
|
const SfxInterface *p_IF = GetInterface();
|
|
if ( !p_IF )
|
|
return;
|
|
#endif
|
|
SAL_INFO(
|
|
"sfx.control",
|
|
"SfxShell::DoActivate() " << this << " " << GetInterface()->GetName()
|
|
<< " bMDI " << (bMDI ? "MDI" : ""));
|
|
|
|
if ( bMDI )
|
|
{
|
|
// Remember Frame, in which it was activated
|
|
pImp->pFrame = pFrame;
|
|
pImp->bActive = true;
|
|
}
|
|
|
|
// Notify Subclass
|
|
Activate(bMDI);
|
|
}
|
|
|
|
void SfxShell::DoDeactivate_Impl( SfxViewFrame *pFrame, bool bMDI )
|
|
{
|
|
#ifdef DBG_UTIL
|
|
const SfxInterface *p_IF = GetInterface();
|
|
if ( !p_IF )
|
|
return;
|
|
#endif
|
|
SAL_INFO(
|
|
"sfx.control",
|
|
"SfxShell::DoDeactivate()" << this << " " << GetInterface()->GetName()
|
|
<< " bMDI " << (bMDI ? "MDI" : ""));
|
|
|
|
// Only when it comes from a Frame
|
|
// (not when for instance by poping BASIC-IDE from AppDisp)
|
|
if ( bMDI && pImp->pFrame == pFrame )
|
|
{
|
|
// deliver
|
|
pImp->pFrame = 0;
|
|
pImp->bActive = false;
|
|
}
|
|
|
|
// Notify Subclass
|
|
Deactivate(bMDI);
|
|
}
|
|
|
|
bool SfxShell::IsActive() const
|
|
{
|
|
return pImp->bActive;
|
|
}
|
|
|
|
void SfxShell::Activate
|
|
(
|
|
bool /*bMDI*/ /* TRUE
|
|
the <SfxDispatcher>, on which the SfxShell is
|
|
located, is activated or the SfxShell instance
|
|
was pushed on an active SfxDispatcher.
|
|
(compare with SystemWindow::IsMDIActivate())
|
|
|
|
FALSE
|
|
the <SfxViewFrame>, on which SfxDispatcher
|
|
the SfxShell instance is located, was
|
|
activated. (for example by a closing dialoge) */
|
|
)
|
|
{
|
|
BroadcastContextForActivation(true);
|
|
}
|
|
|
|
void SfxShell::Deactivate
|
|
(
|
|
bool /*bMDI*/ /* TRUE
|
|
the <SfxDispatcher>, on which the SfxShell is
|
|
located, is inactivated or the SfxShell instance
|
|
was popped on an active SfxDispatcher.
|
|
(compare with SystemWindow::IsMDIActivate())
|
|
|
|
FALSE
|
|
the <SfxViewFrame>, on which SfxDispatcher
|
|
the SfxShell instance is located, was
|
|
deactivated. (for example by a dialoge) */
|
|
)
|
|
{
|
|
BroadcastContextForActivation(false);
|
|
}
|
|
|
|
void SfxShell::ParentActivate
|
|
(
|
|
)
|
|
{
|
|
}
|
|
|
|
void SfxShell::ParentDeactivate
|
|
(
|
|
)
|
|
{
|
|
}
|
|
|
|
ResMgr* SfxShell::GetResMgr() const
|
|
{
|
|
return GetInterface()->GetResMgr();
|
|
}
|
|
|
|
bool SfxShell::CanExecuteSlot_Impl( const SfxSlot &rSlot )
|
|
{
|
|
// Get Slot status
|
|
SfxItemPool &rPool = GetPool();
|
|
const sal_uInt16 nId = rSlot.GetWhich( rPool );
|
|
SfxItemSet aSet(rPool, nId, nId);
|
|
SfxStateFunc pFunc = rSlot.GetStateFnc();
|
|
CallState( pFunc, aSet );
|
|
return aSet.GetItemState(nId) != SfxItemState::DISABLED;
|
|
}
|
|
|
|
long ShellCall_Impl( void* pObj, void* pArg )
|
|
{
|
|
((SfxShell* )pObj)->ExecuteSlot( *(SfxRequest*)pArg, (SfxInterface*)0L );
|
|
return 0;
|
|
}
|
|
|
|
const SfxPoolItem* SfxShell::ExecuteSlot( SfxRequest& rReq, bool bAsync )
|
|
{
|
|
if( !bAsync )
|
|
return ExecuteSlot( rReq, (SfxInterface*)0L );
|
|
else
|
|
{
|
|
if( !pImp->pExecuter )
|
|
pImp->pExecuter = new svtools::AsynchronLink(
|
|
Link( this, ShellCall_Impl ) );
|
|
pImp->pExecuter->Call( new SfxRequest( rReq ) );
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
const SfxPoolItem* SfxShell::ExecuteSlot
|
|
(
|
|
SfxRequest &rReq, // the relayed <SfxRequest>
|
|
const SfxInterface* pIF // default = 0 means get virtually
|
|
)
|
|
{
|
|
if ( !pIF )
|
|
pIF = GetInterface();
|
|
|
|
sal_uInt16 nSlot = rReq.GetSlot();
|
|
const SfxSlot* pSlot = NULL;
|
|
if ( nSlot >= SID_VERB_START && nSlot <= SID_VERB_END )
|
|
pSlot = GetVerbSlot_Impl(nSlot);
|
|
if ( !pSlot )
|
|
pSlot = pIF->GetSlot(nSlot);
|
|
DBG_ASSERT( pSlot, "slot not supported" );
|
|
|
|
SfxExecFunc pFunc = pSlot->GetExecFnc();
|
|
if ( pFunc )
|
|
CallExec( pFunc, rReq );
|
|
|
|
return rReq.GetReturnValue();
|
|
}
|
|
|
|
const SfxPoolItem* SfxShell::GetSlotState
|
|
(
|
|
sal_uInt16 nSlotId, // Slot-Id to the Slots in question
|
|
const SfxInterface* pIF, // default = 0 means get virtually
|
|
SfxItemSet* pStateSet // SfxItemSet of the Slot-State method
|
|
)
|
|
{
|
|
// Get Slot on the given Interface
|
|
if ( !pIF )
|
|
pIF = GetInterface();
|
|
SfxItemState eState = SfxItemState::UNKNOWN;
|
|
SfxItemPool &rPool = GetPool();
|
|
|
|
const SfxSlot* pSlot = NULL;
|
|
if ( nSlotId >= SID_VERB_START && nSlotId <= SID_VERB_END )
|
|
pSlot = GetVerbSlot_Impl(nSlotId);
|
|
if ( !pSlot )
|
|
pSlot = pIF->GetSlot(nSlotId);
|
|
if ( pSlot )
|
|
// Map on Which-Id if possible
|
|
nSlotId = pSlot->GetWhich( rPool );
|
|
|
|
// Get Item and Item status
|
|
const SfxPoolItem *pItem = NULL;
|
|
SfxItemSet aSet( rPool, nSlotId, nSlotId ); // else pItem dies too soon
|
|
if ( pSlot )
|
|
{
|
|
// Call Status method
|
|
SfxStateFunc pFunc = pSlot->GetStateFnc();
|
|
if ( pFunc )
|
|
CallState( pFunc, aSet );
|
|
eState = aSet.GetItemState( nSlotId, true, &pItem );
|
|
|
|
// get default Item if possible
|
|
if ( eState == SfxItemState::DEFAULT )
|
|
{
|
|
if ( SfxItemPool::IsWhich(nSlotId) )
|
|
pItem = &rPool.GetDefaultItem(nSlotId);
|
|
else
|
|
eState = SfxItemState::DONTCARE;
|
|
}
|
|
}
|
|
else
|
|
eState = SfxItemState::UNKNOWN;
|
|
|
|
// Evaluate Item and item status and possibly maintain them in pStateSet
|
|
SfxPoolItem *pRetItem = 0;
|
|
if ( eState <= SfxItemState::DISABLED )
|
|
{
|
|
if ( pStateSet )
|
|
pStateSet->DisableItem(nSlotId);
|
|
return 0;
|
|
}
|
|
else if ( eState == SfxItemState::DONTCARE )
|
|
{
|
|
if ( pStateSet )
|
|
pStateSet->ClearItem(nSlotId);
|
|
pRetItem = new SfxVoidItem(0);
|
|
}
|
|
else
|
|
{
|
|
if ( pStateSet && pStateSet->Put( *pItem ) )
|
|
return &pStateSet->Get( pItem->Which() );
|
|
pRetItem = pItem->Clone();
|
|
}
|
|
DeleteItemOnIdle(pRetItem);
|
|
|
|
return pRetItem;
|
|
}
|
|
|
|
SFX_EXEC_STUB(SfxShell, VerbExec)
|
|
SFX_STATE_STUB(SfxShell, VerbState)
|
|
|
|
void SfxShell::SetVerbs(const com::sun::star::uno::Sequence < com::sun::star::embed::VerbDescriptor >& aVerbs)
|
|
{
|
|
SfxViewShell *pViewSh = PTR_CAST ( SfxViewShell, this);
|
|
|
|
DBG_ASSERT(pViewSh, "Only call SetVerbs at the ViewShell!");
|
|
if ( !pViewSh )
|
|
return;
|
|
|
|
// First make all Statecaches dirty, so that no-one no longer tries to use
|
|
// the Slots
|
|
{
|
|
SfxBindings *pBindings =
|
|
pViewSh->GetViewFrame()->GetDispatcher()->GetBindings();
|
|
sal_uInt16 nCount = pImp->aSlotArr.size();
|
|
for (sal_uInt16 n1=0; n1<nCount ; n1++)
|
|
{
|
|
sal_uInt16 nId = SID_VERB_START + n1;
|
|
pBindings->Invalidate(nId, false, true);
|
|
}
|
|
}
|
|
|
|
sal_uInt16 nr=0;
|
|
for (sal_Int32 n=0; n<aVerbs.getLength(); n++)
|
|
{
|
|
sal_uInt16 nSlotId = SID_VERB_START + nr++;
|
|
DBG_ASSERT(nSlotId <= SID_VERB_END, "To many Verbs!");
|
|
if (nSlotId > SID_VERB_END)
|
|
break;
|
|
|
|
SfxSlot *pNewSlot = new SfxSlot;
|
|
pNewSlot->nSlotId = nSlotId;
|
|
pNewSlot->nGroupId = 0;
|
|
|
|
// Verb slots must be executed asynchronously, so that they can be
|
|
// destroyed while executing.
|
|
pNewSlot->nFlags = SFX_SLOT_ASYNCHRON | SFX_SLOT_CONTAINER;
|
|
pNewSlot->nMasterSlotId = 0;
|
|
pNewSlot->nValue = 0;
|
|
pNewSlot->fnExec = SFX_STUB_PTR(SfxShell,VerbExec);
|
|
pNewSlot->fnState = SFX_STUB_PTR(SfxShell,VerbState);
|
|
pNewSlot->pType = 0; // HACK(SFX_TYPE(SfxVoidItem)) ???
|
|
pNewSlot->pLinkedSlot = 0;
|
|
pNewSlot->nArgDefCount = 0;
|
|
pNewSlot->pFirstArgDef = 0;
|
|
pNewSlot->pUnoName = 0;
|
|
|
|
if (!pImp->aSlotArr.empty())
|
|
{
|
|
SfxSlot& rSlot = pImp->aSlotArr[0];
|
|
pNewSlot->pNextSlot = rSlot.pNextSlot;
|
|
rSlot.pNextSlot = pNewSlot;
|
|
}
|
|
else
|
|
pNewSlot->pNextSlot = pNewSlot;
|
|
|
|
pImp->aSlotArr.insert(pImp->aSlotArr.begin() + (sal_uInt16) n, pNewSlot);
|
|
}
|
|
|
|
pImp->aVerbList = aVerbs;
|
|
|
|
if (pViewSh)
|
|
{
|
|
// The status of SID_OBJECT is collected in the controller directly on
|
|
// the Shell, it is thus enough to encourage a new status update
|
|
SfxBindings *pBindings = pViewSh->GetViewFrame()->GetDispatcher()->
|
|
GetBindings();
|
|
pBindings->Invalidate( SID_OBJECT, true, true );
|
|
}
|
|
}
|
|
|
|
const com::sun::star::uno::Sequence < com::sun::star::embed::VerbDescriptor >& SfxShell::GetVerbs() const
|
|
{
|
|
return pImp->aVerbList;
|
|
}
|
|
|
|
void SfxShell::VerbExec(SfxRequest& rReq)
|
|
{
|
|
sal_uInt16 nId = rReq.GetSlot();
|
|
SfxViewShell *pViewShell = GetViewShell();
|
|
if ( pViewShell )
|
|
{
|
|
bool bReadOnly = pViewShell->GetObjectShell()->IsReadOnly();
|
|
com::sun::star::uno::Sequence < com::sun::star::embed::VerbDescriptor > aList = pViewShell->GetVerbs();
|
|
for (sal_Int32 n=0, nVerb=0; n<aList.getLength(); n++)
|
|
{
|
|
// check for ReadOnly verbs
|
|
if ( bReadOnly && !(aList[n].VerbAttributes & embed::VerbAttributes::MS_VERBATTR_NEVERDIRTIES) )
|
|
continue;
|
|
|
|
// check for verbs that shouldn't appear in the menu
|
|
if ( !(aList[n].VerbAttributes & embed::VerbAttributes::MS_VERBATTR_ONCONTAINERMENU) )
|
|
continue;
|
|
|
|
if (nId == SID_VERB_START + nVerb++)
|
|
{
|
|
pViewShell->DoVerb(aList[n].VerbID);
|
|
rReq.Done();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void SfxShell::VerbState(SfxItemSet& )
|
|
{
|
|
}
|
|
|
|
const SfxSlot* SfxShell::GetVerbSlot_Impl(sal_uInt16 nId) const
|
|
{
|
|
com::sun::star::uno::Sequence < com::sun::star::embed::VerbDescriptor > rList = pImp->aVerbList;
|
|
|
|
DBG_ASSERT(nId >= SID_VERB_START && nId <= SID_VERB_END,"Wrong VerbId!");
|
|
sal_uInt16 nIndex = nId - SID_VERB_START;
|
|
DBG_ASSERT(nIndex < rList.getLength(),"Wrong VerbId!");
|
|
|
|
if (nIndex < rList.getLength())
|
|
return &pImp->aSlotArr[nIndex];
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
void SfxShell::SetHelpId(sal_uIntPtr nId)
|
|
{
|
|
pImp->nHelpId = nId;
|
|
}
|
|
|
|
sal_uIntPtr SfxShell::GetHelpId() const
|
|
{
|
|
return pImp->nHelpId;
|
|
}
|
|
|
|
SfxObjectShell* SfxShell::GetObjectShell()
|
|
{
|
|
if ( GetViewShell() )
|
|
return GetViewShell()->GetViewFrame()->GetObjectShell();
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
bool SfxShell::HasUIFeature( sal_uInt32 )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
long DispatcherUpdate_Impl( void*, void* pArg )
|
|
{
|
|
((SfxDispatcher*) pArg)->Update_Impl( true );
|
|
((SfxDispatcher*) pArg)->GetBindings()->InvalidateAll(false);
|
|
return 0;
|
|
}
|
|
|
|
void SfxShell::UIFeatureChanged()
|
|
{
|
|
SfxViewFrame *pFrame = GetFrame();
|
|
if ( pFrame && pFrame->IsVisible() )
|
|
{
|
|
// Also force an update, if dispatcher is already updated otherwise
|
|
// something my get stuck in the bunkered tools. Asynchronous call to
|
|
// prevent recursion.
|
|
if ( !pImp->pUpdater )
|
|
pImp->pUpdater = new svtools::AsynchronLink( Link( this, DispatcherUpdate_Impl ) );
|
|
|
|
// Multiple views allowed
|
|
pImp->pUpdater->Call( pFrame->GetDispatcher(), true );
|
|
}
|
|
}
|
|
|
|
void SfxShell::SetDisableFlags( sal_uIntPtr nFlags )
|
|
{
|
|
pImp->nDisableFlags = nFlags;
|
|
}
|
|
|
|
sal_uIntPtr SfxShell::GetDisableFlags() const
|
|
{
|
|
return pImp->nDisableFlags;
|
|
}
|
|
|
|
SfxItemSet* SfxShell::CreateItemSet( sal_uInt16 )
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void SfxShell::ApplyItemSet( sal_uInt16, const SfxItemSet& )
|
|
{
|
|
}
|
|
|
|
void SfxShell::SetContextName (const ::rtl::OUString& rsContextName)
|
|
{
|
|
pImp->maContextChangeBroadcaster.Initialize(rsContextName);
|
|
}
|
|
|
|
void SfxShell::SetViewShell_Impl( SfxViewShell* pView )
|
|
{
|
|
pImp->pViewSh = pView;
|
|
}
|
|
|
|
void SfxShell::BroadcastContextForActivation (const bool bIsActivated)
|
|
{
|
|
SfxViewFrame* pViewFrame = GetFrame();
|
|
if (pViewFrame != NULL)
|
|
{
|
|
if (bIsActivated)
|
|
pImp->maContextChangeBroadcaster.Activate(pViewFrame->GetFrame().GetFrameInterface());
|
|
else
|
|
pImp->maContextChangeBroadcaster.Deactivate(pViewFrame->GetFrame().GetFrameInterface());
|
|
}
|
|
}
|
|
|
|
bool SfxShell::SetContextBroadcasterEnabled (const bool bIsEnabled)
|
|
{
|
|
return pImp->maContextChangeBroadcaster.SetBroadcasterEnabled(bIsEnabled);
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|