LibreOffice Module oox (master) 1
textfont.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#ifndef INCLUDED_OOX_DRAWINGML_TEXTFONT_HXX
21#define INCLUDED_OOX_DRAWINGML_TEXTFONT_HXX
22
23#include <rtl/ustring.hxx>
24
25namespace oox { class AttributeList; }
26namespace oox::core { class XmlFilterBase; }
27namespace model { struct ThemeFont; }
28
29namespace oox::drawingml {
30
31
34{
35public:
36 explicit TextFont();
37
39 void setAttributes( const AttributeList& rAttribs );
40
42 void setAttributes( const OUString& rFontName );
43
45 void assignIfUsed( const TextFont& rTextFont );
46
49 bool getFontData(
50 OUString& rFontName,
51 sal_Int16& rnFontPitch,
52 sal_Int16& rnFontFamily,
53 const ::oox::core::XmlFilterBase& rFilter ) const;
54
55 void fillThemeFont(model::ThemeFont& rThemeFont) const;
56
57 static void resolvePitch(sal_Int32 nOoxPitch, sal_Int16& rnFontPitch, sal_Int16& rnFontFamily);
58
59private:
60 bool implGetFontData(
61 OUString& rFontName,
62 sal_Int16& rnFontPitch,
63 sal_Int16& rnFontFamily ) const;
64
65private:
66 OUString maTypeface;
67 OUString maPanose;
68 sal_Int32 mnPitchFamily;
69 sal_Int32 mnCharset;
70};
71
72
73} // namespace oox::drawingml
74
75#endif
76
77/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Provides access to attribute values of an element.
carries a CT_TextFont
Definition: textfont.hxx:34
bool implGetFontData(OUString &rFontName, sal_Int16 &rnFontPitch, sal_Int16 &rnFontFamily) const
Definition: textfont.cxx:87
void assignIfUsed(const TextFont &rTextFont)
Overwrites this text font with the passed text font, if it is used.
Definition: textfont.cxx:73
void setAttributes(const AttributeList &rAttribs)
Sets attributes from the passed attribute list.
Definition: textfont.cxx:57
static void resolvePitch(sal_Int32 nOoxPitch, sal_Int16 &rnFontPitch, sal_Int16 &rnFontFamily)
Definition: textfont.cxx:102
void fillThemeFont(model::ThemeFont &rThemeFont) const
Definition: textfont.cxx:94
bool getFontData(OUString &rFontName, sal_Int16 &rnFontPitch, sal_Int16 &rnFontFamily, const ::oox::core::XmlFilterBase &rFilter) const
Returns the font name, pitch, and family; tries to resolve theme placeholder names,...
Definition: textfont.cxx:79