1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
|
/* -*- 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 <sal/config.h>
#include <string_view>
#include "fonthdl.hxx"
#include <sax/tools/converter.hxx>
#include <xmloff/xmltoken.hxx>
#include <xmloff/xmluconv.hxx>
#include <xmloff/xmlement.hxx>
#include <rtl/ustrbuf.hxx>
#include <com/sun/star/uno/Any.hxx>
#include <tools/fontenum.hxx>
using namespace ::com::sun::star;
using namespace ::xmloff::token;
static const SvXMLEnumMapEntry<FontFamily>* lcl_getFontFamilyGenericMapping()
{
static SvXMLEnumMapEntry<FontFamily> const aFontFamilyGenericMapping[] =
{
{ XML_DECORATIVE, FAMILY_DECORATIVE },
{ XML_MODERN, FAMILY_MODERN },
{ XML_ROMAN, FAMILY_ROMAN },
{ XML_SCRIPT, FAMILY_SCRIPT },
{ XML_SWISS, FAMILY_SWISS },
{ XML_SYSTEM, FAMILY_SYSTEM },
{ XML_TOKEN_INVALID, FontFamily(0) }
};
return aFontFamilyGenericMapping;
}
SvXMLEnumMapEntry<FontPitch> const aFontPitchMapping[] =
{
{ XML_FIXED, PITCH_FIXED },
{ XML_VARIABLE, PITCH_VARIABLE },
{ XML_TOKEN_INVALID, FontPitch(0) }
};
XMLFontFamilyNamePropHdl::~XMLFontFamilyNamePropHdl()
{
// Nothing to do
}
bool XMLFontFamilyNamePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
{
bool bRet = false;
OUStringBuffer sValue;
sal_Int32 nPos = 0;
do
{
sal_Int32 nFirst = nPos;
nPos = ::sax::Converter::indexOfComma( rStrImpValue, nPos );
sal_Int32 nLast = (-1 == nPos ? rStrImpValue.getLength() - 1 : nPos - 1);
// skip trailing blanks
while( nLast > nFirst && ' ' == rStrImpValue[nLast] )
nLast--;
// skip leading blanks
while(nFirst <= nLast && ' ' == rStrImpValue[nFirst])
nFirst++;
// remove quotes
sal_Unicode c = nFirst > nLast ? 0 : rStrImpValue[nFirst];
if( nFirst < nLast && ('\'' == c || '\"' == c) && rStrImpValue[nLast] == c )
{
nFirst++;
nLast--;
}
if( nFirst <= nLast )
{
if( !sValue.isEmpty() )
sValue.append(';');
sValue.append(rStrImpValue.subView(nFirst, nLast-nFirst+1));
}
if( -1 != nPos )
nPos++;
}
while( -1 != nPos );
if (!sValue.isEmpty())
{
rValue <<= sValue.makeStringAndClear();
bRet = true;
}
return bRet;
}
bool XMLFontFamilyNamePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
{
bool bRet = false;
OUString aStrFamilyName;
if( rValue >>= aStrFamilyName )
{
OUStringBuffer sValue( aStrFamilyName.getLength() + 2 );
sal_Int32 nPos = 0;
do
{
sal_Int32 nFirst = nPos;
nPos = aStrFamilyName.indexOf( ';', nPos );
sal_Int32 nLast = (-1 == nPos ? aStrFamilyName.getLength() : nPos);
// Set position to the character behind the ';', so we won't
// forget this.
if( -1 != nPos )
nPos++;
// If the property value was empty, we stop now.
// If there is a ';' at the first position, the empty name
// at the start will be removed.
if( 0 == nLast )
continue;
// nFirst and nLast now denote the first and last character of
// one font name.
nLast--;
// skip trailing blanks
while( nLast > nFirst && ' ' == aStrFamilyName[nLast] )
nLast--;
// skip leading blanks
while( nFirst <= nLast && ' ' == aStrFamilyName[nFirst] )
nFirst++;
if( nFirst <= nLast )
{
if( !sValue.isEmpty() )
sValue.append( ", " );
sal_Int32 nLen = nLast-nFirst+1;
std::u16string_view sFamily( aStrFamilyName.subView( nFirst, nLen ) );
bool bQuote = false;
for( sal_Int32 i=0; i < nLen; i++ )
{
sal_Unicode c = sFamily[i];
if( ' ' == c || ',' == c )
{
bQuote = true;
break;
}
}
if( bQuote )
sValue.append( '\'' );
sValue.append( sFamily );
if( bQuote )
sValue.append( '\'' );
}
}
while( -1 != nPos );
rStrExpValue = sValue.makeStringAndClear();
bRet = true;
}
return bRet;
}
XMLFontFamilyPropHdl::~XMLFontFamilyPropHdl()
{
// Nothing to do
}
bool XMLFontFamilyPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
{
FontFamily eNewFamily;
bool bRet = SvXMLUnitConverter::convertEnum( eNewFamily, rStrImpValue, lcl_getFontFamilyGenericMapping() );
if( bRet )
rValue <<= static_cast<sal_Int16>(eNewFamily);
return bRet;
}
bool XMLFontFamilyPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
{
bool bRet = false;
OUStringBuffer aOut;
sal_Int16 nFamily = sal_Int16();
if( rValue >>= nFamily )
{
FontFamily eFamily = static_cast<FontFamily>(nFamily);
if( eFamily != FAMILY_DONTKNOW )
bRet = SvXMLUnitConverter::convertEnum( aOut, eFamily, lcl_getFontFamilyGenericMapping() );
}
rStrExpValue = aOut.makeStringAndClear();
return bRet;
}
XMLFontEncodingPropHdl::~XMLFontEncodingPropHdl()
{
// Nothing to do
}
bool XMLFontEncodingPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
{
if( IsXMLToken( rStrImpValue, XML_X_SYMBOL ) )
rValue <<= sal_Int16(RTL_TEXTENCODING_SYMBOL);
return true;
}
bool XMLFontEncodingPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
{
bool bRet = false;
sal_Int16 nSet = sal_Int16();
if( rValue >>= nSet )
{
if( static_cast<rtl_TextEncoding>(nSet) == RTL_TEXTENCODING_SYMBOL )
{
rStrExpValue = GetXMLToken(XML_X_SYMBOL);
bRet = true;
}
}
return bRet;
}
XMLFontPitchPropHdl::~XMLFontPitchPropHdl()
{
// Nothing to do
}
bool XMLFontPitchPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
{
FontPitch eNewPitch;
bool bRet = SvXMLUnitConverter::convertEnum( eNewPitch, rStrImpValue, aFontPitchMapping );
if( bRet )
rValue <<= static_cast<sal_Int16>(eNewPitch);
return bRet;
}
bool XMLFontPitchPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
{
bool bRet = false;
sal_Int16 nPitch = sal_Int16();
FontPitch ePitch = PITCH_DONTKNOW;
if( rValue >>= nPitch )
ePitch = static_cast<FontPitch>(nPitch);
if( PITCH_DONTKNOW != ePitch )
{
OUStringBuffer aOut;
bRet = SvXMLUnitConverter::convertEnum( aOut, ePitch, aFontPitchMapping, XML_FIXED );
rStrExpValue = aOut.makeStringAndClear();
}
return bRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|