Files
libreoffice/xmloff/source/style/xmltabi.cxx

239 lines
8.1 KiB
C++
Raw Normal View History

/* -*- 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 .
*/
2000-09-18 16:07:07 +00:00
#include <com/sun/star/style/TabAlign.hpp>
#include <o3tl/make_unique.hxx>
2000-09-18 16:07:07 +00:00
#include <rtl/ustrbuf.hxx>
#include <xmloff/xmltkmap.hxx>
#include <xmloff/nmspmap.hxx>
#include <xmloff/xmlnmspe.hxx>
#include <xmloff/xmlimp.hxx>
2000-09-18 16:07:07 +00:00
#include <com/sun/star/style/TabStop.hpp>
#include <xmloff/xmltoken.hxx>
#include <xmloff/i18nmap.hxx>
#include <xmloff/xmluconv.hxx>
#include <xmltabi.hxx>
2000-09-18 16:07:07 +00:00
using namespace ::com::sun::star;
using namespace ::xmloff::token;
2000-09-18 16:07:07 +00:00
enum SvXMLTokenMapAttrs
{
XML_TOK_TABSTOP_POSITION,
XML_TOK_TABSTOP_TYPE,
XML_TOK_TABSTOP_CHAR,
XML_TOK_TABSTOP_LEADER_STYLE,
XML_TOK_TABSTOP_LEADER_TEXT
2000-09-18 16:07:07 +00:00
};
static const SvXMLTokenMapEntry aTabsAttributesAttrTokenMap[] =
2000-09-18 16:07:07 +00:00
{
{ XML_NAMESPACE_STYLE, XML_POSITION, XML_TOK_TABSTOP_POSITION },
{ XML_NAMESPACE_STYLE, XML_TYPE, XML_TOK_TABSTOP_TYPE },
{ XML_NAMESPACE_STYLE, XML_CHAR, XML_TOK_TABSTOP_CHAR },
{ XML_NAMESPACE_STYLE, XML_LEADER_TEXT, XML_TOK_TABSTOP_LEADER_TEXT },
{ XML_NAMESPACE_STYLE, XML_LEADER_STYLE, XML_TOK_TABSTOP_LEADER_STYLE },
2000-09-18 16:07:07 +00:00
XML_TOKEN_MAP_END
};
2000-09-18 16:07:07 +00:00
class SvxXMLTabStopContext_Impl : public SvXMLImportContext
{
private:
style::TabStop aTabStop;
public:
SvxXMLTabStopContext_Impl( SvXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName,
const uno::Reference< xml::sax::XAttributeList > & xAttrList );
virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix,
2000-09-18 16:07:07 +00:00
const OUString& rLocalName,
const uno::Reference< xml::sax::XAttributeList > & xAttrList ) override;
2000-09-18 16:07:07 +00:00
const style::TabStop& getTabStop() const { return aTabStop; }
};
SvxXMLTabStopContext_Impl::SvxXMLTabStopContext_Impl(
SvXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName,
const uno::Reference< xml::sax::XAttributeList > & xAttrList )
: SvXMLImportContext( rImport, nPrfx, rLName )
{
aTabStop.Position = 0;
aTabStop.Alignment = style::TabAlign_LEFT;
aTabStop.DecimalChar = ',';
aTabStop.FillChar = ' ';
sal_Unicode cTextFillChar = 0;
2000-09-18 16:07:07 +00:00
SvXMLTokenMap aTokenMap( aTabsAttributesAttrTokenMap );
sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
for( sal_Int16 i=0; i < nAttrCount; i++ )
{
const OUString& rAttrName = xAttrList->getNameByIndex( i );
OUString aLocalName;
sal_uInt16 nPrefix =
GetImport().GetNamespaceMap().GetKeyByAttrName( rAttrName,
&aLocalName );
const OUString& rValue = xAttrList->getValueByIndex( i );
sal_Int32 nVal;
switch( aTokenMap.Get( nPrefix, aLocalName ) )
{
case XML_TOK_TABSTOP_POSITION:
if (GetImport().GetMM100UnitConverter().convertMeasureToCore(
nVal, rValue))
{
2000-09-18 16:07:07 +00:00
aTabStop.Position = nVal;
}
2000-09-18 16:07:07 +00:00
break;
case XML_TOK_TABSTOP_TYPE:
if( IsXMLToken( rValue, XML_LEFT ) )
2000-09-18 16:07:07 +00:00
{
aTabStop.Alignment = style::TabAlign_LEFT;
}
else if( IsXMLToken( rValue, XML_RIGHT ) )
2000-09-18 16:07:07 +00:00
{
aTabStop.Alignment = style::TabAlign_RIGHT;
}
else if( IsXMLToken( rValue, XML_CENTER ) )
2000-09-18 16:07:07 +00:00
{
aTabStop.Alignment = style::TabAlign_CENTER;
}
else if( IsXMLToken( rValue, XML_CHAR ) )
2000-09-18 16:07:07 +00:00
{
aTabStop.Alignment = style::TabAlign_DECIMAL;
}
else if( IsXMLToken( rValue, XML_DEFAULT ) )
2001-01-05 09:02:58 +00:00
{
aTabStop.Alignment = style::TabAlign_DEFAULT;
}
2000-09-18 16:07:07 +00:00
break;
case XML_TOK_TABSTOP_CHAR:
if( !rValue.isEmpty() )
2000-09-18 16:07:07 +00:00
aTabStop.DecimalChar = rValue[0];
break;
case XML_TOK_TABSTOP_LEADER_STYLE:
if( IsXMLToken( rValue, XML_NONE ) )
aTabStop.FillChar = ' ';
else if( IsXMLToken( rValue, XML_DOTTED ) )
aTabStop.FillChar = '.';
else
aTabStop.FillChar = '_';
break;
case XML_TOK_TABSTOP_LEADER_TEXT:
if( !rValue.isEmpty() )
cTextFillChar = rValue[0];
2000-09-18 16:07:07 +00:00
break;
}
}
if( cTextFillChar != 0 && aTabStop.FillChar != ' ' )
aTabStop.FillChar = cTextFillChar;
2000-09-18 16:07:07 +00:00
}
SvXMLImportContextRef SvxXMLTabStopContext_Impl::CreateChildContext(
2000-09-18 16:07:07 +00:00
sal_uInt16 nPrefix,
const OUString& rLocalName,
const uno::Reference< xml::sax::XAttributeList > & )
2000-09-18 16:07:07 +00:00
{
return new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
}
SvxXMLTabStopImportContext::SvxXMLTabStopImportContext(
SvXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName,
const XMLPropertyState& rProp,
::std::vector< XMLPropertyState > &rProps )
: XMLElementPropertyContext( rImport, nPrfx, rLName, rProp, rProps )
2000-09-18 16:07:07 +00:00
{
}
SvXMLImportContextRef SvxXMLTabStopImportContext::CreateChildContext(
2000-09-18 16:07:07 +00:00
sal_uInt16 nPrefix,
const OUString& rLocalName,
const uno::Reference< xml::sax::XAttributeList > & xAttrList )
{
SvXMLImportContext *pContext = nullptr;
2000-09-18 16:07:07 +00:00
if( XML_NAMESPACE_STYLE == nPrefix && IsXMLToken( rLocalName, XML_TAB_STOP ) )
2000-09-18 16:07:07 +00:00
{
// create new tabstop import context
const rtl::Reference<SvxXMLTabStopContext_Impl> xTabStopContext{
2000-09-18 16:07:07 +00:00
new SvxXMLTabStopContext_Impl( GetImport(), nPrefix, rLocalName,
xAttrList )};
2000-09-18 16:07:07 +00:00
// add new tabstop to array of tabstops
if( !mpTabStops )
mpTabStops = o3tl::make_unique<SvxXMLTabStopArray_Impl>();
2000-09-18 16:07:07 +00:00
mpTabStops->push_back( xTabStopContext );
2000-09-18 16:07:07 +00:00
pContext = xTabStopContext.get();
2000-09-18 16:07:07 +00:00
}
else
{
pContext = new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
}
return pContext;
}
void SvxXMLTabStopImportContext::EndElement( )
{
2012-04-14 23:28:36 +02:00
sal_uInt16 nCount = mpTabStops ? mpTabStops->size() : 0;
uno::Sequence< style::TabStop> aSeq( nCount );
2000-09-18 16:07:07 +00:00
if( mpTabStops )
{
2001-01-26 06:44:26 +00:00
sal_uInt16 nNewCount = 0;
2000-09-18 16:07:07 +00:00
style::TabStop* pTabStops = aSeq.getArray();
for( sal_uInt16 i=0; i < nCount; i++ )
{
SvxXMLTabStopContext_Impl *pTabStopContext = (*mpTabStops)[i].get();
2001-01-05 09:02:58 +00:00
const style::TabStop& rTabStop = pTabStopContext->getTabStop();
bool bDflt = style::TabAlign_DEFAULT == rTabStop.Alignment;
2001-01-05 09:02:58 +00:00
if( !bDflt || 0==i )
{
*pTabStops++ = pTabStopContext->getTabStop();
nNewCount++;
}
if( bDflt && 0==i )
break;
2000-09-18 16:07:07 +00:00
}
2001-01-05 09:02:58 +00:00
if( nCount != nNewCount )
aSeq.realloc( nNewCount );
2000-09-18 16:07:07 +00:00
}
aProp.maValue <<= aSeq;
2000-09-18 16:07:07 +00:00
SetInsert( true );
2000-09-18 16:07:07 +00:00
XMLElementPropertyContext::EndElement();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */