2004-07-06 06:10:57 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 12:19:53 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-07-06 06:10:57 -05:00
|
|
|
*
|
2008-04-10 12:19:53 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2004-07-06 06:10:57 -05:00
|
|
|
*
|
2008-04-10 12:19:53 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-07-06 06:10:57 -05:00
|
|
|
*
|
2008-04-10 12:19:53 -05:00
|
|
|
* $RCSfile: eventcfg.hxx,v $
|
|
|
|
* $Revision: 1.5 $
|
2004-07-06 06:10:57 -05:00
|
|
|
*
|
2008-04-10 12:19:53 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-07-06 06:10:57 -05:00
|
|
|
*
|
2008-04-10 12:19:53 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-07-06 06:10:57 -05:00
|
|
|
*
|
2008-04-10 12:19:53 -05:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-07-06 06:10:57 -05:00
|
|
|
*
|
2008-04-10 12:19:53 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-07-06 06:10:57 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef _EVENTCFG_HXX
|
|
|
|
#define _EVENTCFG_HXX
|
|
|
|
|
2005-04-13 04:06:58 -05:00
|
|
|
#include "svtools/svldllapi.h"
|
2004-07-06 06:10:57 -05:00
|
|
|
#include <unotools/configitem.hxx>
|
|
|
|
#include <com/sun/star/document/XEventsSupplier.hpp>
|
|
|
|
#include <com/sun/star/container/XNameReplace.hpp>
|
|
|
|
#include <com/sun/star/frame/XFrame.hpp>
|
|
|
|
#include <cppuhelper/weakref.hxx>
|
|
|
|
#include <cppuhelper/implbase2.hxx>
|
|
|
|
#include <hash_map>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
typedef ::std::hash_map< ::rtl::OUString, ::rtl::OUString, ::rtl::OUStringHash, ::std::equal_to< ::rtl::OUString > > EventBindingHash;
|
|
|
|
typedef ::std::vector< ::com::sun::star::uno::WeakReference< ::com::sun::star::frame::XFrame > > FrameVector;
|
|
|
|
typedef ::std::vector< ::rtl::OUString > SupportedEventsVector;
|
|
|
|
|
|
|
|
class GlobalEventConfig_Impl : public utl::ConfigItem
|
|
|
|
{
|
|
|
|
EventBindingHash m_eventBindingHash;
|
|
|
|
FrameVector m_lFrames;
|
|
|
|
SupportedEventsVector m_supportedEvents;
|
|
|
|
|
2005-04-13 04:06:58 -05:00
|
|
|
void initBindingInfo();
|
2004-07-06 06:10:57 -05:00
|
|
|
|
|
|
|
public:
|
|
|
|
GlobalEventConfig_Impl( );
|
|
|
|
~GlobalEventConfig_Impl( );
|
|
|
|
|
|
|
|
void EstablishFrameCallback(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame);
|
|
|
|
void Notify( const com::sun::star::uno::Sequence<rtl::OUString>& aPropertyNames);
|
|
|
|
void Commit();
|
|
|
|
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > SAL_CALL getEvents( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
void SAL_CALL replaceByName( const ::rtl::OUString& aName, const ::com::sun::star::uno::Any& aElement ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
::com::sun::star::uno::Any SAL_CALL getByName( const ::rtl::OUString& aName ) throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getElementNames( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
::sal_Bool SAL_CALL hasByName( const ::rtl::OUString& aName ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
::com::sun::star::uno::Type SAL_CALL getElementType( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
::sal_Bool SAL_CALL hasElements( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
};
|
2005-04-13 04:06:58 -05:00
|
|
|
|
|
|
|
class SVL_DLLPUBLIC GlobalEventConfig:
|
2004-07-06 06:10:57 -05:00
|
|
|
public ::cppu::WeakImplHelper2 < ::com::sun::star::document::XEventsSupplier, ::com::sun::star::container::XNameReplace >
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GlobalEventConfig( );
|
|
|
|
~GlobalEventConfig( );
|
|
|
|
static ::osl::Mutex& GetOwnStaticMutex();
|
|
|
|
|
|
|
|
void EstablishFrameCallback(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame);
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > SAL_CALL getEvents( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
void SAL_CALL replaceByName( const ::rtl::OUString& aName, const ::com::sun::star::uno::Any& aElement ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
::com::sun::star::uno::Any SAL_CALL getByName( const ::rtl::OUString& aName ) throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getElementNames( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
::sal_Bool SAL_CALL hasByName( const ::rtl::OUString& aName ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
::com::sun::star::uno::Type SAL_CALL getElementType( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
::sal_Bool SAL_CALL hasElements( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
static GlobalEventConfig_Impl* m_pImpl;
|
|
|
|
static sal_Int32 m_nRefCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _EVENTCFG_HXX
|