2010-10-27 12:43:08 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-21 14:30:25 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2013-10-23 22:48:59 +02:00
|
|
|
#ifndef INCLUDED_CHART2_SOURCE_CONTROLLER_INC_ITEMCONVERTER_HXX
|
|
|
|
#define INCLUDED_CHART2_SOURCE_CONTROLLER_INC_ITEMCONVERTER_HXX
|
2003-10-06 08:58:36 +00:00
|
|
|
|
2003-10-07 14:39:56 +00:00
|
|
|
#include <unotools/eventlisteneradapter.hxx>
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/itempool.hxx>
|
|
|
|
#include <svl/itemset.hxx>
|
2003-10-06 08:58:36 +00:00
|
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
|
|
|
2007-05-22 16:54:02 +00:00
|
|
|
#include <utility>
|
|
|
|
|
2003-10-07 16:18:46 +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.
|
|
|
|
|
2003-10-07 14:39:56 +00:00
|
|
|
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
|
|
|
|
2003-10-07 14:39:56 +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
|
|
|
|
2007-05-22 16:54:02 +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
|
|
|
|
2003-10-07 14:39:56 +00:00
|
|
|
FillSpecialItem and ApplySpecialItem may be used for special handling of
|
|
|
|
individual item, e.g. if you need member-ids in QueryValue/PutValue
|
2003-10-07 16:18:46 +00:00
|
|
|
|
|
|
|
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 :
|
2003-10-07 14:39:56 +00:00
|
|
|
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();
|
|
|
|
|
2011-01-14 15:18:08 +01:00
|
|
|
typedef sal_uInt16 tWhichIdType;
|
2013-04-07 12:06:47 +02:00
|
|
|
typedef OUString tPropertyNameType;
|
2011-01-14 15:18:08 +01:00
|
|
|
typedef sal_uInt8 tMemberIdType;
|
2007-05-22 16:54:02 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2003-10-07 14:39:56 +00:00
|
|
|
Call this method before opening a dialog.
|
2003-10-06 08:58:36 +00:00
|
|
|
|
2003-10-07 14:39:56 +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.
|
|
|
|
|
2003-10-07 14:39:56 +00:00
|
|
|
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 );
|
|
|
|
|
2003-10-07 14:39:56 +00:00
|
|
|
/** 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;
|
|
|
|
|
2003-10-07 14:39:56 +00:00
|
|
|
/** 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:
|
2014-02-25 17:47:16 +01:00
|
|
|
|
2003-10-06 08:58:36 +00:00
|
|
|
|
|
|
|
/** implement this method to provide an array of which-ranges of the form:
|
|
|
|
|
2011-01-14 15:18:08 +01:00
|
|
|
const sal_uInt16 aMyPairs[] =
|
2003-10-06 08:58:36 +00:00
|
|
|
{
|
2003-10-07 14:39:56 +00:00
|
|
|
from_1, to_1,
|
|
|
|
from_2, to_2,
|
|
|
|
...
|
|
|
|
from_n, to_n,
|
|
|
|
0
|
2003-10-06 08:58:36 +00:00
|
|
|
};
|
|
|
|
*/
|
2011-01-14 15:18:08 +01:00
|
|
|
virtual const sal_uInt16 * GetWhichPairs() const = 0;
|
2003-10-06 08:58:36 +00:00
|
|
|
|
|
|
|
/** implement this method to return a Property object for a given which id.
|
|
|
|
|
2007-05-22 16:54:02 +00:00
|
|
|
@param rOutProperty
|
|
|
|
If true is returned, this contains the property name and the
|
|
|
|
corresponding Member-Id.
|
2003-10-06 08:58:36 +00:00
|
|
|
|
2003-10-07 14:39:56 +00:00
|
|
|
@return true, if the item can be mapped to a property.
|
2003-10-06 08:58:36 +00:00
|
|
|
*/
|
2007-05-22 16:54:02 +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.
|
|
|
|
|
2007-05-22 16:54:02 +00:00
|
|
|
This method is called from FillItemSet(), if GetItemProperty() returns
|
2003-10-06 08:58:36 +00:00
|
|
|
false.
|
2003-10-07 14:39:56 +00:00
|
|
|
|
|
|
|
The default implementation does nothing except showing an assertion
|
2003-10-06 08:58:36 +00:00
|
|
|
*/
|
2011-01-14 15:18:08 +01:00
|
|
|
virtual void FillSpecialItem( sal_uInt16 nWhichId, SfxItemSet & rOutItemSet ) const
|
2003-10-17 13:30:15 +00:00
|
|
|
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.
|
|
|
|
|
2007-05-22 16:54:02 +00:00
|
|
|
This method is called from ApplyItemSet(), if GetItemProperty() returns
|
2003-10-06 08:58:36 +00:00
|
|
|
false.
|
|
|
|
|
2003-10-07 14:39:56 +00:00
|
|
|
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
|
|
|
*/
|
2011-01-14 15:18:08 +01:00
|
|
|
virtual bool ApplySpecialItem( sal_uInt16 nWhichId, const SfxItemSet & rItemSet )
|
2003-10-17 13:30:15 +00:00
|
|
|
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;
|
|
|
|
|
2003-10-07 14:39:56 +00:00
|
|
|
// ____ ::utl::OEventListenerAdapter ____
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual void _disposing( const ::com::sun::star::lang::EventObject& rSource ) SAL_OVERRIDE;
|
2003-10-06 08:58:36 +00:00
|
|
|
|
2008-02-18 14:53:38 +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;
|
|
|
|
};
|
|
|
|
|
2003-10-07 16:18:46 +00:00
|
|
|
} // namespace comphelper
|
2003-10-06 08:58:36 +00:00
|
|
|
|
2013-10-23 22:48:59 +02:00
|
|
|
// INCLUDED_CHART2_SOURCE_CONTROLLER_INC_ITEMCONVERTER_HXX
|
2003-10-06 08:58:36 +00:00
|
|
|
#endif
|
2010-10-27 12:43:08 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|