tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / oox / source / drawingml / textspacingcontext.cxx
blobac30d40836fe742dbc1d3105ac4b9649a44abc5a
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 <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"
27 using namespace ::oox::core;
28 using namespace ::com::sun::star::xml::sax;
30 namespace oox::drawingml {
32 TextSpacingContext::TextSpacingContext( ContextHandler2Helper const & rParent, TextSpacing & aSpacing )
33 : ContextHandler2( rParent )
34 , maSpacing( aSpacing )
36 maSpacing.bHasValue = true;
39 ContextHandlerRef TextSpacingContext::onCreateContext( ::sal_Int32 aElement,
40 const AttributeList& rAttribs )
42 switch( aElement )
44 case A_TOKEN( spcPct ):
45 maSpacing.nUnit = TextSpacing::Unit::Percent;
46 maSpacing.nValue = GetPercent( rAttribs.getStringDefaulted( XML_val ) );
47 break;
48 case A_TOKEN( spcPts ):
49 maSpacing.nUnit = TextSpacing::Unit::Points;
50 maSpacing.nValue = GetTextSpacingPoint( rAttribs.getStringDefaulted( XML_val ) );
51 maSpacing.bExactValue = true;
52 break;
53 default:
54 break;
57 return this;
62 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */