/* -*- 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 "xmlCell.hxx" #include "xmlHelper.hxx" #include #include "xmlfilter.hxx" #include #include #include #include "xmlEnums.hxx" #include "xmlStyleImport.hxx" #include #include #include #include #include #include #include "xmlTable.hxx" #include "xmlFormattedField.hxx" #include "xmlImage.hxx" #include "xmlFixedContent.hxx" #include "xmlSubDocument.hxx" namespace rptxml { using namespace ::comphelper; using namespace ::com::sun::star; using namespace uno; using namespace beans; using namespace xml::sax; OXMLCell::OXMLCell( ORptFilter& rImport ,sal_uInt16 nPrfx ,const OUString& _sLocalName ,const Reference< XAttributeList > & _xAttrList ,OXMLTable* _pContainer ,OXMLCell* _pCell) : SvXMLImportContext( rImport, nPrfx, _sLocalName ) ,m_pContainer(_pContainer) ,m_pCell(_pCell) ,m_nCurrentCount(0) ,m_bContainsShape(false) { if ( !m_pCell ) m_pCell = this; OSL_ENSURE(_xAttrList.is(),"Attribute list is NULL!"); const SvXMLNamespaceMap& rMap = rImport.GetNamespaceMap(); const SvXMLTokenMap& rTokenMap = rImport.GetColumnTokenMap(); const sal_Int16 nLength = (_xAttrList.is()) ? _xAttrList->getLength() : 0; for(sal_Int16 i = 0; i < nLength; ++i) { OUString sLocalName; const OUString sAttrName = _xAttrList->getNameByIndex( i ); const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( sAttrName,&sLocalName ); const OUString sValue = _xAttrList->getValueByIndex( i ); switch( rTokenMap.Get( nPrefix, sLocalName ) ) { case XML_TOK_COLUMN_STYLE_NAME: m_sStyleName = sValue; break; case XML_TOK_NUMBER_COLUMNS_SPANNED: m_pContainer->setColumnSpanned(sValue.toInt32()); break; case XML_TOK_NUMBER_ROWS_SPANNED: m_pContainer->setRowSpanned(sValue.toInt32()); break; default: break; } } } OXMLCell::~OXMLCell() { } SvXMLImportContextRef OXMLCell::CreateChildContext( sal_uInt16 _nPrefix, const OUString& _rLocalName, const Reference< XAttributeList > & xAttrList ) { SvXMLImportContext *pContext = nullptr; ORptFilter& rImport = GetOwnImport(); const SvXMLTokenMap& rTokenMap = rImport.GetCellElemTokenMap(); Reference xFactor(rImport.GetModel(),uno::UNO_QUERY); static const char s_sStringConcat[] = " & "; const sal_uInt16 nToken = rTokenMap.Get( _nPrefix, _rLocalName ); switch( nToken ) { case XML_TOK_FIXED_CONTENT: { rImport.GetProgressBarHelper()->Increment( PROGRESS_BAR_STEP ); pContext = new OXMLFixedContent( rImport, _nPrefix, _rLocalName,*m_pCell,m_pContainer); } break; case XML_TOK_PAGE_NUMBER: m_sText += OUStringLiteral(s_sStringConcat) + " PageNumber()"; break; case XML_TOK_PAGE_COUNT: m_sText += OUStringLiteral(s_sStringConcat) + " PageCount()"; break; case XML_TOK_FORMATTED_TEXT: { rImport.GetProgressBarHelper()->Increment( PROGRESS_BAR_STEP ); uno::Reference< uno::XInterface> xInt = xFactor->createInstance(SERVICE_FORMATTEDFIELD); Reference< report::XFormattedField > xControl(xInt,uno::UNO_QUERY); OSL_ENSURE(xControl.is(),"Could not create FormattedField!"); setComponent(xControl.get()); if ( xControl.is() ) pContext = new OXMLFormattedField( rImport, _nPrefix, _rLocalName,xAttrList,xControl.get(),m_pContainer,XML_TOK_PAGE_COUNT == nToken); } break; case XML_TOK_IMAGE: { rImport.GetProgressBarHelper()->Increment( PROGRESS_BAR_STEP ); Reference< XImageControl > xControl(xFactor->createInstance(SERVICE_IMAGECONTROL),uno::UNO_QUERY); OSL_ENSURE(xControl.is(),"Could not create ImageControl!"); setComponent(xControl.get()); if ( xControl.is() ) pContext = new OXMLImage( rImport, _nPrefix, _rLocalName,xAttrList,xControl.get(),m_pContainer); } break; case XML_TOK_SUB_DOCUMENT: { rImport.GetProgressBarHelper()->Increment( PROGRESS_BAR_STEP ); if ( !m_bContainsShape ) m_nCurrentCount = m_pContainer->getSection()->getCount(); uno::Reference< uno::XInterface> xInt = xFactor->createInstance(SERVICE_FORMATTEDFIELD); Reference< report::XFormattedField > xControl(xInt,uno::UNO_QUERY); pContext = new OXMLSubDocument( rImport, _nPrefix, _rLocalName,xControl.get(),m_pContainer, this /* give the current cell as parent*/ ); } break; case XML_TOK_P: pContext = new OXMLCell( rImport, _nPrefix, _rLocalName,xAttrList ,m_pContainer,this); break; case XML_TOK_CUSTOM_SHAPE: case XML_TOK_FRAME: { if ( !m_bContainsShape ) m_nCurrentCount = m_pContainer->getSection()->getCount(); rtl::Reference< XMLShapeImportHelper > xShapeImportHelper = rImport.GetShapeImport(); uno::Reference< drawing::XShapes > xShapes = m_pContainer->getSection().get(); pContext = xShapeImportHelper->CreateGroupChildContext(rImport,_nPrefix,_rLocalName,xAttrList,xShapes); m_bContainsShape = true; } break; default: break; } if ( m_xComponent.is() ) m_pContainer->addCell(m_xComponent); if( !pContext ) pContext = new SvXMLImportContext( GetImport(), _nPrefix, _rLocalName ); return pContext; } void OXMLCell::EndElement() { if ( m_bContainsShape ) { const sal_Int32 nCount = m_pContainer->getSection()->getCount(); for (sal_Int32 i = m_nCurrentCount; i < nCount; ++i) { uno::Reference xShape(m_pContainer->getSection()->getByIndex(i),uno::UNO_QUERY); if ( xShape.is() ) m_pContainer->addCell(xShape.get()); } } if ( m_pCell != this && !m_sText.isEmpty() ) { ORptFilter& rImport = GetOwnImport(); Reference xFactor(rImport.GetModel(),uno::UNO_QUERY); uno::Reference< uno::XInterface> xInt = xFactor->createInstance(SERVICE_FORMATTEDFIELD); Reference< report::XFormattedField > xControl(xInt,uno::UNO_QUERY); xControl->setDataField("rpt:" + m_sText); OSL_ENSURE(xControl.is(),"Could not create FormattedField!"); setComponent(xControl.get()); m_xComponent = xControl.get(); m_pContainer->getSection()->add(m_xComponent.get()); m_pContainer->addCell(m_xComponent); } // check if we have a FixedLine else if ( !m_sStyleName.isEmpty() && !m_xComponent.is() && m_pCell == this ) { ORptFilter& rImport = GetOwnImport(); Reference xFactor(rImport.GetModel(),uno::UNO_QUERY); Reference xFixedLine(xFactor->createInstance(SERVICE_FIXEDLINE),uno::UNO_QUERY); m_xComponent = xFixedLine.get(); m_pContainer->getSection()->add(m_xComponent.get()); m_pContainer->addCell(m_xComponent); XMLPropStyleContext* pAutoStyle = const_cast(dynamic_cast< const XMLPropStyleContext* >(GetImport().GetAutoStyles()->FindStyleChildContext(XML_STYLE_FAMILY_TABLE_CELL,m_sStyleName))); if ( pAutoStyle ) { uno::Reference xBorderProp = OXMLHelper::createBorderPropertySet(); try { pAutoStyle->FillPropertySet(xBorderProp); table::BorderLine2 aRight,aLeft; xBorderProp->getPropertyValue(PROPERTY_BORDERRIGHT) >>= aRight; xBorderProp->getPropertyValue(PROPERTY_BORDERLEFT) >>= aLeft; const sal_Int16 rWidth = (aRight.LineWidth == 0) ? aRight.OuterLineWidth : aRight.LineWidth; const sal_Int16 lWidth = (aLeft.LineWidth == 0) ? aLeft.OuterLineWidth : aLeft.LineWidth; xFixedLine->setOrientation( (rWidth != 0 || lWidth != 0) ? 1 : 0); } catch(uno::Exception&) { OSL_FAIL("OXMLCell::EndElement -> exception caught"); } } } else OXMLHelper::copyStyleElements(GetOwnImport().isOldFormat(),m_sStyleName,GetImport().GetAutoStyles(),m_xComponent.get()); } ORptFilter& OXMLCell::GetOwnImport() { return static_cast(GetImport()); } void OXMLCell::setComponent(const uno::Reference< report::XReportComponent >& _xComponent) { m_pCell->m_xComponent = _xComponent; m_xComponent = _xComponent; } void OXMLCell::Characters( const OUString& rChars ) { if ( !rChars.isEmpty() ) { static const char s_Quote[] = "\""; if ( !m_sText.isEmpty() ) { m_sText += " & "; } m_sText += s_Quote + rChars + s_Quote; } } void OXMLCell::setContainsShape(bool _bContainsShape) { m_bContainsShape = _bContainsShape; } } // namespace rptxml /* vim:set shiftwidth=4 softtabstop=4 expandtab: */