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

271 lines
8.6 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-11-14 09:19:45 +00:00
#include <o3tl/sorted_vector.hxx>
#include <tools/fontenum.hxx>
#include "xmloff/xmlnmspe.hxx"
#include <xmloff/xmltoken.hxx>
#include <xmloff/xmluconv.hxx>
2000-11-14 09:19:45 +00:00
#include "fonthdl.hxx"
#include <xmloff/xmlexp.hxx>
#include <xmloff/XMLFontAutoStylePool.hxx>
2000-11-14 09:19:45 +00:00
using ::rtl::OUString;
using ::rtl::OUStringBuffer;
2000-11-14 09:19:45 +00:00
using namespace ::com::sun::star::uno;
using namespace ::xmloff::token;
2000-11-14 09:19:45 +00:00
class XMLFontAutoStylePoolEntry_Impl
{
OUString sName;
OUString sFamilyName;
OUString sStyleName;
sal_Int16 nFamily;
sal_Int16 nPitch;
rtl_TextEncoding eEnc;
public:
inline XMLFontAutoStylePoolEntry_Impl(
const ::rtl::OUString& rName,
const ::rtl::OUString& rFamilyName,
const ::rtl::OUString& rStyleName,
sal_Int16 nFamily,
sal_Int16 nPitch,
rtl_TextEncoding eEnc );
inline XMLFontAutoStylePoolEntry_Impl(
const ::rtl::OUString& rFamilyName,
const ::rtl::OUString& rStyleName,
sal_Int16 nFamily,
sal_Int16 nPitch,
rtl_TextEncoding eEnc );
const OUString& GetName() const { return sName; }
const OUString& GetFamilyName() const { return sFamilyName; }
const OUString& GetStyleName() const { return sStyleName; }
sal_Int16 GetFamily() const { return nFamily; }
sal_Int16 GetPitch() const { return nPitch; }
rtl_TextEncoding GetEncoding() const { return eEnc; }
};
inline XMLFontAutoStylePoolEntry_Impl::XMLFontAutoStylePoolEntry_Impl(
const ::rtl::OUString& rName,
const ::rtl::OUString& rFamilyName,
const ::rtl::OUString& rStyleName,
sal_Int16 nFam,
sal_Int16 nP,
rtl_TextEncoding eE ) :
sName( rName ),
sFamilyName( rFamilyName ),
sStyleName( rStyleName ),
nFamily( nFam ),
nPitch( nP ),
eEnc( eE )
{
}
inline XMLFontAutoStylePoolEntry_Impl::XMLFontAutoStylePoolEntry_Impl(
const ::rtl::OUString& rFamilyName,
const ::rtl::OUString& rStyleName,
sal_Int16 nFam,
sal_Int16 nP,
rtl_TextEncoding eE ) :
sFamilyName( rFamilyName ),
sStyleName( rStyleName ),
nFamily( nFam ),
nPitch( nP ),
eEnc( eE )
{
}
struct XMLFontAutoStylePoolEntryCmp_Impl {
bool operator()(
XMLFontAutoStylePoolEntry_Impl* const& r1,
XMLFontAutoStylePoolEntry_Impl* const& r2 ) const
2000-11-14 09:19:45 +00:00
{
sal_Int8 nEnc1(r1->GetEncoding() != RTL_TEXTENCODING_SYMBOL);
sal_Int8 nEnc2(r2->GetEncoding() != RTL_TEXTENCODING_SYMBOL);
if( nEnc1 != nEnc2 )
return nEnc1 < nEnc2;
else if( r1->GetPitch() != r2->GetPitch() )
return r1->GetPitch() < r2->GetPitch();
else if( r1->GetFamily() != r2->GetFamily() )
return r1->GetFamily() < r2->GetFamily();
2000-11-14 09:19:45 +00:00
else
{
sal_Int32 nCmp = r1->GetFamilyName().compareTo( r2->GetFamilyName() );
if( 0 == nCmp )
return r1->GetStyleName().compareTo( r2->GetStyleName() ) < 0;
else
return nCmp < 0;
}
2000-11-14 09:19:45 +00:00
}
};
2000-11-14 09:19:45 +00:00
class XMLFontAutoStylePool_Impl : public o3tl::sorted_vector<XMLFontAutoStylePoolEntry_Impl*, XMLFontAutoStylePoolEntryCmp_Impl>
{
public:
~XMLFontAutoStylePool_Impl() { DeleteAndDestroyAll(); }
};
2000-11-14 09:19:45 +00:00
XMLFontAutoStylePool::XMLFontAutoStylePool( SvXMLExport& rExp ) :
rExport( rExp ),
pPool( new XMLFontAutoStylePool_Impl )
2000-11-14 09:19:45 +00:00
{
}
XMLFontAutoStylePool::~XMLFontAutoStylePool()
{
delete pPool;
}
OUString XMLFontAutoStylePool::Add(
const OUString& rFamilyName,
const OUString& rStyleName,
sal_Int16 nFamily,
sal_Int16 nPitch,
rtl_TextEncoding eEnc )
{
OUString sPoolName;
2000-11-14 09:19:45 +00:00
XMLFontAutoStylePoolEntry_Impl aTmp( rFamilyName, rStyleName, nFamily,
nPitch, eEnc );
XMLFontAutoStylePool_Impl::const_iterator it = pPool->find( &aTmp );
if( it != pPool->end() )
2000-11-14 09:19:45 +00:00
{
sPoolName = (*it)->GetName();
2000-11-14 09:19:45 +00:00
}
else
{
OUString sName;
sal_Int32 nLen = rFamilyName.indexOf( sal_Unicode(';'), 0 );
if( -1 == nLen )
{
sName = rFamilyName;
}
else if( nLen > 0 )
{
sName = rFamilyName.copy( 0, nLen );
sName = sName.trim();
2000-11-14 09:19:45 +00:00
}
if( sName.isEmpty() )
2000-11-14 09:19:45 +00:00
sName = OUString::valueOf( sal_Unicode( 'F' ) );
if( m_aNames.find(sName) != m_aNames.end() )
2000-11-14 09:19:45 +00:00
{
sal_Int32 nCount = 1;
OUString sPrefix( sName );
sName += OUString::valueOf( nCount );
while( m_aNames.find(sName) != m_aNames.end() )
2000-11-14 09:19:45 +00:00
{
sName = sPrefix;
sName += OUString::valueOf( ++nCount );
}
}
XMLFontAutoStylePoolEntry_Impl *pEntry =
new XMLFontAutoStylePoolEntry_Impl( sName, rFamilyName, rStyleName,
nFamily, nPitch, eEnc );
pPool->insert( pEntry );
m_aNames.insert(sName);
2000-11-14 09:19:45 +00:00
}
return sPoolName;
2000-11-14 09:19:45 +00:00
}
::rtl::OUString XMLFontAutoStylePool::Find(
const OUString& rFamilyName,
const OUString& rStyleName,
sal_Int16 nFamily,
sal_Int16 nPitch,
rtl_TextEncoding eEnc ) const
{
OUString sName;
XMLFontAutoStylePoolEntry_Impl aTmp( rFamilyName, rStyleName, nFamily,
nPitch, eEnc );
XMLFontAutoStylePool_Impl::const_iterator it = pPool->find( &aTmp );
if( it != pPool->end() )
2000-11-14 09:19:45 +00:00
{
sName = (*it)->GetName();
2000-11-14 09:19:45 +00:00
}
return sName;
}
void XMLFontAutoStylePool::exportXML()
{
SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_OFFICE,
XML_FONT_FACE_DECLS,
2000-11-14 09:19:45 +00:00
sal_True, sal_True );
Any aAny;
OUString sTmp;
XMLFontFamilyNamePropHdl aFamilyNameHdl;
XMLFontFamilyPropHdl aFamilyHdl;
XMLFontPitchPropHdl aPitchHdl;
XMLFontEncodingPropHdl aEncHdl;
const SvXMLUnitConverter& rUnitConv = GetExport().GetMM100UnitConverter();
sal_uInt32 nCount = pPool->size();
2000-11-14 09:19:45 +00:00
for( sal_uInt32 i=0; i<nCount; i++ )
{
const XMLFontAutoStylePoolEntry_Impl *pEntry = (*pPool)[ i ];
2000-11-14 09:19:45 +00:00
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_NAME, pEntry->GetName() );
2000-11-14 09:19:45 +00:00
aAny <<= pEntry->GetFamilyName();
if( aFamilyNameHdl.exportXML( sTmp, aAny, rUnitConv ) )
GetExport().AddAttribute( XML_NAMESPACE_SVG,
XML_FONT_FAMILY, sTmp );
2000-11-14 09:19:45 +00:00
const OUString& rStyleName = pEntry->GetStyleName();
if( !rStyleName.isEmpty() )
2000-11-14 09:19:45 +00:00
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_FONT_ADORNMENTS,
2000-11-14 09:19:45 +00:00
rStyleName );
aAny <<= (sal_Int16)pEntry->GetFamily();
if( aFamilyHdl.exportXML( sTmp, aAny, rUnitConv ) )
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_FONT_FAMILY_GENERIC, sTmp );
2000-11-14 09:19:45 +00:00
aAny <<= (sal_Int16)pEntry->GetPitch();
if( aPitchHdl.exportXML( sTmp, aAny, rUnitConv ) )
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_FONT_PITCH, sTmp );
2000-11-14 09:19:45 +00:00
aAny <<= (sal_Int16)pEntry->GetEncoding();
if( aEncHdl.exportXML( sTmp, aAny, rUnitConv ) )
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_FONT_CHARSET, sTmp );
2000-11-14 09:19:45 +00:00
SvXMLElementExport aElement( GetExport(), XML_NAMESPACE_STYLE,
XML_FONT_FACE,
2000-11-14 09:19:45 +00:00
sal_True, sal_True );
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */