diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-09-09 16:11:47 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-09-09 16:11:47 +0000 |
commit | bf78995a7adb7d33459e44a0833e5abfb8d76db8 (patch) | |
tree | e51626eb3c518517a0826f42f5fab6c2b6c689f5 | |
parent | b5ffd9b2358aa6619eb8d6419132d52205f5d0f5 (diff) |
INTEGRATION: CWS toolbars2 (1.1.2); FILE ADDED
2004/08/11 10:38:57 cd 1.1.2.2: #i32219# Status bar is now controlled by framework based layout manager
2004/08/05 15:20:20 cd 1.1.2.1: #i32219# New classes for framework based status bar
-rw-r--r-- | framework/source/uielement/statusbarwrapper.cxx | 329 |
1 files changed, 329 insertions, 0 deletions
diff --git a/framework/source/uielement/statusbarwrapper.cxx b/framework/source/uielement/statusbarwrapper.cxx new file mode 100644 index 000000000000..ee309310c6fa --- /dev/null +++ b/framework/source/uielement/statusbarwrapper.cxx @@ -0,0 +1,329 @@ +/************************************************************************* + * + * $RCSfile: statusbarwrapper.cxx,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: obo $ $Date: 2004-09-09 17:11:47 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (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.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +#include <uielement/statusbarwrapper.hxx> + +//_________________________________________________________________________________________________________________ +// my own includes +//_________________________________________________________________________________________________________________ + +#ifndef __FRAMEWORK_THREADHELP_RESETABLEGUARD_HXX_ +#include <threadhelp/resetableguard.hxx> +#endif +#ifndef __FRAMEWORK_HELPER_ACTIONTRIGGERHELPER_HXX_ +#include <helper/actiontriggerhelper.hxx> +#endif +#ifndef __FRAMEWORK_UIELEMENT_CONSTITEMCONTAINER_HXX_ +#include <uielement/constitemcontainer.hxx> +#endif +#ifndef __FRAMEWORK_UIELEMENT_ROOTITEMCONTAINER_HXX_ +#include <uielement/rootitemcontainer.hxx> +#endif +#ifndef __FRAMEWORK_UIELEMENT_STATUSBAR_HXX_ +#include <uielement/statusbar.hxx> +#endif +#include <helpid.hrc> + +//_________________________________________________________________________________________________________________ +// interface includes +//_________________________________________________________________________________________________________________ + +#ifndef _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_ +#include <com/sun/star/lang/XServiceInfo.hpp> +#endif + +#ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_ +#include <com/sun/star/beans/XPropertySet.hpp> +#endif + +#ifndef _COM_SUN_STAR_AWT_XSYSTEMDEPENDENTMENUPEER_HPP_ +#include <com/sun/star/awt/XSystemDependentMenuPeer.hpp> +#endif + +#ifndef _COM_SUN_STAR_AWT_XMENUBAR_HPP_ +#include <com/sun/star/awt/XMenuBar.hpp> +#endif + +#ifndef _COM_SUN_STAR_CONTAINER_XINDEXCONTAINER_HPP_ +#include <com/sun/star/container/XIndexContainer.hpp> +#endif + +#ifndef _COM_SUN_STAR_CONTAINER_XNAMEACCESS_HPP_ +#include <com/sun/star/container/XNameAccess.hpp> +#endif + +#ifndef _DRAFTS_COM_SUN_STAR_UI_UIELEMENTTYPE_HPP_ +#include <drafts/com/sun/star/ui/UIElementType.hpp> +#endif + +//_________________________________________________________________________________________________________________ +// other includes +//_________________________________________________________________________________________________________________ + +#ifndef _COMPHELPER_PROCESSFACTORY_HXX_ +#include <comphelper/processfactory.hxx> +#endif +#ifndef _TOOLKIT_HELPER_VCLUNOHELPER_HXX_ +#include <toolkit/unohlp.hxx> +#endif + +#include <tools/solar.h> +#include <vcl/svapp.hxx> +#include <rtl/logfile.hxx> + +using namespace rtl; +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 drafts::com::sun::star::ui; + +namespace framework +{ + +StatusBarWrapper::StatusBarWrapper( + const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& xServiceManager + ) +: + m_xServiceFactory( xServiceManager ), + UIConfigElementWrapperBase( UIElementType::STATUSBAR ) +{ +} + +StatusBarWrapper::~StatusBarWrapper() +{ +} + +const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& StatusBarWrapper::getServiceFactory() +{ + ResetableGuard aLock( m_aLock ); + if ( m_bDisposed ) + throw DisposedException(); + + return m_xServiceFactory; +} + +void SAL_CALL StatusBarWrapper::dispose() throw (::com::sun::star::uno::RuntimeException) +{ + Reference< XComponent > xThis( static_cast< OWeakObject* >(this), UNO_QUERY ); + + com::sun::star::lang::EventObject aEvent( xThis ); + m_aListenerContainer.disposeAndClear( aEvent ); + + ResetableGuard aLock( m_aLock ); + if ( !m_bDisposed ) + { + if ( m_xStatusBarManager.is() ) + m_xStatusBarManager->dispose(); + m_xStatusBarManager.clear(); + m_xConfigSource.clear(); + m_xConfigData.clear(); + m_xServiceFactory.clear(); + + m_bDisposed = sal_True; + } + else + throw DisposedException(); +} + +// XInitialization +void SAL_CALL StatusBarWrapper::initialize( const Sequence< Any >& aArguments ) throw ( Exception, RuntimeException ) +{ + ResetableGuard aLock( m_aLock ); + + if ( m_bDisposed ) + throw DisposedException(); + + if ( !m_bInitialized ) + { + UIConfigElementWrapperBase::initialize( aArguments ); + + Reference< XFrame > xFrame( m_xWeakFrame ); + if ( xFrame.is() && m_xConfigSource.is() ) + { + // Create VCL based toolbar which will be filled with settings data + StatusBar* pStatusBar( 0 ); + StatusBarManager* pStatusBarManager( 0 ); + { + vos::OGuard aSolarMutexGuard( Application::GetSolarMutex() ); + Window* pWindow = VCLUnoHelper::GetWindow( xFrame->getContainerWindow() ); + if ( pWindow ) + { + ULONG nStyles = WinBits( WB_LEFT | WB_3DLOOK ); + + pStatusBar = new FrameworkStatusBar( pWindow, nStyles ); + pStatusBarManager = new StatusBarManager( m_xServiceFactory, xFrame, m_aResourceURL, pStatusBar ); + ((FrameworkStatusBar*)pStatusBar)->SetStatusBarManager( pStatusBarManager ); + m_xStatusBarManager = Reference< XComponent >( static_cast< OWeakObject *>( pStatusBarManager ), UNO_QUERY ); + pStatusBar->SetUniqueId( HID_STATUSBAR ); + } + } + + try + { + m_xConfigData = m_xConfigSource->getSettings( m_aResourceURL, sal_False ); + if ( m_xConfigData.is() && pStatusBar && pStatusBarManager ) + { + // Fill statusbar with container contents + pStatusBarManager->FillStatusBar( m_xConfigData ); + } + } + catch ( NoSuchElementException& ) + { + } + } + } +} + +// XUIElementSettings +void SAL_CALL StatusBarWrapper::updateSettings() throw ( RuntimeException ) +{ + ResetableGuard aLock( m_aLock ); + + if ( m_bDisposed ) + throw DisposedException(); + + if ( m_bPersistent && + m_xConfigSource.is() && + m_xStatusBarManager.is() ) + { + try + { + StatusBarManager* pStatusBarManager = static_cast< StatusBarManager *>( m_xStatusBarManager.get() ); + + m_xConfigData = m_xConfigSource->getSettings( m_aResourceURL, sal_False ); + if ( m_xConfigData.is() ) + pStatusBarManager->FillStatusBar( m_xConfigData ); + } + catch ( NoSuchElementException& ) + { + } + } +} + +void SAL_CALL StatusBarWrapper::setSettings( const Reference< XIndexAccess >& xSettings ) throw ( RuntimeException ) +{ + ResetableGuard aLock( m_aLock ); + + if ( m_bDisposed ) + throw DisposedException(); + + if ( xSettings.is() ) + { + // Create a copy of the data if the container is not const + Reference< XIndexReplace > xReplace( xSettings, UNO_QUERY ); + if ( xReplace.is() ) + m_xConfigData = Reference< XIndexAccess >( static_cast< OWeakObject * >( new ConstItemContainer( xSettings ) ), UNO_QUERY ); + else + m_xConfigData = xSettings; + + if ( m_xConfigSource.is() && m_bPersistent ) + { + OUString aResourceURL( m_aResourceURL ); + Reference< XUIConfigurationManager > xUICfgMgr( m_xConfigSource ); + + aLock.unlock(); + + try + { + xUICfgMgr->replaceSettings( aResourceURL, m_xConfigData ); + } + catch( NoSuchElementException& ) + { + } + } + } +} + +Reference< XIndexAccess > SAL_CALL StatusBarWrapper::getSettings( sal_Bool bWriteable ) throw ( RuntimeException ) +{ + ResetableGuard aLock( m_aLock ); + + if ( m_bDisposed ) + throw DisposedException(); + + if ( bWriteable ) + return Reference< XIndexAccess >( static_cast< OWeakObject * >( new RootItemContainer( m_xConfigData ) ), UNO_QUERY ); + else + return m_xConfigData; +} + +Reference< XInterface > SAL_CALL StatusBarWrapper::getRealInterface() throw ( RuntimeException ) +{ + ResetableGuard aLock( m_aLock ); + + if ( m_xStatusBarManager.is() ) + { + StatusBarManager* pStatusBarManager = static_cast< StatusBarManager *>( m_xStatusBarManager.get() ); + if ( pStatusBarManager ) + { + Window* pWindow = (Window *)pStatusBarManager->GetStatusBar(); + if ( pWindow ) + return Reference< XInterface >( VCLUnoHelper::GetInterface( pWindow ), UNO_QUERY ); + } + } + + return Reference< XInterface >(); +} + +} // namespace framework |