LibreOffice Module oox (master) 1
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
22#include <oox/token/namespaces.hxx>
23#include <oox/token/tokens.hxx>
26
27using namespace ::oox::core;
28using namespace ::com::sun::star::xml::sax;
29using namespace ::com::sun::star::uno;
30
31namespace oox::drawingml {
32
33 TextSpacingContext::TextSpacingContext( ContextHandler2Helper const & rParent, TextSpacing & aSpacing )
34 : ContextHandler2( rParent )
35 , maSpacing( aSpacing )
36 {
37 maSpacing.bHasValue = true;
38 }
39
41 const AttributeList& rAttribs )
42 {
43 switch( aElement )
44 {
45 case A_TOKEN( spcPct ):
47 maSpacing.nValue = GetPercent( rAttribs.getStringDefaulted( XML_val ) );
48 break;
49 case A_TOKEN( spcPts ):
53 break;
54 default:
55 break;
56 }
57
58 return this;
59 }
60
61}
62
63/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Provides access to attribute values of an element.
OUString getStringDefaulted(sal_Int32 nAttrToken) const
Returns the string value of the specified attribute, returns an empty string if attribute not present...
virtual ::oox::core::ContextHandlerRef onCreateContext(::sal_Int32 Element, const ::oox::AttributeList &rAttribs) override
TextSpacingContext(::oox::core::ContextHandler2Helper const &rParent, TextSpacing &aSpacing)
carries a CT_TextSpacing
Definition: textspacing.hxx:32
sal_Int32 GetTextSpacingPoint(std::u16string_view sValue)
converts the ST_TextSpacingPoint to 1/100mm
sal_Int32 GetPercent(std::u16string_view sValue)
converts a ST_Percentage % string into 1/1000th of %