Files
libreoffice/chart2/source/controller/inc/ItemConverter.hxx

247 lines
8.2 KiB
C++
Raw Normal View History

2003-10-06 08:58:36 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2003-10-06 08:58:36 +00:00
*
* $RCSfile: ItemConverter.hxx,v $
2003-10-06 08:58:36 +00:00
*
* $Revision: 1.9 $
2003-10-06 08:58:36 +00:00
*
* last change: $Author: rt $ $Date: 2008-02-18 15:53:38 $
2003-10-06 08:58:36 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2003-10-06 08:58:36 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2003-10-06 08:58:36 +00:00
*
* 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.
2003-10-06 08:58:36 +00:00
*
* 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.
2003-10-06 08:58:36 +00:00
*
* 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
2003-10-06 08:58:36 +00:00
*
************************************************************************/
#ifndef CHART_ITEMCONVERTER_HXX
#define CHART_ITEMCONVERTER_HXX
#ifndef _UNOTOOLS_EVENTLISTENERADAPTER_HXX_
#include <unotools/eventlisteneradapter.hxx>
2003-10-06 08:58:36 +00:00
#endif
#ifndef _SFXITEMPOOL_HXX
#include <svtools/itempool.hxx>
#endif
#ifndef _SFXITEMSET_HXX
#include <svtools/itemset.hxx>
#endif
#ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_
#include <com/sun/star/beans/XPropertySet.hpp>
#endif
// for pair
#include <utility>
struct SfxItemPropertyMap;
2003-10-06 08:58:36 +00:00
namespace comphelper
2003-10-06 08:58:36 +00:00
{
/** This class serves for conversion between properties of an XPropertySet and
SfxItems in SfxItemSets.
With this helper classes, you can feed dialogs with XPropertySets and let
those modify by the dialogs.
2003-10-06 08:58:36 +00:00
You must implement GetWhichPairs() such that an SfxItemSet created with
CreateEmptyItemSet() is able to hold all items that may be mapped.
2003-10-06 08:58:36 +00:00
You also have to implement GetItemProperty(), in order to return the
property name for a given which-id together with the corresponding member-id
that has to be used for conversion in QueryValue/PutValue.
2003-10-06 08:58:36 +00:00
FillSpecialItem and ApplySpecialItem may be used for special handling of
individual item, e.g. if you need member-ids in QueryValue/PutValue
A typical use could be the following:
::comphelper::ChartTypeItemConverter aItemConverter( xPropertySet, GetItemPool() );
SfxItemSet aItemSet = aItemConverter.CreateEmptyItemSet();
aItemConverter.FillItemSet( aItemSet );
bool bChanged = false;
MyDialog aDlg( aItemSet );
if( aDlg.Execute() == RET_OK )
{
const SfxItemSet* pOutItemSet = aDlg.GetOutputItemSet();
if( pOutItemSet )
bChanged = aItemConverter.ApplyItemSet( *pOutItemSet );
}
if( bChanged )
{
[ apply model changes to view ]
}
2003-10-06 08:58:36 +00:00
*/
class ItemConverter :
public ::utl::OEventListenerAdapter
2003-10-06 08:58:36 +00:00
{
public:
/** Construct an item converter that uses the given property set for
reading/writing converted items
*/
ItemConverter(
const ::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySet > & rPropertySet ,
SfxItemPool& rItemPool );
virtual ~ItemConverter();
// typedefs -------------------------------
typedef USHORT tWhichIdType;
typedef ::rtl::OUString tPropertyNameType;
typedef BYTE tMemberIdType;
typedef ::std::pair< tPropertyNameType, tMemberIdType > tPropertyNameWithMemberId;
// ----------------------------------------
2003-10-06 08:58:36 +00:00
/** applies all properties that can be mapped to items into the given item
set.
Call this method before opening a dialog.
2003-10-06 08:58:36 +00:00
@param rOutItemSet
the SfxItemSet is filled with all items that are a result of a
conversion from a property of the internal XPropertySet.
2003-10-06 08:58:36 +00:00
*/
virtual void FillItemSet( SfxItemSet & rOutItemSet ) const;
/** applies all properties that are results of a conversion from all items
in rItemSet to the internal XPropertySet.
Call this method after a dialog was closed with OK
2003-10-06 08:58:36 +00:00
@return true, if any properties have been changed, false otherwise.
*/
virtual bool ApplyItemSet( const SfxItemSet & rItemSet );
/** creates an empty item set using the given pool or a common pool if empty
(see GetItemPool) and allowing all items given in the ranges returned by
GetWhichPairs.
2003-10-06 08:58:36 +00:00
*/
SfxItemSet CreateEmptyItemSet() const;
/** States whether conversion is still likely to work.
In particular, it is checked if the XPropertySet given in the CTOR is
2003-10-06 08:58:36 +00:00
still valid, i.e. not disposed. It is assumed that the XPropertySet is
valid when the converter is constructed.
2003-10-06 08:58:36 +00:00
This only works if the XPropertySet given in the CTOR supports the
interface ::com::sun::star::lang::XComponent.
2003-10-06 08:58:36 +00:00
*/
bool IsValid() const;
/** Invalidates all items in rDestSet, that are set (state SFX_ITEM_SET) in
both item sets (rDestSet and rSourceSet) and have differing content.
*/
2003-10-06 08:58:36 +00:00
static void InvalidateUnequalItems( SfxItemSet &rDestSet, const SfxItemSet &rSourceSet );
protected:
// ________
/** implement this method to provide an array of which-ranges of the form:
const USHORT aMyPairs[] =
{
from_1, to_1,
from_2, to_2,
...
from_n, to_n,
0
2003-10-06 08:58:36 +00:00
};
*/
virtual const USHORT * GetWhichPairs() const = 0;
/** implement this method to return a Property object for a given which id.
@param rOutProperty
If true is returned, this contains the property name and the
corresponding Member-Id.
2003-10-06 08:58:36 +00:00
@return true, if the item can be mapped to a property.
2003-10-06 08:58:36 +00:00
*/
virtual bool GetItemProperty( tWhichIdType nWhichId, tPropertyNameWithMemberId & rOutProperty ) const = 0;
2003-10-06 08:58:36 +00:00
/** for items that can not be mapped directly to a property.
This method is called from FillItemSet(), if GetItemProperty() returns
2003-10-06 08:58:36 +00:00
false.
The default implementation does nothing except showing an assertion
2003-10-06 08:58:36 +00:00
*/
virtual void FillSpecialItem( USHORT nWhichId, SfxItemSet & rOutItemSet ) const
throw( ::com::sun::star::uno::Exception );
2003-10-06 08:58:36 +00:00
/** for items that can not be mapped directly to a property.
This method is called from ApplyItemSet(), if GetItemProperty() returns
2003-10-06 08:58:36 +00:00
false.
The default implementation returns just false and shows an assertion
@return true if the item changed a property, false otherwise.
2003-10-06 08:58:36 +00:00
*/
virtual bool ApplySpecialItem( USHORT nWhichId, const SfxItemSet & rItemSet )
throw( ::com::sun::star::uno::Exception );
2003-10-06 08:58:36 +00:00
// ________
/// Returns the pool
SfxItemPool & GetItemPool() const;
2003-11-04 12:09:14 +00:00
/** Returns the XPropertySet that was given in the CTOR and is used to apply
items in ApplyItemSet().
*/
::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySet > GetPropertySet() const;
// ____ ::utl::OEventListenerAdapter ____
virtual void _disposing( const ::com::sun::star::lang::EventObject& rSource );
2003-10-06 08:58:36 +00:00
protected:
/** sets a new property set, that you get with GetPropertySet(). It should
not be necessary to use this method. It is introduced to allow changing
the regression type of a regression curve which changes the object
identity.
*/
void resetPropertySet( const ::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySet > & xPropSet );
2003-10-06 08:58:36 +00:00
private:
::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySet > m_xPropertySet;
::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySetInfo > m_xPropertySetInfo;
SfxItemPool& m_rItemPool;
bool m_bIsValid;
};
} // namespace comphelper
2003-10-06 08:58:36 +00:00
// CHART_ITEMCONVERTER_HXX
#endif