/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * 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 . */ #include "xmlHelper.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "xmlstrings.hrc" #include "xmlEnums.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define XML_RPT_ALGINMENT (XML_DB_TYPES_START+1) namespace rptxml { using namespace ::xmloff::token; using namespace ::com::sun::star::awt; using namespace ::com::sun::star; using namespace ::com::sun::star::sdb; using namespace ::com::sun::star::form; using namespace ::com::sun::star::beans; OPropertyHandlerFactory::OPropertyHandlerFactory() { } OPropertyHandlerFactory::~OPropertyHandlerFactory() { } const XMLPropertyHandler* OPropertyHandlerFactory::GetPropertyHandler(sal_Int32 _nType) const { const XMLPropertyHandler* pHandler = nullptr; sal_Int32 nType = _nType; nType &= MID_FLAG_MASK; switch(nType) { case XML_RPT_ALGINMENT: { static SvXMLEnumMapEntry const pXML_VerticalAlign_Enum[] = { { XML_TOP, style::VerticalAlignment_TOP }, { XML_MIDDLE, style::VerticalAlignment_MIDDLE }, { XML_BOTTOM, style::VerticalAlignment_BOTTOM }, { XML_TOKEN_INVALID, 0 } }; pHandler = new XMLEnumPropertyHdl( pXML_VerticalAlign_Enum, cppu::UnoType::get()); } break; case (XML_SD_TYPES_START+34): pHandler = new xmloff::ImageScaleModeHandler(); default: ; } if ( !pHandler ) pHandler = OControlPropertyHandlerFactory::GetPropertyHandler(_nType); else PutHdlCache(nType, pHandler); return pHandler; } #define MAP_CONST_T_ASCII( name, prefix, token, type, context ) { name, sizeof(name)-1, XML_NAMESPACE_##prefix, XML_##token, type|XML_TYPE_PROP_TABLE, context, SvtSaveOptions::ODFVER_010, false } #define MAP_CONST_P_ASCII( name, prefix, token, type, context ) { name, sizeof(name)-1, XML_NAMESPACE_##prefix, XML_##token, type|XML_TYPE_PROP_PARAGRAPH, context, SvtSaveOptions::ODFVER_010, false } #define MAP_CONST_S( name, prefix, token, type, context ) { name, sizeof(name)-1, XML_NAMESPACE_##prefix, XML_##token, type|XML_TYPE_PROP_SECTION, context, SvtSaveOptions::ODFVER_010, false } #define MAP_CONST_C_ASCII( name, prefix, token, type, context ) { name, sizeof(name)-1, XML_NAMESPACE_##prefix, XML_##token, type|XML_TYPE_PROP_TABLE_CELL, context, SvtSaveOptions::ODFVER_010, false } #define MAP_END() { nullptr, 0, 0, XML_TOKEN_INVALID, 0 ,0, SvtSaveOptions::ODFVER_010, false} rtl::Reference < XMLPropertySetMapper > OXMLHelper::GetCellStylePropertyMap(bool _bOldFormat, bool bForExport) { if ( _bOldFormat ) { static const XMLPropertyMapEntry s_aXMLCellStylesProperties[] = { MAP_CONST_C_ASCII( PROPERTY_FORMATKEY, STYLE, DATA_STYLE_NAME, XML_TYPE_NUMBER | MID_FLAG_SPECIAL_ITEM, CTF_RPT_NUMBERFORMAT ), MAP_CONST_C_ASCII( PROPERTY_CONTROLBACKGROUND, FO, BACKGROUND_COLOR, XML_TYPE_COLORTRANSPARENT|MID_FLAG_MULTI_PROPERTY, 0 ), MAP_CONST_C_ASCII( PROPERTY_VERTICALALIGN, STYLE, VERTICAL_ALIGN, XML_RPT_ALGINMENT, 0 ), MAP_CONST_C_ASCII( PROPERTY_CONTROLBACKGROUNDTRANSPARENT, FO, BACKGROUND_COLOR, XML_TYPE_ISTRANSPARENT|MID_FLAG_MERGE_ATTRIBUTE, 0 ), MAP_CONST_P_ASCII( PROPERTY_CONTROLBACKGROUND, FO, BACKGROUND_COLOR, XML_TYPE_COLORTRANSPARENT|MID_FLAG_MULTI_PROPERTY, 0 ), MAP_CONST_P_ASCII( PROPERTY_CONTROLBACKGROUNDTRANSPARENT, FO, BACKGROUND_COLOR, XML_TYPE_ISTRANSPARENT|MID_FLAG_MERGE_ATTRIBUTE, 0 ), MAP_CONST_C_ASCII( "BorderLeft", FO, BORDER_LEFT, XML_TYPE_BORDER, 0 ), MAP_CONST_C_ASCII( "BorderRight", FO, BORDER_RIGHT, XML_TYPE_BORDER, 0 ), MAP_CONST_C_ASCII( "BorderTop", FO, BORDER_TOP, XML_TYPE_BORDER, 0 ), MAP_CONST_C_ASCII( "BorderBottom", FO, BORDER_BOTTOM, XML_TYPE_BORDER, 0 ), MAP_END() }; return new XMLPropertySetMapper(s_aXMLCellStylesProperties,new OPropertyHandlerFactory(), bForExport); } else { static const XMLPropertyMapEntry s_aXMLCellStylesProperties[] = { MAP_CONST_C_ASCII( PROPERTY_FORMATKEY, STYLE, DATA_STYLE_NAME, XML_TYPE_NUMBER | MID_FLAG_SPECIAL_ITEM, CTF_RPT_NUMBERFORMAT ), MAP_CONST_C_ASCII( PROPERTY_CONTROLBACKGROUND, FO, BACKGROUND_COLOR, XML_TYPE_COLORTRANSPARENT|MID_FLAG_MULTI_PROPERTY, 0 ), MAP_CONST_C_ASCII( PROPERTY_CONTROLBACKGROUNDTRANSPARENT, FO, BACKGROUND_COLOR, XML_TYPE_ISTRANSPARENT|MID_FLAG_MERGE_ATTRIBUTE, 0 ), MAP_CONST_C_ASCII( PROPERTY_VERTICALALIGN, STYLE, VERTICAL_ALIGN, XML_RPT_ALGINMENT, 0 ), MAP_CONST_C_ASCII( "BorderLeft", FO, BORDER_LEFT, XML_TYPE_BORDER, 0 ), MAP_CONST_C_ASCII( "BorderRight", FO, BORDER_RIGHT, XML_TYPE_BORDER, 0 ), MAP_CONST_C_ASCII( "BorderTop", FO, BORDER_TOP, XML_TYPE_BORDER, 0 ), MAP_CONST_C_ASCII( "BorderBottom", FO, BORDER_BOTTOM, XML_TYPE_BORDER, 0 ), MAP_END() }; return new XMLPropertySetMapper(s_aXMLCellStylesProperties,new OPropertyHandlerFactory(), bForExport); } } const XMLPropertyMapEntry* OXMLHelper::GetTableStyleProps() { static const XMLPropertyMapEntry aXMLTableStylesProperties[] = { MAP_CONST_T_ASCII( PROPERTY_BACKCOLOR, FO, BACKGROUND_COLOR, XML_TYPE_COLORTRANSPARENT|MID_FLAG_MULTI_PROPERTY, 0 ), MAP_CONST_T_ASCII( PROPERTY_BACKTRANSPARENT,FO, BACKGROUND_COLOR, XML_TYPE_ISTRANSPARENT | MID_FLAG_MERGE_ATTRIBUTE, 0 ), MAP_END() }; return aXMLTableStylesProperties; } const XMLPropertyMapEntry* OXMLHelper::GetRowStyleProps() { static const XMLPropertyMapEntry aXMLStylesProperties[] = { MAP_CONST_S( "Height", STYLE, ROW_HEIGHT, XML_TYPE_PROP_TABLE_ROW|XML_TYPE_MEASURE, 0), MAP_END() }; return aXMLStylesProperties; } const XMLPropertyMapEntry* OXMLHelper::GetColumnStyleProps() { static const XMLPropertyMapEntry aXMLColumnStylesProperties[] = { MAP_CONST_S( "Width", STYLE, COLUMN_WIDTH, XML_TYPE_PROP_TABLE_COLUMN|XML_TYPE_MEASURE, 0 ), MAP_END() }; return aXMLColumnStylesProperties; } const SvXMLEnumMapEntry* OXMLHelper::GetReportPrintOptions() { static const SvXMLEnumMapEntry s_aXML_EnumMap[] = { { XML_NOT_WITH_REPORT_HEADER, report::ReportPrintOption::NOT_WITH_REPORT_HEADER }, { XML_NOT_WITH_REPORT_FOOTER, report::ReportPrintOption::NOT_WITH_REPORT_FOOTER }, { XML_NOT_WITH_REPORT_HEADER_NOR_FOOTER, report::ReportPrintOption::NOT_WITH_REPORT_HEADER_FOOTER }, { XML_TOKEN_INVALID, 0 } }; return s_aXML_EnumMap; } const SvXMLEnumMapEntry* OXMLHelper::GetForceNewPageOptions() { static const SvXMLEnumMapEntry s_aXML_EnumMap[] = { { XML_BEFORE_SECTION, report::ForceNewPage::BEFORE_SECTION }, { XML_AFTER_SECTION, report::ForceNewPage::AFTER_SECTION }, { XML_BEFORE_AFTER_SECTION, report::ForceNewPage::BEFORE_AFTER_SECTION }, { XML_TOKEN_INVALID, 0 } }; return s_aXML_EnumMap; } const SvXMLEnumMapEntry* OXMLHelper::GetKeepTogetherOptions() { static const SvXMLEnumMapEntry s_aXML_EnumMap[] = { { XML_WHOLE_GROUP, report::KeepTogether::WHOLE_GROUP }, { XML_WITH_FIRST_DETAIL, report::KeepTogether::WITH_FIRST_DETAIL }, { XML_TOKEN_INVALID, 0 } }; return s_aXML_EnumMap; } const SvXMLEnumMapEntry* OXMLHelper::GetCommandTypeOptions() { static const SvXMLEnumMapEntry s_aXML_EnumMap[] = { { XML_TABLE, CommandType::TABLE }, { XML_QUERY, CommandType::QUERY }, { XML_TOKEN_INVALID, 0 } }; return s_aXML_EnumMap; } #define PROPERTY_ID_FONTNAME 1 #define PROPERTY_ID_FONTHEIGHT 2 #define PROPERTY_ID_FONTWIDTH 3 #define PROPERTY_ID_FONTSTYLENAME 4 #define PROPERTY_ID_FONTFAMILY 5 #define PROPERTY_ID_FONTCHARSET 6 #define PROPERTY_ID_FONTPITCH 7 #define PROPERTY_ID_FONTCHARWIDTH 8 #define PROPERTY_ID_FONTWEIGHT 9 #define PROPERTY_ID_FONTSLANT 10 #define PROPERTY_ID_FONTUNDERLINE 11 #define PROPERTY_ID_FONTSTRIKEOUT 12 #define PROPERTY_ID_FONTORIENTATION 13 #define PROPERTY_ID_FONTKERNING 14 #define PROPERTY_ID_FONTWORDLINEMODE 15 #define PROPERTY_ID_FONTTYPE 16 void OXMLHelper::copyStyleElements(const bool _bOld,const OUString& _sStyleName,const SvXMLStylesContext* _pAutoStyles,const uno::Reference& _xProp) { if ( !_xProp.is() || _sStyleName.isEmpty() || !_pAutoStyles ) return; XMLPropStyleContext* pAutoStyle = const_cast(dynamic_cast< const XMLPropStyleContext *>(_pAutoStyles->FindStyleChildContext(XML_STYLE_FAMILY_TABLE_CELL,_sStyleName))); if ( pAutoStyle ) { css::awt::FontDescriptor aFont; static comphelper::PropertyMapEntry const pMap[] = { {OUString(PROPERTY_FONTNAME), PROPERTY_ID_FONTNAME, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_CHARFONTHEIGHT), PROPERTY_ID_FONTHEIGHT, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_FONTWIDTH), PROPERTY_ID_FONTWIDTH, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_FONTSTYLENAME), PROPERTY_ID_FONTSTYLENAME, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_FONTFAMILY), PROPERTY_ID_FONTFAMILY, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_FONTCHARSET), PROPERTY_ID_FONTCHARSET, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_FONTPITCH), PROPERTY_ID_FONTPITCH, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_FONTCHARWIDTH), PROPERTY_ID_FONTCHARWIDTH, cppu::UnoType::get(),PropertyAttribute::BOUND,0}, {OUString(PROPERTY_FONTWEIGHT), PROPERTY_ID_FONTWEIGHT, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_CHARPOSTURE), PROPERTY_ID_FONTSLANT, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_FONTUNDERLINE), PROPERTY_ID_FONTUNDERLINE, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_CHARSTRIKEOUT), PROPERTY_ID_FONTSTRIKEOUT, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_FONTORIENTATION), PROPERTY_ID_FONTORIENTATION, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_FONTKERNING), PROPERTY_ID_FONTKERNING, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_CHARWORDMODE), PROPERTY_ID_FONTWORDLINEMODE, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, {OUString(PROPERTY_FONTTYPE), PROPERTY_ID_FONTTYPE, cppu::UnoType::get() ,PropertyAttribute::BOUND,0}, { OUString(), 0, css::uno::Type(), 0, 0 } }; try { pAutoStyle->FillPropertySet(_xProp); if ( _bOld && _xProp->getPropertySetInfo()->hasPropertyByName(PROPERTY_CHARHIDDEN) ) _xProp->setPropertyValue(PROPERTY_CHARHIDDEN,uno::makeAny(false)); uno::Reference xProp = comphelper::GenericPropertySet_CreateInstance(new comphelper::PropertySetInfo(pMap)); pAutoStyle->FillPropertySet(xProp); xProp->getPropertyValue(PROPERTY_FONTNAME) >>= aFont.Name; xProp->getPropertyValue(PROPERTY_CHARFONTHEIGHT) >>= aFont.Height; xProp->getPropertyValue(PROPERTY_FONTWIDTH) >>= aFont.Width; xProp->getPropertyValue(PROPERTY_FONTSTYLENAME) >>= aFont.StyleName; xProp->getPropertyValue(PROPERTY_FONTFAMILY) >>= aFont.Family; xProp->getPropertyValue(PROPERTY_FONTCHARSET) >>= aFont.CharSet; xProp->getPropertyValue(PROPERTY_FONTPITCH) >>= aFont.Pitch; xProp->getPropertyValue(PROPERTY_FONTCHARWIDTH) >>= aFont.CharacterWidth; xProp->getPropertyValue(PROPERTY_FONTWEIGHT) >>= aFont.Weight; xProp->getPropertyValue(PROPERTY_CHARPOSTURE) >>= aFont.Slant; xProp->getPropertyValue(PROPERTY_FONTUNDERLINE) >>= aFont.Underline; xProp->getPropertyValue(PROPERTY_CHARSTRIKEOUT) >>= aFont.Strikeout; xProp->getPropertyValue(PROPERTY_FONTORIENTATION) >>= aFont.Orientation; xProp->getPropertyValue(PROPERTY_FONTKERNING) >>= aFont.Kerning; xProp->getPropertyValue(PROPERTY_CHARWORDMODE) >>= aFont.WordLineMode; xProp->getPropertyValue(PROPERTY_FONTTYPE) >>= aFont.Type; uno::Reference xReportControlModel(_xProp,uno::UNO_QUERY); if ( xReportControlModel.is() && !aFont.Name.isEmpty() ) { try { xReportControlModel->setFontDescriptor(aFont); } catch(const beans::UnknownPropertyException &){} } } catch(uno::Exception&) { OSL_FAIL("OXMLHelper::copyStyleElements -> exception catched"); } } } uno::Reference OXMLHelper::createBorderPropertySet() { static comphelper::PropertyMapEntry const pMap[] = { {OUString(PROPERTY_BORDERLEFT), 0, cppu::UnoType::get(),PropertyAttribute::BOUND,0}, {OUString(PROPERTY_BORDERRIGHT), 1, cppu::UnoType::get(),PropertyAttribute::BOUND,0}, {OUString(PROPERTY_BORDERTOP), 2, cppu::UnoType::get(),PropertyAttribute::BOUND,0}, {OUString(PROPERTY_BORDERBOTTOM), 3, cppu::UnoType::get(),PropertyAttribute::BOUND,0}, { OUString(), 0, css::uno::Type(), 0, 0 } }; return comphelper::GenericPropertySet_CreateInstance(new comphelper::PropertySetInfo(pMap)); } SvXMLTokenMap* OXMLHelper::GetReportElemTokenMap() { static const SvXMLTokenMapEntry aElemTokenMap[]= { { XML_NAMESPACE_REPORT, XML_REPORT_HEADER, XML_TOK_REPORT_HEADER }, { XML_NAMESPACE_REPORT, XML_PAGE_HEADER , XML_TOK_PAGE_HEADER }, { XML_NAMESPACE_REPORT, XML_GROUP, XML_TOK_GROUP }, { XML_NAMESPACE_REPORT, XML_DETAIL , XML_TOK_DETAIL }, { XML_NAMESPACE_REPORT, XML_PAGE_FOOTER , XML_TOK_PAGE_FOOTER }, { XML_NAMESPACE_REPORT, XML_REPORT_FOOTER, XML_TOK_REPORT_FOOTER }, { XML_NAMESPACE_REPORT, XML_HEADER_ON_NEW_PAGE, XML_TOK_HEADER_ON_NEW_PAGE }, { XML_NAMESPACE_REPORT, XML_FOOTER_ON_NEW_PAGE, XML_TOK_FOOTER_ON_NEW_PAGE }, { XML_NAMESPACE_REPORT, XML_COMMAND_TYPE, XML_TOK_COMMAND_TYPE }, { XML_NAMESPACE_REPORT, XML_COMMAND, XML_TOK_COMMAND }, { XML_NAMESPACE_REPORT, XML_FILTER, XML_TOK_FILTER }, { XML_NAMESPACE_REPORT, XML_CAPTION, XML_TOK_CAPTION }, { XML_NAMESPACE_REPORT, XML_ESCAPE_PROCESSING, XML_TOK_ESCAPE_PROCESSING }, { XML_NAMESPACE_REPORT, XML_FUNCTION, XML_TOK_REPORT_FUNCTION }, { XML_NAMESPACE_OFFICE, XML_MIMETYPE, XML_TOK_REPORT_MIMETYPE }, { XML_NAMESPACE_DRAW, XML_NAME, XML_TOK_REPORT_NAME }, { XML_NAMESPACE_REPORT, XML_MASTER_DETAIL_FIELDS, XML_TOK_MASTER_DETAIL_FIELDS }, { XML_NAMESPACE_DRAW, XML_FRAME, XML_TOK_SUB_FRAME }, XML_TOKEN_MAP_END }; return new SvXMLTokenMap( aElemTokenMap ); } SvXMLTokenMap* OXMLHelper::GetSubDocumentElemTokenMap() { static const SvXMLTokenMapEntry aElemTokenMap[]= { { XML_NAMESPACE_REPORT, XML_MASTER_DETAIL_FIELD, XML_TOK_MASTER_DETAIL_FIELD}, { XML_NAMESPACE_REPORT, XML_MASTER, XML_TOK_MASTER}, { XML_NAMESPACE_REPORT, XML_DETAIL, XML_TOK_SUB_DETAIL}, XML_TOKEN_MAP_END }; return new SvXMLTokenMap( aElemTokenMap ); } const SvXMLEnumMapEntry* OXMLHelper::GetImageScaleOptions() { static const SvXMLEnumMapEntry s_aXML_EnumMap[] = { { XML_ISOTROPIC, awt::ImageScaleMode::ISOTROPIC }, { XML_ANISOTROPIC, awt::ImageScaleMode::ANISOTROPIC }, { XML_TOKEN_INVALID, 0 } }; return s_aXML_EnumMap; } } // rptxml /* vim:set shiftwidth=4 softtabstop=4 expandtab: */