Files
libreoffice/include/xmloff/maptype.hxx

120 lines
4.5 KiB
C++
Raw Normal View History

2010-10-27 13:11:31 +01:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
re-base on ALv2 code. Includes: Patches contributed by: Armin Le Grand. #118558# Correcting OLE attributes of LO3.4 at load time by loading as OOo3.3, details see task. http://svn.apache.org/viewvc?view=revision&revision=1195906 #118485# - Styles for OLEs are not saved. http://svn.apache.org/viewvc?view=revision&revision=1182166 #118898# Adapted ImpGraphic::ImplGetBitmap to correctly convert metafiles http://svn.apache.org/viewvc?view=revision&revision=1293316 #119337# Solves the wrong get/setPropertyValue calls in SvxShapeText (and thus in SvxOle2Shape) http://svn.apache.org/viewvc?view=revision&revision=1344156 Patches contributed by Mathias Bauer (and others) gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 cws mba34issues01: #i117717#: remove wrong assertion http://svn.apache.org/viewvc?view=revision&revision=1172349 Patch contributed by Herbert Duerr goodbye Registration and License dialogs, don't let the door hit you http://svn.apache.org/viewvc?view=revision&revision=1172613 help gcc 4.6.0 on 32bit ubuntu 11.10" http://svn.apache.org/viewvc?view=revision&revision=1245357 Do not add targets for junit tests when junit is disabled. Patch contributed by Andre Fischer http://svn.apache.org/viewvc?view=revision&revision=1241508 Revert "sb140: #i117082# avoid unncessary static class data members commit 21d97438e2944861e26e4984195f959a0cce1e41. remove obsolete FreeBSD visibility special case. retain consolidated BSD bridge code, remove OS/2 pieces.
2012-11-12 17:21:24 +00: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 .
*/
#ifndef INCLUDED_XMLOFF_MAPTYPE_HXX
#define INCLUDED_XMLOFF_MAPTYPE_HXX
#include <com/sun/star/uno/Any.hxx>
#include <xmloff/xmltoken.hxx>
#include <unotools/saveopt.hxx>
/** Represents a property with its API-name, its XML-name and the type of
its value.
*/
struct XMLPropertyMapEntry
{
const sal_Char* msApiName; /// Property-Name
sal_Int32 nApiNameLength; /// length of property name
2013-05-06 20:07:23 +02:00
sal_uInt16 mnNameSpace; /** declares the Namespace in which this
property exists */
enum ::xmloff::token::XMLTokenEnum meXMLName; /// XML-Name
/**
* The lowest 14 bits specify the basic XML type of the property value, of
* which the 11th bit specifies the application type. The basic type has
* the 11th bit off and the 14th bit on. For the most part, the lower 14
* bits are used as a single value.
*
* <p>The next 4 bits specify the family type of the property value. This
* can be one of the following:</p>
*
* <ul>
* <li>XML_TYPE_PROP_GRAPHIC</li>
* <li>XML_TYPE_PROP_DRAWING_PAGE</li>
* <li>XML_TYPE_PROP_PAGE_LAYOUT</li>
* <li>XML_TYPE_PROP_HEADER_FOOTER</li>
* <li>XML_TYPE_PROP_TEXT</li>
* <li>XML_TYPE_PROP_PARAGRAPH</li>
* <li>XML_TYPE_PROP_RUBY</li>
* <li>XML_TYPE_PROP_SECTION</li>
* <li>XML_TYPE_PROP_TABLE</li>
* <li>XML_TYPE_PROP_TABLE_COLUMN</li>
* <li>XML_TYPE_PROP_TABLE_ROW</li>
* <li>XML_TYPE_PROP_TABLE_CELL</li>
* <li>XML_TYPE_PROP_LIST_LEVEL</li>
* <li>XML_TYPE_PROP_CHART</li>
* </ul>
*
* <p>The next 2 bits are not used.</p>
*
* <p>The last 12 bits specify additional rules on how to special-case the
* value during import and export. This value may be a combination of the
* following flags:</p>
*
* <ul>
* <li>MID_FLAG_PROPERTY_MAY_THROW</li>
* <li>MID_FLAG_DEFAULT_ITEM_EXPORT</li>
* <li>MID_FLAG_MUST_EXIST</li>
* <li>MID_FLAG_MERGE_ATTRIBUTE</li>
* <li>MID_FLAG_MERGE_PROPERTY</li>
* <li>MID_FLAG_MULTI_PROPERTY</li>
* <li>MID_FLAG_ELEMENT_ITEM_IMPORT</li>
* <li>MID_FLAG_ELEMENT_ITEM_EXPORT</li>
* <li>MID_FLAG_SPECIAL_ITEM_IMPORT</li>
* <li>MID_FLAG_SPECIAL_ITEM_EXPORT</li>
* <li>MID_FLAG_NO_PROPERTY_IMPORT</li>
* <li>MID_FLAG_NO_PROPERTY_EXPORT</li>
* </ul>
*/
sal_uInt32 mnType;
sal_Int16 mnContextId; /// User defined id for context filtering
SvtSaveOptions::ODFDefaultVersion mnEarliestODFVersionForExport;// no export when the used ODF version is lower than this
/** Flag to specify whether entry is only used during import.
Allows to handle more than one Namespace/XML-Name to Property-Name
mapping, i.e. for extensions. If several entries for the same
Property-Name exist, all except one must have this flag set.
*/
bool mbImportOnly;
};
/** Smart struct to transport an Any with an index to the appropriate
property-name
*/
struct XMLPropertyState
{
sal_Int32 mnIndex;
css::uno::Any maValue;
XMLPropertyState( sal_Int32 nIndex )
: mnIndex( nIndex ) {}
XMLPropertyState( sal_Int32 nIndex, const css::uno::Any& rValue )
: mnIndex( nIndex ), maValue( rValue ) {}
XMLPropertyState( const XMLPropertyState& rPropState )
: mnIndex( rPropState.mnIndex ), maValue( rPropState.maValue ) {}
};
#endif // INCLUDED_XMLOFF_MAPTYPE_HXX
2010-10-27 13:11:31 +01:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */