1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* 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.
*
* 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).
*
* 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.
*
************************************************************************/
#ifndef _XMLOFF_FORMS_PROPERTYEXPORT_HXX_
#define _XMLOFF_FORMS_PROPERTYEXPORT_HXX_
#include "formattributes.hxx"
#include <comphelper/stl_types.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/beans/XPropertyState.hpp>
#include <callbacks.hxx>
#include <xmloff/xmlexp.hxx>
#include "callbacks.hxx"
#include "strings.hxx"
//.........................................................................
namespace xmloff
{
//.........................................................................
#define BOOLATTR_DEFAULT_FALSE 0x00
#define BOOLATTR_DEFAULT_TRUE 0x01
#define BOOLATTR_DEFAULT_VOID 0x02
#define BOOLATTR_DEFAULT_MASK 0x03
#define BOOLATTR_INVERSE_SEMANTICS 0x04
// if sal_True, indicates that the semantic of the property refered by <arg>_pPropertyName</arg>
// is inverse to the semantic of the XML attribute.<br/>
// I.e. if the property value is <TRUE/>, <FALSE/> has to be written and vice versa.
// <p>Be careful with <arg>_bDefault</arg> and <arg>_bInverseSemantics</arg>: if <arg>_bInverseSemantics</arg>
// is <TRUE/>, the current property value is inverted <em>before</em> comparing it to the default.</p>
class IFormsExportContext;
//=====================================================================
//= OPropertyExport
//=====================================================================
/** provides export related tools for attribute handling
<p>(The name is somewhat misleading. It's not only a PropertyExport, but in real a ElementExport.
Anyway.)</p>
*/
class OPropertyExport
{
private:
DECLARE_STL_STDKEY_SET(::rtl::OUString, StringSet);
StringSet m_aRemainingProps;
// see examinePersistence
void exportRelativeTargetLocation(const ConstAsciiString& _sPropertyName,sal_Int32 _nProperty,bool _bAddType);
protected:
IFormsExportContext& m_rContext;
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
m_xProps;
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo >
m_xPropertyInfo;
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyState >
m_xPropertyState;
// caching
::rtl::OUString m_sValueTrue;
::rtl::OUString m_sValueFalse;
public:
/** constructs an object capable of handling attributes for export
@param _rContext
the export context to which's attribute list the property translation should be added
@param m_xControl
the property set to be exported
*/
OPropertyExport(IFormsExportContext& _rContext,
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxProps);
protected:
/** examines a property set given for all properties which's value are to made persistent
<p>upon return the <method>m_aRemainingProps</method> will be filled with the names of all properties
which need to be stored</p>
*/
void examinePersistence();
template< typename T > void exportRemainingPropertiesSequence(
com::sun::star::uno::Any const & value,
token::XMLTokenEnum eValueAttName);
void exportRemainingProperties();
/** indicates that a property has been handled by a derived class, without using the helper methods of this
class.
<p>Calling this method is necessary in case you use the suggested mechanism for the generic export of
properties. This means that you want to use <method>exportRemainingProperties</method>, which exports
all properties which need to ('cause they haven't been exported with one of the other type-specific
methods).</p>
<p>In this case you should call exportedProperty for every property you export yourself, so the property
will be flagged as <em>already handled</em></p>
*/
void exportedProperty(const ::rtl::OUString& _rPropertyName)
{ m_aRemainingProps.erase(_rPropertyName); }
/** add an attribute which is represented by a string property to the export context
@param _nNamespaceKey
the key of the namespace to use for the attribute name. Is used with the namespace map
provided by the export context.
@param _pAttributeName
the name of the attribute to add. Must not contain any namespace
@param _pPropertyName
the name of the property to ask the control for
*/
void exportStringPropertyAttribute(
const sal_uInt16 _nNamespaceKey,
const sal_Char* _pAttributeName,
const ::rtl::OUString& _rPropertyName
);
/** add an attribute which is represented by a boolean property to the export context
@param _nNamespaceKey
the key of the namespace to use for the attribute name. Is used with the namespace map
provided by the export context.
@param _pAttributeName
the name of the attribute to add. Must not contain any namespace (it's added automatically)
@param _pPropertyName
the name of the property to ask the control for
@param _nBooleanAttributeFlags
specifies the default and the "alignment" (inverse semantics) of the boolean property
*/
void exportBooleanPropertyAttribute(
const sal_uInt16 _nNamespaceKey,
const sal_Char* _pAttributeName,
const ::rtl::OUString& _rPropertyName,
const sal_Int8 _nBooleanAttributeFlags);
/** add an attribute which is represented by a sal_Int16 property to the export context
@param _nNamespaceKey
the key of the namespace to use for the attribute name. Is used with the namespace map
provided by the export context.
@param _pAttributeName
the name of the attribute to add. Must not contain any namespace (it's added automatically)
@param _pPropertyName
the name of the property to ask the control for
@param _nDefault
the default of the attribute. If the current property value equals this default, no
attribute is added.
*/
void exportInt16PropertyAttribute(
const sal_uInt16 _nNamespaceKey,
const sal_Char* _pAttributeName,
const ::rtl::OUString& _rPropertyName,
const sal_Int16 _nDefault);
/** add an attribute which is represented by a sal_Int32 property to the export context
@param _nNamespaceKey
the key of the namespace to use for the attribute name. Is used with the namespace map
provided by the export context.
@param _pAttributeName
the name of the attribute to add. Must not contain any namespace (it's added automatically)
@param _pPropertyName
the name of the property to ask the control for
@param _nDefault
the default of the attribute. If the current property value equals this default, no
attribute is added.
*/
void exportInt32PropertyAttribute(
const sal_uInt16 _nNamespaceKey,
const sal_Char* _pAttributeName,
const ::rtl::OUString& _rPropertyName,
const sal_Int32 _nDefault);
/** add an attribute which is represented by a enum property to the export context
@param _nNamespaceKey
the key of the namespace to use for the attribute name. Is used with the namespace map
provided by the export context.
@param _pAttributeName
the name of the attribute to add. Must not contain any namespace (it's added automatically)
@param _pPropertyName
the name of the property to ask the control for
@param _pValueMap
the map to use when converting the property value to an attribute value
@param _nDefault
the default of the attribute. If the current property value equals this default, no
attribute is added.
*/
void exportEnumPropertyAttribute(
const sal_uInt16 _nNamespaceKey,
const sal_Char* _pAttributeName,
const sal_Char* _pPropertyName,
const SvXMLEnumMapEntry* _pValueMap,
const sal_Int32 _nDefault,
const sal_Bool _bVoidDefault = sal_False);
// some very special methods for some very special attribute/property pairs
/** add the hlink:target-frame attribute to the export context.
<p>The value of this attribute is extracted from the TargetFrame property of the object given.</p>
<p>The property needs a special handling because conflicts between the default values for the attribute
and the property.</p>
*/
void exportTargetFrameAttribute();
/** add the form:href attribute to the export context.
<p>The value of this attribute is extracted from the TargetURL property of the object given.</p>
<p>The property needs a special handling because the URL's need to be made relative</p>
<p>If _bAddType is set, an additional xlink:type="simple" attribute is also added.</p>
*/
inline void exportTargetLocationAttribute(bool _bAddType) { exportRelativeTargetLocation(PROPERTY_TARGETURL,CCA_TARGET_LOCATION,_bAddType); }
/** add the form:image attribute to the export context.
<p>The value of this attribute is extracted from the ImageURL property of the object given.</p>
<p>The property needs a special handling because the URL's need to be made relative</p>
*/
inline void exportImageDataAttribute() { exportRelativeTargetLocation(PROPERTY_IMAGEURL,CCA_IMAGE_DATA,false); }
/** flag the style properties as 'already exported'
<p>We don't have style support right now, so the only thing the method does is removing the style-relevant
properties from the list of yet-to-be-exported properties (<member>m_aRemainingProps</member>)</p>
*/
void flagStyleProperties();
/** add an arbitrary attribute extracted from an arbitrary property to the export context
<p>The current value of the property specified wiht <arg>_pPropertyName</arg> is taken and converted
into a string, no matter what type it has. (Okay, there are the usual limitations: We know Date, Datetime,
double, integer ... to name just a few).</p>
<p>In case the property value is <NULL/> (void), no attribute is added</p>
<p>In case the property value is an empty string, and the property is a not allowed to be <NULL/> (void),
no attribute is added</p>
<p>In case the property value is a sequence of any type, no attribute is added, 'cause sequences can't be
transported as attribute. In the debug version, an additional assertion will occur if you nonetheless try
to do this.</p>
@param _nNamespaceKey
the key of the namespace to use for the attribute name. Is used with the namespace map
provided by the export context.
@param _pAttributeName
the name of the attribute to add. Must not contain any namespace (it's added automatically)
@param _pPropertyName
the name of the property to ask the object for
*/
void exportGenericPropertyAttribute(
const sal_uInt16 _nAttributeNamespaceKey,
const sal_Char* _pAttributeName,
const sal_Char* _pPropertyName);
/** exports a property value, which is a string sequence, as attribute
<p>The elements of the string sequence given are quoted and concatenated, with the characters used for
this to be choosen by the caller</p>
<p>If you use the quote character, no check (except assertions) is made if one of the list items
containes the quote character</p>
<p>If you don't use the quote character, no check (except assertions) is made if one of the list items
containes the separator character (which would be deadly when reimporting the string)</p>
@param _nNamespaceKey
the key of the namespace to use for the attribute name. Is used with the namespace map
provided by the export context.
@param _pAttributeName
the name of the attribute to add. Must not contain any namespace (it's added automatically)
@param _pPropertyName
the name of the property to ask the object for
@param _aQuoteCharacter
the character to use to quote the sequence elements with. May be 0, in this case no quoting happens
@param _aListSeparator
the character to use to separate the list entries
*/
void exportStringSequenceAttribute(
const sal_uInt16 _nAttributeNamespaceKey,
const sal_Char* _pAttributeName,
const ::rtl::OUString& _rPropertyName,
const sal_Unicode _aQuoteCharacter = '"',
const sal_Unicode _aListSeparator = ',');
/** determines whether the given property is to be exported
<p>Currently, the method simply checks whether the property's state is <em>not</em> PropertyState.DEFAULT,
or whether the property is a dynamic property (i.e. added via an <code>XPropertyContainer</code>).
So, take care when using the method - the heuristics is not applicable for all properties.</p>
*/
bool shouldExportProperty( const ::rtl::OUString& i_propertyName ) const;
/** tries to convert an arbitrary <type scope="com.sun:star.uno">Any</type> into an string
<p>If the type contained in the Any is not supported, the returned string will be empty. In the
debug version, an additional assertion occurs.</p>
@param _rValue
the value to convert
*/
::rtl::OUString implConvertAny(
const ::com::sun::star::uno::Any& _rValue);
/**
@return
token which can be used in the <code>form:property</code> element's <code>type</code> attribute
to describe the type of a value.<br/>
Possible types returned are
<ul>
<li><b>boolean</b>: <arg>_rValue</arg> was interpreted as boolean value before converting
it into a string</li>
<li><b>float</b>: <arg>_rValue</arg> was interpreted as 64 bit floating point 16bit integer, 32bit integer or 64 bit integer value before
converting it into a string</li>
<li><b>string</b>: <arg>_rValue</arg> did not need any conversion as it already was a string</li>
</ul>
If the type is not convertable, float is returned
*/
::xmloff::token::XMLTokenEnum implGetPropertyXMLType(const ::com::sun::star::uno::Type& _rType);
#ifdef DBG_UTIL
void AddAttribute(sal_uInt16 _nPrefix, const sal_Char* _pName, const ::rtl::OUString& _rValue);
void AddAttribute( sal_uInt16 _nPrefix, const ::rtl::OUString& _rName, const ::rtl::OUString& _rValue );
void AddAttributeASCII( sal_uInt16 nPrefix, const sal_Char *pName, const sal_Char *pValue );
void AddAttribute(sal_uInt16 _nPrefix, ::xmloff::token::XMLTokenEnum _eName, const ::rtl::OUString& _rValue);
void AddAttribute(sal_uInt16 _nPrefix, ::xmloff::token::XMLTokenEnum _eName, ::xmloff::token::XMLTokenEnum _eValue );
#else
// in the product version, inline this, so it does not cost us extra time calling into our method
inline void AddAttribute(sal_uInt16 _nPrefix, const sal_Char* _pName, const ::rtl::OUString& _rValue)
{ m_rContext.getGlobalContext().AddAttribute(_nPrefix, _pName, _rValue); }
inline void AddAttribute( sal_uInt16 _nPrefix, const ::rtl::OUString& _rName, const ::rtl::OUString& _rValue )
{ m_rContext.getGlobalContext().AddAttribute( _nPrefix, _rName, _rValue ); }
inline void AddAttributeASCII( sal_uInt16 _nPrefix, const sal_Char* _pName, const sal_Char *pValue )
{ m_rContext.getGlobalContext().AddAttributeASCII(_nPrefix, _pName, pValue); }
inline void AddAttribute(sal_uInt16 _nPrefix, ::xmloff::token::XMLTokenEnum _eName, const ::rtl::OUString& _rValue)
{ m_rContext.getGlobalContext().AddAttribute(_nPrefix, _eName, _rValue); }
inline void AddAttribute(sal_uInt16 _nPrefix, ::xmloff::token::XMLTokenEnum _eName, ::xmloff::token::XMLTokenEnum _eValue )
{ m_rContext.getGlobalContext().AddAttribute(_nPrefix, _eName, _eValue); }
#endif
#ifdef DBG_UTIL
protected:
/** check a given property set for the existence and type correctness of a given property
<p>This method is available in the non-product version only.</p>
@param _rPropertyName
the name of the property to ask the control model for
@param _pType
the expected type of the property. May be NULL, in this case no type check is made.
@return sal_True, if the property exists and is of the correct type
*/
void dbg_implCheckProperty(
const ::rtl::OUString& _rPropertyName,
const ::com::sun::star::uno::Type* _pType);
// void dbg_implCheckProperty(
// const sal_Char* _rPropertyName,
// const ::com::sun::star::uno::Type* _pType)
// {
// dbg_implCheckProperty(::rtl::OUString::createFromAscii(_rPropertyName), _pType);
// }
#endif
};
//=====================================================================
//= helper
//=====================================================================
#ifdef DBG_UTIL
#define DBG_CHECK_PROPERTY(name, type) \
dbg_implCheckProperty(name, &::getCppuType(static_cast< type* >(NULL)))
#define DBG_CHECK_PROPERTY_NO_TYPE(name) \
dbg_implCheckProperty(name, NULL)
#define DBG_CHECK_PROPERTY_ASCII( name, type ) \
dbg_implCheckProperty( ::rtl::OUString::createFromAscii( name ), &::getCppuType(static_cast< type* >(NULL)))
#define DBG_CHECK_PROPERTY_ASCII_NO_TYPE( name ) \
dbg_implCheckProperty( ::rtl::OUString::createFromAscii( name ), NULL )
#else
#define DBG_CHECK_PROPERTY(name, type)
#define DBG_CHECK_PROPERTY_NO_TYPE(name)
#define DBG_CHECK_PROPERTY_ASCII_NO_TYPE( name )
#endif
//.........................................................................
} // namespace xmloff
//.........................................................................
#endif // _XMLOFF_FORMS_PROPERTYEXPORT_HXX_
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|