8d9af8385c
2006/09/01 17:29:25 kaib 1.5.202.1: #i68856# Added header markers and pch files
245 lines
8.2 KiB
C++
245 lines
8.2 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: addonstoolbarwrapper.cxx,v $
|
|
*
|
|
* $Revision: 1.6 $
|
|
*
|
|
* last change: $Author: obo $ $Date: 2006-09-16 14:17:29 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 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
|
|
*
|
|
************************************************************************/
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
#include "precompiled_framework.hxx"
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
// my own includes
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
|
|
#ifndef __FRAMEWORK_UIELEMENT_ADDONSTOOLBARWRAPPER_HXX_
|
|
#include <uielement/addonstoolbarwrapper.hxx>
|
|
#endif
|
|
|
|
#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_ADDONSTOOLBARMANAGER_HXX_
|
|
#include <uielement/addonstoolbarmanager.hxx>
|
|
#endif
|
|
|
|
#ifndef __FRAMEWORK_UIELEMENT_TOOLBARW_HXX_
|
|
#include <uielement/toolbar.hxx>
|
|
#endif
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
// 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 _COM_SUN_STAR_UI_UIELEMENTTYPE_HPP_
|
|
#include <com/sun/star/ui/UIElementType.hpp>
|
|
#endif
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
// other includes
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
#ifndef _TOOLKIT_HELPER_VCLUNOHELPER_HXX_
|
|
#include <toolkit/unohlp.hxx>
|
|
#endif
|
|
#ifndef _TOOLKIT_AWT_VCLXWINDOW_HXX_
|
|
#include <toolkit/awt/vclxwindow.hxx>
|
|
#endif
|
|
#ifndef _COMPHELPER_PROCESSFACTORY_HXX_
|
|
#include <comphelper/processfactory.hxx>
|
|
#endif
|
|
|
|
#include <svtools/miscopt.hxx>
|
|
#include <vcl/svapp.hxx>
|
|
#include <vcl/toolbox.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 ::com::sun::star::ui;
|
|
|
|
namespace framework
|
|
{
|
|
|
|
AddonsToolBarWrapper::AddonsToolBarWrapper( const Reference< XMultiServiceFactory >& xServiceManager ) :
|
|
UIElementWrapperBase( UIElementType::TOOLBAR ),
|
|
m_xServiceManager( xServiceManager )
|
|
{
|
|
}
|
|
|
|
AddonsToolBarWrapper::~AddonsToolBarWrapper()
|
|
{
|
|
}
|
|
|
|
// XComponent
|
|
void SAL_CALL AddonsToolBarWrapper::dispose() throw ( 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_xToolBarManager.is() )
|
|
m_xToolBarManager->dispose();
|
|
m_xToolBarManager.clear();
|
|
m_xToolBarWindow.clear();
|
|
|
|
m_bDisposed = sal_True;
|
|
}
|
|
|
|
// XInitialization
|
|
void SAL_CALL AddonsToolBarWrapper::initialize( const Sequence< Any >& aArguments ) throw ( Exception, RuntimeException )
|
|
{
|
|
ResetableGuard aLock( m_aLock );
|
|
|
|
if ( m_bDisposed )
|
|
throw DisposedException();
|
|
|
|
if ( !m_bInitialized )
|
|
{
|
|
UIElementWrapperBase::initialize( aArguments );
|
|
|
|
for ( sal_Int32 n = 0; n < aArguments.getLength(); n++ )
|
|
{
|
|
PropertyValue aPropValue;
|
|
if ( aArguments[n] >>= aPropValue )
|
|
{
|
|
if ( aPropValue.Name.equalsAscii( "ConfigurationData" ))
|
|
aPropValue.Value >>= m_aConfigData;
|
|
}
|
|
}
|
|
|
|
Reference< XFrame > xFrame( m_xWeakFrame );
|
|
if ( xFrame.is() && m_aConfigData.getLength() > 0 )
|
|
{
|
|
// Create VCL based toolbar which will be filled with settings data
|
|
ToolBar* pToolBar = 0;
|
|
AddonsToolBarManager* pToolBarManager = 0;
|
|
{
|
|
vos::OGuard aSolarMutexGuard( Application::GetSolarMutex() );
|
|
Window* pWindow = VCLUnoHelper::GetWindow( xFrame->getContainerWindow() );
|
|
if ( pWindow )
|
|
{
|
|
ULONG nStyles = WB_LINESPACING | WB_BORDER | WB_SCROLL | WB_MOVEABLE | WB_3DLOOK | WB_DOCKABLE | WB_SIZEABLE | WB_CLOSEABLE;
|
|
|
|
pToolBar = new ToolBar( pWindow, nStyles );
|
|
m_xToolBarWindow = VCLUnoHelper::GetInterface( pToolBar );
|
|
pToolBarManager = new AddonsToolBarManager( m_xServiceManager, xFrame, m_aResourceURL, pToolBar );
|
|
pToolBar->SetToolBarManager( pToolBarManager );
|
|
m_xToolBarManager = Reference< XComponent >( static_cast< OWeakObject *>( pToolBarManager ), UNO_QUERY );
|
|
}
|
|
}
|
|
|
|
try
|
|
{
|
|
if (( m_aConfigData.getLength() > 0 ) && pToolBar && pToolBarManager )
|
|
{
|
|
// Fill toolbar with container contents
|
|
pToolBarManager->FillToolbar( m_aConfigData );
|
|
pToolBar->SetOutStyle( SvtMiscOptions().GetToolboxStyle() );
|
|
pToolBar->EnableCustomize( TRUE );
|
|
::Size aActSize( pToolBar->GetSizePixel() );
|
|
::Size aSize( pToolBar->CalcWindowSizePixel() );
|
|
aSize.Width() = aActSize.Width();
|
|
pToolBar->SetSizePixel( aSize );
|
|
}
|
|
}
|
|
catch ( NoSuchElementException& )
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// XUIElement interface
|
|
Reference< XInterface > SAL_CALL AddonsToolBarWrapper::getRealInterface() throw (::com::sun::star::uno::RuntimeException)
|
|
{
|
|
ResetableGuard aLock( m_aLock );
|
|
|
|
if ( m_xToolBarManager.is() )
|
|
{
|
|
AddonsToolBarManager* pToolBarManager = static_cast< AddonsToolBarManager *>( m_xToolBarManager.get() );
|
|
if ( pToolBarManager )
|
|
{
|
|
Window* pWindow = (Window *)pToolBarManager->GetToolBar();
|
|
return Reference< XInterface >( VCLUnoHelper::GetInterface( pWindow ), UNO_QUERY );
|
|
}
|
|
}
|
|
|
|
return Reference< XInterface >();
|
|
}
|
|
|
|
} // namespace framework
|