fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / oox / source / drawingml / textfont.cxx
blobb689d830836e5fa63a673618fc113595653fbf02
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "drawingml/textfont.hxx"
21 #include <com/sun/star/awt/FontFamily.hpp>
22 #include <com/sun/star/awt/FontPitch.hpp>
23 #include "oox/drawingml/theme.hxx"
24 #include "oox/core/xmlfilterbase.hxx"
25 #include "oox/helper/attributelist.hxx"
27 using ::oox::core::XmlFilterBase;
29 namespace oox {
30 namespace drawingml {
32 namespace {
34 sal_Int16 lclGetFontPitch( sal_Int32 nOoxValue )
36 using namespace ::com::sun::star::awt::FontPitch;
37 static const sal_Int16 spnFontPitch[] = { DONTKNOW, FIXED, VARIABLE };
38 return STATIC_ARRAY_SELECT( spnFontPitch, nOoxValue, DONTKNOW );
41 sal_Int16 lclGetFontFamily( sal_Int32 nOoxValue )
43 using namespace ::com::sun::star::awt::FontFamily;
44 static const sal_Int16 spnFontFamily[] = { DONTKNOW, ROMAN, SWISS, MODERN, SCRIPT, DECORATIVE };
45 return STATIC_ARRAY_SELECT( spnFontFamily, nOoxValue, DONTKNOW );
48 } // namespace
50 TextFont::TextFont() :
51 mnPitch( 0 ),
52 mnCharset( WINDOWS_CHARSET_ANSI )
56 void TextFont::setAttributes( const AttributeList& rAttribs )
58 maTypeface = rAttribs.getString( XML_typeface, OUString() );
59 maPanose = rAttribs.getString( XML_panose, OUString() );
60 mnPitch = rAttribs.getInteger( XML_pitchFamily, 0 );
61 mnCharset = rAttribs.getInteger( XML_charset, WINDOWS_CHARSET_DEFAULT );
64 void TextFont::setAttributes( const OUString& sFontName )
66 maTypeface = sFontName;
67 maPanose.clear();
68 mnPitch = 0;
69 mnCharset = WINDOWS_CHARSET_DEFAULT;
72 void TextFont::assignIfUsed( const TextFont& rTextFont )
74 if( !rTextFont.maTypeface.isEmpty() )
75 *this = rTextFont;
78 bool TextFont::getFontData( OUString& rFontName, sal_Int16& rnFontPitch, sal_Int16& rnFontFamily, const XmlFilterBase& rFilter ) const
80 if( const Theme* pTheme = rFilter.getCurrentTheme() )
81 if( const TextFont* pFont = pTheme->resolveFont( maTypeface ) )
82 return pFont->implGetFontData( rFontName, rnFontPitch, rnFontFamily );
83 return implGetFontData( rFontName, rnFontPitch, rnFontFamily );
86 bool TextFont::implGetFontData( OUString& rFontName, sal_Int16& rnFontPitch, sal_Int16& rnFontFamily ) const
88 rFontName = maTypeface;
89 rnFontPitch = lclGetFontPitch( extractValue< sal_Int16 >( mnPitch, 0, 4 ) );
90 rnFontFamily = lclGetFontFamily( extractValue< sal_Int16 >( mnPitch, 4, 4 ) );
91 return !rFontName.isEmpty();
94 } // namespace drawingml
95 } // namespace oox
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */