LCOV - code coverage report
Current view: top level - xmlscript/source/xmldlg_imexp - exp_share.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 39 43 90.7 %
Date: 2014-11-03 Functions: 16 20 80.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #ifndef INCLUDED_XMLSCRIPT_SOURCE_XMLDLG_IMEXP_EXP_SHARE_HXX
      21             : #define INCLUDED_XMLSCRIPT_SOURCE_XMLDLG_IMEXP_EXP_SHARE_HXX
      22             : 
      23             : #include "common.hxx"
      24             : #include "misc.hxx"
      25             : #include <xmlscript/xmldlg_imexp.hxx>
      26             : #include <xmlscript/xml_helper.hxx>
      27             : #include <osl/diagnose.h>
      28             : #include <com/sun/star/xml/sax/XAttributeList.hpp>
      29             : #include <com/sun/star/beans/XPropertySet.hpp>
      30             : #include <com/sun/star/beans/XPropertyState.hpp>
      31             : #include <com/sun/star/awt/FontDescriptor.hpp>
      32             : #include <com/sun/star/awt/FontEmphasisMark.hpp>
      33             : #include <com/sun/star/awt/FontRelief.hpp>
      34             : #include <vector>
      35             : 
      36             : 
      37             : namespace xmlscript
      38             : {
      39             : 
      40          60 : struct Style
      41             : {
      42             :     sal_uInt32 _backgroundColor;
      43             :     sal_uInt32 _textColor;
      44             :     sal_uInt32 _textLineColor;
      45             :     sal_Int16 _border;
      46             :     sal_Int32 _borderColor;
      47             :     css::awt::FontDescriptor _descr;
      48             :     sal_uInt16 _fontRelief;
      49             :     sal_uInt16 _fontEmphasisMark;
      50             :     sal_uInt32 _fillColor;
      51             :     sal_Int16 _visualEffect;
      52             : 
      53             :     // current highest mask: 0x40
      54             :     short _all;
      55             :     short _set;
      56             : 
      57             :     OUString _id;
      58             : 
      59          28 :     Style( short all_ )
      60             :         : _backgroundColor(0)
      61             :         , _textColor(0)
      62             :         , _textLineColor(0)
      63             :         , _border(0)
      64             :         , _borderColor(0)
      65             :         , _fontRelief(css::awt::FontRelief::NONE)
      66             :         , _fontEmphasisMark(css::awt::FontEmphasisMark::NONE)
      67             :         , _fillColor(0)
      68             :         , _visualEffect(0)
      69             :         , _all(all_)
      70          28 :         , _set(0)
      71             :     {
      72          28 :     }
      73             : 
      74             :     css::uno::Reference< css::xml::sax::XAttributeList > createElement();
      75             : };
      76          10 : class StyleBag
      77             : {
      78             :     ::std::vector< Style * > _styles;
      79             : 
      80             : public:
      81             :     ~StyleBag() ;
      82             : 
      83             :     OUString getStyleId( Style const & rStyle );
      84             : 
      85             :     void dump( css::uno::Reference< css::xml::sax::XExtendedDocumentHandler >
      86             :                const & xOut );
      87             : };
      88             : 
      89         132 : class ElementDescriptor
      90             :     : public ::xmlscript::XMLElement
      91             : {
      92             :     css::uno::Reference< css::beans::XPropertySet > _xProps;
      93             :     css::uno::Reference< css::beans::XPropertyState > _xPropState;
      94             :     css::uno::Reference< css::frame::XModel > _xDocument;
      95             : 
      96             : public:
      97          50 :     inline ElementDescriptor(
      98             :         css::uno::Reference< css::beans::XPropertySet > const & xProps,
      99             :         css::uno::Reference< css::beans::XPropertyState > const & xPropState,
     100             :         OUString const & name, css::uno::Reference< css::frame::XModel > const & xDocument )
     101             :         : XMLElement( name )
     102             :         , _xProps( xProps )
     103             :         , _xPropState( xPropState )
     104          50 :         , _xDocument( xDocument )
     105          50 :         {}
     106          16 :     inline ElementDescriptor(
     107             :         OUString const & name )
     108          16 :         : XMLElement( name )
     109          16 :         {}
     110             : 
     111             :     template<typename T>
     112             :     inline void read(
     113             :         OUString const & propName, OUString const & attrName,
     114             :         bool forceAttribute = false );
     115             : 
     116             :     template<typename T>
     117             :     inline bool readProp( T * ret, OUString const & rPropName );
     118             :     css::uno::Any readProp( OUString const & rPropName );
     119             :     void readScrollableSettings();
     120             :     void readDefaults( bool supportPrintable = true, bool supportVisible = true );
     121             :     void readStringAttr(
     122             :         OUString const & rPropName, OUString const & rAttrName );
     123           0 :     inline void readDoubleAttr(
     124             :         OUString const & rPropName, OUString const & rAttrName )
     125           0 :         { read<double>( rPropName, rAttrName ); }
     126          68 :     inline void readLongAttr(
     127             :         OUString const & rPropName, OUString const & rAttrName,
     128             :         bool forceAttribute = false )
     129          68 :         { read<sal_Int32>( rPropName, rAttrName, forceAttribute ); }
     130             :     void readHexLongAttr(
     131             :         OUString const & rPropName, OUString const & rAttrName );
     132          42 :     inline void readShortAttr(
     133             :         OUString const & rPropName, OUString const & rAttrName )
     134          42 :         { read<sal_Int32>( rPropName, rAttrName ); }
     135             :     inline void readBoolAttr(
     136             :         OUString const & rPropName, OUString const & rAttrName );
     137             : 
     138             :     void readAlignAttr(
     139             :         OUString const & rPropName, OUString const & rAttrName );
     140             :     void readVerticalAlignAttr(
     141             :         OUString const & rPropName, OUString const & rAttrName );
     142             :     void readImageURLAttr(
     143             :         OUString const & rPropName, OUString const & rAttrName );
     144             :     void readImageAlignAttr(
     145             :         OUString const & rPropName, OUString const & rAttrName );
     146             :     void readImagePositionAttr(
     147             :         OUString const & rPropName, OUString const & rAttrName );
     148             :     void readDateAttr(
     149             :         OUString const & rPropName, OUString const & rAttrName );
     150             :     void readDateFormatAttr(
     151             :         OUString const & rPropName, OUString const & rAttrName );
     152             :     void readTimeAttr(
     153             :         OUString const & rPropName, OUString const & rAttrName );
     154             :     void readTimeFormatAttr(
     155             :         OUString const & rPropName, OUString const & rAttrName );
     156             :     void readOrientationAttr(
     157             :         OUString const & rPropName, OUString const & rAttrName );
     158             :     void readButtonTypeAttr(
     159             :         OUString const & rPropName, OUString const & rAttrName );
     160             :     void readLineEndFormatAttr(
     161             :         OUString const & rPropName, OUString const & rAttrName );
     162             :     void readSelectionTypeAttr(
     163             :         OUString const & rPropName, OUString const & rAttrName );
     164             :     void readDataAwareAttr(
     165             :         OUString const & rAttrName );
     166           0 :     inline void addBoolAttr(
     167             :         OUString const & rAttrName, bool bValue )
     168           0 :         { addAttribute( rAttrName, OUString::boolean(bValue) ); }
     169             :     void addNumberFormatAttr(
     170             :         css::uno::Reference< css::beans::XPropertySet >
     171             :         const & xFormatProperties );
     172             : 
     173             :     void readEvents();
     174             :     void readDialogModel( StyleBag * all_styles );
     175             :     void readBullitinBoard( StyleBag * all_styles );
     176             :     void readMultiPageModel( StyleBag * all_styles );
     177             :     void readFrameModel( StyleBag * all_styles );
     178             :     void readPageModel( StyleBag * all_styles );
     179             :     void readButtonModel( StyleBag * all_styles );
     180             :     void readEditModel( StyleBag * all_styles );
     181             :     void readCheckBoxModel( StyleBag * all_styles );
     182             :     void readRadioButtonModel( StyleBag * all_styles );
     183             :     void readComboBoxModel( StyleBag * all_styles );
     184             :     void readCurrencyFieldModel( StyleBag * all_styles );
     185             :     void readDateFieldModel( StyleBag * all_styles );
     186             :     void readFileControlModel( StyleBag * all_styles );
     187             :     void readTreeControlModel( StyleBag * all_styles );
     188             :     void readFixedTextModel( StyleBag * all_styles );
     189             :     void readGroupBoxModel( StyleBag * all_styles );
     190             :     void readImageControlModel( StyleBag * all_styles );
     191             :     void readListBoxModel( StyleBag * all_styles );
     192             :     void readNumericFieldModel( StyleBag * all_styles );
     193             :     void readPatternFieldModel( StyleBag * all_styles );
     194             :     void readFormattedFieldModel( StyleBag * all_styles );
     195             :     void readTimeFieldModel( StyleBag * all_styles );
     196             :     void readFixedLineModel( StyleBag * all_styles );
     197             :     void readProgressBarModel( StyleBag * all_styles );
     198             :     void readScrollBarModel( StyleBag * all_styles );
     199             :     void readSpinButtonModel( StyleBag * all_styles );
     200             :     void readFixedHyperLinkModel( StyleBag * all_styles );
     201             : };
     202             : 
     203             : template<typename T>
     204         110 : inline void ElementDescriptor::read(
     205             :     OUString const & propName, OUString const & attrName,
     206             :     bool forceAttribute )
     207             : {
     208         220 :     if (forceAttribute ||
     209             :         css::beans::PropertyState_DEFAULT_VALUE !=
     210         110 :         _xPropState->getPropertyState( propName ))
     211             :     {
     212          20 :         css::uno::Any a( _xProps->getPropertyValue( propName ) );
     213          20 :         T v = T();
     214          20 :         if (a >>= v)
     215          20 :             addAttribute( attrName, OUString::number(v) );
     216             :         else
     217          20 :             OSL_FAIL( "### unexpected property type!" );
     218             :     }
     219         110 : }
     220             : 
     221             : template<>
     222         158 : inline void ElementDescriptor::read<sal_Bool>(
     223             :     OUString const & propName, OUString const & attrName,
     224             :     bool forceAttribute )
     225             : {
     226         316 :     if (forceAttribute ||
     227             :         css::beans::PropertyState_DEFAULT_VALUE !=
     228         158 :         _xPropState->getPropertyState( propName ))
     229             :     {
     230          40 :         css::uno::Any a( _xProps->getPropertyValue( propName ) );
     231             :         bool v;
     232          40 :         if (a >>= v)
     233          40 :             addAttribute( attrName, OUString::boolean(v) );
     234             :         else
     235          40 :             OSL_FAIL( "### unexpected property type!" );
     236             :     }
     237         158 : }
     238             : 
     239         158 : inline void ElementDescriptor::readBoolAttr(
     240             :     OUString const & rPropName, OUString const & rAttrName )
     241             : {
     242         158 :     read<sal_Bool>( rPropName, rAttrName );
     243         158 : }
     244             : 
     245             : template<typename T>
     246          96 : inline bool ElementDescriptor::readProp(
     247             :     T * ret, OUString const & rPropName )
     248             : {
     249          96 :     _xProps->getPropertyValue( rPropName ) >>= *ret;
     250             :     return css::beans::PropertyState_DEFAULT_VALUE !=
     251          96 :         _xPropState->getPropertyState( rPropName );
     252             : }
     253             : 
     254             : }
     255             : 
     256             : #endif // INCLUDED_XMLSCRIPT_SOURCE_XMLDLG_IMEXP_EXP_SHARE_HXX
     257             : 
     258             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10