2010-10-27 12:33:13 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2004-08-02 14:12:53 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 11:51:13 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-08-02 14:12:53 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-08-02 14:12:53 +00:00
|
|
|
*
|
2008-04-10 11:51:13 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-08-02 14:12:53 +00:00
|
|
|
*
|
2008-04-10 11:51:13 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-08-02 14:12:53 +00:00
|
|
|
*
|
2008-04-10 11:51:13 +00: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-08-02 14:12:53 +00:00
|
|
|
*
|
2008-04-10 11:51:13 +00: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-08-02 14:12:53 +00:00
|
|
|
*
|
2008-04-10 11:51:13 +00: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-08-02 14:12:53 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef DBA_PROPERTYSETFORWARD_HXX
|
|
|
|
#define DBA_PROPERTYSETFORWARD_HXX
|
|
|
|
|
|
|
|
#include <com/sun/star/beans/XPropertyChangeListener.hpp>
|
|
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
|
|
#include <com/sun/star/beans/XPropertySetInfo.hpp>
|
|
|
|
#include <com/sun/star/container/XNameContainer.hpp>
|
|
|
|
#include <cppuhelper/implbase1.hxx>
|
|
|
|
#include <comphelper/broadcasthelper.hxx>
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace dbaccess
|
|
|
|
{
|
2009-11-03 14:53:24 +01:00
|
|
|
|
|
|
|
// ===================================================================
|
|
|
|
// = OPropertyForward
|
|
|
|
// ===================================================================
|
2004-08-02 14:12:53 +00:00
|
|
|
typedef ::cppu::WeakImplHelper1 < ::com::sun::star::beans::XPropertyChangeListener
|
|
|
|
> OPropertyForward_Base;
|
2009-11-03 14:53:24 +01:00
|
|
|
class OPropertyForward :public ::comphelper::OBaseMutex
|
2004-08-02 14:12:53 +00:00
|
|
|
,public OPropertyForward_Base
|
|
|
|
{
|
2009-11-03 14:53:24 +01:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xSource;
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xDest;
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > m_xDestInfo;
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > m_xDestContainer;
|
|
|
|
::rtl::OUString m_sName;
|
|
|
|
sal_Bool m_bInInsert;
|
|
|
|
|
2004-08-02 14:12:53 +00:00
|
|
|
protected:
|
|
|
|
virtual ~OPropertyForward();
|
2009-11-03 14:53:24 +01:00
|
|
|
|
2004-08-02 14:12:53 +00:00
|
|
|
public:
|
2009-11-03 14:53:24 +01:00
|
|
|
OPropertyForward( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>& _xSource,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess>& _xDestContainer,
|
|
|
|
const ::rtl::OUString& _sName,
|
|
|
|
const ::std::vector< ::rtl::OUString >& _aPropertyList
|
|
|
|
);
|
2004-08-02 14:12:53 +00:00
|
|
|
|
|
|
|
// ::com::sun::star::beans::XPropertyChangeListener
|
|
|
|
virtual void SAL_CALL propertyChange( const ::com::sun::star::beans::PropertyChangeEvent& evt ) throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
// ::com::sun::star::lang::XEventListener
|
|
|
|
virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& _rSource ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
2009-11-03 14:53:24 +01:00
|
|
|
inline void setName( const ::rtl::OUString& _sName ) { m_sName = _sName; }
|
|
|
|
void setDefinition( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _xDest);
|
|
|
|
inline ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > getDefinition() const { return m_xDest; }
|
2004-08-02 14:12:53 +00:00
|
|
|
};
|
2009-11-03 14:53:24 +01:00
|
|
|
|
2004-08-02 14:12:53 +00:00
|
|
|
} // namespace dbaccess
|
|
|
|
|
2010-10-13 00:09:16 +02:00
|
|
|
#endif // DBA_PROPERTYSETFORWARD_HXX
|
2010-10-27 12:33:13 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|