blob: a8d8e7fe2a022e34c271162770662366f6d9c9e1 [file] [log] [blame]
/**************************************************************
*
* 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef _XMLIMPIT_HXX
#define _XMLIMPIT_HXX
#include <limits.h>
#include <tools/solar.h>
#include <tools/ref.hxx>
#include <com/sun/star/xml/sax/XAttributeList.hpp>
#include "xmlitmap.hxx"
namespace rtl { class OUString; }
class SvXMLUnitConverter;
class SfxPoolItem;
class SfxItemSet;
class SvXMLNamespaceMap;
struct SvXMLItemMapEntry;
class SvXMLImportItemMapper
{
protected:
SvXMLItemMapEntriesRef mrMapEntries;
sal_uInt16 nUnknownWhich;
public:
SvXMLImportItemMapper( SvXMLItemMapEntriesRef rMapEntries ,
sal_uInt16 nUnknWhich=USHRT_MAX );
virtual ~SvXMLImportItemMapper();
/** fills the given itemset with the attributes in the given list */
void importXML( SfxItemSet& rSet,
::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList > xAttrList,
const SvXMLUnitConverter& rUnitConverter,
const SvXMLNamespaceMap& rNamespaceMap );
/** this method is called for every item that has the
MID_SW_FLAG_SPECIAL_ITEM_IMPORT flag set */
virtual sal_Bool handleSpecialItem( const SvXMLItemMapEntry& rEntry,
SfxPoolItem& rItem,
SfxItemSet& rSet,
const ::rtl::OUString& rValue,
const SvXMLUnitConverter& rUnitConverter,
const SvXMLNamespaceMap& rNamespaceMap );
/** this method is called for every item that has the
MID_SW_FLAG_NO_ITEM_IMPORT flag set */
virtual sal_Bool handleNoItem( const SvXMLItemMapEntry& rEntry,
SfxItemSet& rSet,
const ::rtl::OUString& rValue,
const SvXMLUnitConverter& rUnitConverter,
const SvXMLNamespaceMap& rNamespaceMap );
/** This method is called when all attributes have benn processed. It
* may be used to remove items that are incomplete */
virtual void finished(SfxItemSet & rSet,
SvXMLUnitConverter const& rUnitConverter) const;
virtual void setMapEntries( SvXMLItemMapEntriesRef rMapEntries );
inline SvXMLItemMapEntriesRef getMapEntries() const;
/** This method is called for every item that should be set based
upon an XML attribute value. */
static sal_Bool PutXMLValue(
SfxPoolItem& rItem,
const ::rtl::OUString& rValue,
sal_uInt16 nMemberId,
const SvXMLUnitConverter& rUnitConverter );
};
inline SvXMLItemMapEntriesRef
SvXMLImportItemMapper::getMapEntries() const
{
return mrMapEntries;
}
#endif // _XMLIMPIT_HXX