/* -*- 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace com::sun::star; using namespace com::sun::star::uno; using namespace com::sun::star::beans; using namespace com::sun::star::frame; using namespace com::sun::star::lang; using namespace com::sun::star::container; using namespace com::sun::star::awt; using namespace ::com::sun::star::ui; namespace framework { ToolBarWrapper::ToolBarWrapper( const Reference< XComponentContext >& rxContext ) : UIConfigElementWrapperBase( UIElementType::TOOLBAR ), m_xContext( rxContext ) { } ToolBarWrapper::~ToolBarWrapper() { } // XInterface void SAL_CALL ToolBarWrapper::acquire() throw() { UIConfigElementWrapperBase::acquire(); } void SAL_CALL ToolBarWrapper::release() throw() { UIConfigElementWrapperBase::release(); } uno::Any SAL_CALL ToolBarWrapper::queryInterface( const uno::Type & rType ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) { Any a = ::cppu::queryInterface( rType , (static_cast< ::com::sun::star::ui::XUIFunctionListener* >(this)) ); if( a.hasValue() ) return a; return UIConfigElementWrapperBase::queryInterface( rType ); } // XComponent void SAL_CALL ToolBarWrapper::dispose() throw ( RuntimeException, std::exception ) { Reference< XComponent > xThis( static_cast< OWeakObject* >(this), UNO_QUERY ); { SolarMutexGuard g; if ( m_bDisposed ) return; } com::sun::star::lang::EventObject aEvent( xThis ); m_aListenerContainer.disposeAndClear( aEvent ); SolarMutexGuard g; if ( m_xToolBarManager.is() ) m_xToolBarManager->dispose(); m_xToolBarManager.clear(); m_xConfigSource.clear(); m_xConfigData.clear(); m_bDisposed = true; } // XInitialization void SAL_CALL ToolBarWrapper::initialize( const Sequence< Any >& aArguments ) throw ( Exception, RuntimeException, std::exception ) { SolarMutexGuard g; if ( m_bDisposed ) throw DisposedException(); if ( !m_bInitialized ) { UIConfigElementWrapperBase::initialize( aArguments ); bool bPopupMode( false ); for ( sal_Int32 i = 0; i < aArguments.getLength(); i++ ) { PropertyValue aPropValue; if ( aArguments[i] >>= aPropValue ) { if ( aPropValue.Name == "PopupMode" ) { aPropValue.Value >>= bPopupMode; break; } } } Reference< XFrame > xFrame( m_xWeakFrame ); if ( xFrame.is() && m_xConfigSource.is() ) { // Create VCL based toolbar which will be filled with settings data ToolBox* pToolBar = 0; ToolBarManager* pToolBarManager = 0; { SolarMutexGuard aSolarMutexGuard; vcl::Window* pWindow = VCLUnoHelper::GetWindow( xFrame->getContainerWindow() ); if ( pWindow ) { sal_uLong nStyles = WB_LINESPACING | WB_BORDER | WB_SCROLL | WB_MOVEABLE | WB_3DLOOK | WB_DOCKABLE | WB_SIZEABLE | WB_CLOSEABLE; pToolBar = new ToolBox( pWindow, nStyles ); pToolBarManager = new ToolBarManager( m_xContext, xFrame, m_aResourceURL, pToolBar ); m_xToolBarManager = Reference< XComponent >( static_cast< OWeakObject *>( pToolBarManager ), UNO_QUERY ); pToolBar->WillUsePopupMode( bPopupMode ); } } try { m_xConfigData = m_xConfigSource->getSettings( m_aResourceURL, sal_False ); if ( m_xConfigData.is() && pToolBar && pToolBarManager ) { // Fill toolbar with container contents pToolBarManager->FillToolbar( m_xConfigData ); pToolBar->SetOutStyle( SvtMiscOptions().GetToolboxStyle() ); pToolBar->EnableCustomize( true ); ::Size aActSize( pToolBar->GetSizePixel() ); ::Size aSize( pToolBar->CalcWindowSizePixel() ); aSize.Width() = aActSize.Width(); pToolBar->SetOutputSizePixel( aSize ); } } catch ( const NoSuchElementException& ) { // No settings in our configuration manager. This means we are // a transient toolbar which has no persistent settings. m_bPersistent = false; if ( pToolBar && pToolBarManager ) { pToolBar->SetOutStyle( SvtMiscOptions().GetToolboxStyle() ); pToolBar->EnableCustomize( true ); ::Size aActSize( pToolBar->GetSizePixel() ); ::Size aSize( pToolBar->CalcWindowSizePixel() ); aSize.Width() = aActSize.Width(); pToolBar->SetOutputSizePixel( aSize ); } } } } } // XEventListener void SAL_CALL ToolBarWrapper::disposing( const ::com::sun::star::lang::EventObject& ) throw (::com::sun::star::uno::RuntimeException, std::exception) { // nothing todo } // XUpdatable void SAL_CALL ToolBarWrapper::update() throw (::com::sun::star::uno::RuntimeException, std::exception) { SolarMutexGuard g; if ( m_bDisposed ) throw DisposedException(); ToolBarManager* pToolBarManager = static_cast< ToolBarManager *>( m_xToolBarManager.get() ); if ( pToolBarManager ) pToolBarManager->CheckAndUpdateImages(); } // XUIElementSettings void SAL_CALL ToolBarWrapper::updateSettings() throw (::com::sun::star::uno::RuntimeException, std::exception) { SolarMutexGuard g; if ( m_bDisposed ) throw DisposedException(); if ( m_xToolBarManager.is() ) { if ( m_xConfigSource.is() && m_bPersistent ) { try { ToolBarManager* pToolBarManager = static_cast< ToolBarManager *>( m_xToolBarManager.get() ); m_xConfigData = m_xConfigSource->getSettings( m_aResourceURL, sal_False ); if ( m_xConfigData.is() ) pToolBarManager->FillToolbar( m_xConfigData ); } catch ( const NoSuchElementException& ) { } } else if ( !m_bPersistent ) { // Transient toolbar: do nothing } } } void ToolBarWrapper::impl_fillNewData() { // Transient toolbar => Fill toolbar with new data ToolBarManager* pToolBarManager = static_cast< ToolBarManager *>( m_xToolBarManager.get() ); if ( pToolBarManager ) pToolBarManager->FillToolbar( m_xConfigData ); } // XUIElement interface Reference< XInterface > SAL_CALL ToolBarWrapper::getRealInterface( ) throw (::com::sun::star::uno::RuntimeException, std::exception) { SolarMutexGuard g; if ( m_xToolBarManager.is() ) { ToolBarManager* pToolBarManager = static_cast< ToolBarManager *>( m_xToolBarManager.get() ); if ( pToolBarManager ) { vcl::Window* pWindow = (vcl::Window *)pToolBarManager->GetToolBar(); return Reference< XInterface >( VCLUnoHelper::GetInterface( pWindow ), UNO_QUERY ); } } return Reference< XInterface >(); } //XUIFunctionExecute void SAL_CALL ToolBarWrapper::functionExecute( const OUString& aUIElementName, const OUString& aCommand ) throw (::com::sun::star::uno::RuntimeException, std::exception) { SolarMutexGuard g; if ( m_xToolBarManager.is() ) { ToolBarManager* pToolBarManager = static_cast< ToolBarManager *>( m_xToolBarManager.get() ); if ( pToolBarManager ) pToolBarManager->notifyRegisteredControllers( aUIElementName, aCommand ); } } void SAL_CALL ToolBarWrapper::setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const com::sun::star::uno::Any& aValue ) throw( com::sun::star::uno::Exception, std::exception ) { SolarMutexResettableGuard aLock; bool bNoClose( m_bNoClose ); aLock.clear(); UIConfigElementWrapperBase::setFastPropertyValue_NoBroadcast( nHandle, aValue ); aLock.reset(); bool bNewNoClose( m_bNoClose ); if ( m_xToolBarManager.is() && !m_bDisposed && ( bNewNoClose != bNoClose )) { ToolBarManager* pToolBarManager = static_cast< ToolBarManager *>( m_xToolBarManager.get() ); if ( pToolBarManager ) { ToolBox* pToolBox = pToolBarManager->GetToolBar(); if ( pToolBox ) { if ( bNewNoClose ) { pToolBox->SetStyle( pToolBox->GetStyle() & ~WB_CLOSEABLE ); pToolBox->SetFloatStyle( pToolBox->GetFloatStyle() & ~WB_CLOSEABLE ); } else { pToolBox->SetStyle( pToolBox->GetStyle() | WB_CLOSEABLE ); pToolBox->SetFloatStyle( pToolBox->GetFloatStyle() | WB_CLOSEABLE ); } } } } } } // namespace framework /* vim:set shiftwidth=4 softtabstop=4 expandtab: */