LibreOffice Module oox (master)
1
oox
source
drawingml
textspacingcontext.cxx
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
#include <
oox/drawingml/drawingmltypes.hxx
>
21
#include <
oox/helper/attributelist.hxx
>
22
#include <oox/token/namespaces.hxx>
23
#include <oox/token/tokens.hxx>
24
#include <
drawingml/textspacing.hxx
>
25
#include "
textspacingcontext.hxx
"
26
27
using namespace
::
oox::core
;
28
using namespace
::
com::sun::star::xml::sax
;
29
using namespace
::
com::sun::star::uno
;
30
31
namespace
oox::drawingml
{
32
33
TextSpacingContext::TextSpacingContext
( ContextHandler2Helper
const
& rParent,
TextSpacing
& aSpacing )
34
:
ContextHandler2
( rParent )
35
, maSpacing( aSpacing )
36
{
37
maSpacing
.
bHasValue
=
true
;
38
}
39
40
ContextHandlerRef
TextSpacingContext::onCreateContext
( ::sal_Int32 aElement,
41
const
AttributeList
& rAttribs )
42
{
43
switch
( aElement )
44
{
45
case
A_TOKEN( spcPct ):
46
maSpacing
.
nUnit
=
TextSpacing::Unit::Percent
;
47
maSpacing
.
nValue
=
GetPercent
( rAttribs.
getStringDefaulted
( XML_val ) );
48
break
;
49
case
A_TOKEN( spcPts ):
50
maSpacing
.
nUnit
=
TextSpacing::Unit::Points
;
51
maSpacing
.
nValue
=
GetTextSpacingPoint
( rAttribs.
getStringDefaulted
( XML_val ) );
52
maSpacing
.
bExactValue
=
true
;
53
break
;
54
default
:
55
break
;
56
}
57
58
return
this
;
59
}
60
61
}
62
63
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
attributelist.hxx
oox::AttributeList
Provides access to attribute values of an element.
Definition:
attributelist.hxx:83
oox::AttributeList::getStringDefaulted
OUString getStringDefaulted(sal_Int32 nAttrToken) const
Returns the string value of the specified attribute, returns an empty string if attribute not present...
Definition:
attributelist.cxx:181
oox::core::ContextHandler2
Definition:
contexthandler2.hxx:240
oox::drawingml::TextSpacingContext::maSpacing
TextSpacing & maSpacing
Definition:
textspacingcontext.hxx:38
oox::drawingml::TextSpacingContext::onCreateContext
virtual ::oox::core::ContextHandlerRef onCreateContext(::sal_Int32 Element, const ::oox::AttributeList &rAttribs) override
Definition:
textspacingcontext.cxx:40
oox::drawingml::TextSpacingContext::TextSpacingContext
TextSpacingContext(::oox::core::ContextHandler2Helper const &rParent, TextSpacing &aSpacing)
Definition:
textspacingcontext.cxx:33
oox::drawingml::TextSpacing
carries a CT_TextSpacing
Definition:
textspacing.hxx:32
oox::drawingml::TextSpacing::Unit::Points
@ Points
oox::drawingml::TextSpacing::Unit::Percent
@ Percent
oox::drawingml::TextSpacing::nValue
sal_Int32 nValue
Definition:
textspacing.hxx:63
oox::drawingml::TextSpacing::nUnit
Unit nUnit
Definition:
textspacing.hxx:62
oox::drawingml::TextSpacing::bExactValue
bool bExactValue
Definition:
textspacing.hxx:65
oox::drawingml::TextSpacing::bHasValue
bool bHasValue
Definition:
textspacing.hxx:64
rtl::Reference
drawingmltypes.hxx
com::sun::star::uno
com::sun::star::xml::sax
oox::core
oox::drawingml
oox::drawingml::GetTextSpacingPoint
sal_Int32 GetTextSpacingPoint(std::u16string_view sValue)
converts the ST_TextSpacingPoint to 1/100mm
Definition:
drawingmltypes.cxx:96
oox::drawingml::GetPercent
sal_Int32 GetPercent(std::u16string_view sValue)
converts a ST_Percentage % string into 1/1000th of %
Definition:
drawingmltypes.cxx:64
textspacing.hxx
textspacingcontext.hxx
Generated on Sun Jul 30 2023 04:44:11 for LibreOffice Module oox (master) by
1.9.3