Coverage Report

Created: 2025-07-07 10:01

/src/libreoffice/oox/source/drawingml/textfieldcontext.cxx
Line
Count
Source (jump to first uncovered line)
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 <drawingml/textfieldcontext.hxx>
21
#include <drawingml/textparagraphpropertiescontext.hxx>
22
#include <drawingml/textcharacterpropertiescontext.hxx>
23
#include <drawingml/textfield.hxx>
24
#include <oox/helper/attributelist.hxx>
25
#include <oox/token/namespaces.hxx>
26
#include <oox/token/tokens.hxx>
27
28
using namespace ::oox::core;
29
30
namespace oox::drawingml {
31
32
TextFieldContext::TextFieldContext( ContextHandler2Helper const & rParent,
33
            const AttributeList& rAttributes,
34
            TextField& rTextField)
35
27.8k
    : ContextHandler2( rParent )
36
27.8k
        , mrTextField( rTextField )
37
27.8k
        , mbIsInText( false )
38
27.8k
{
39
27.8k
    mrTextField.setUuid( rAttributes.getStringDefaulted( XML_id ) );
40
27.8k
    mrTextField.setType( rAttributes.getStringDefaulted( XML_type ) );
41
27.8k
}
42
43
void TextFieldContext::onEndElement( )
44
55.6k
{
45
55.6k
    if( getCurrentElement() == (A_TOKEN( t )) )
46
27.8k
    {
47
27.8k
        mbIsInText = false;
48
27.8k
    }
49
55.6k
}
50
51
void TextFieldContext::onCharacters( const OUString& aChars )
52
27.6k
{
53
27.6k
    if( mbIsInText )
54
27.4k
    {
55
27.4k
        mrTextField.getText() += aChars;
56
27.4k
    }
57
27.6k
}
58
59
ContextHandlerRef TextFieldContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs )
60
58.8k
{
61
58.8k
    switch( aElementToken )
62
58.8k
    {
63
27.8k
    case A_TOKEN( rPr ):
64
27.8k
        return new TextCharacterPropertiesContext( *this, rAttribs, mrTextField.getTextCharacterProperties() );
65
3.17k
    case A_TOKEN( pPr ):
66
3.17k
        return new TextParagraphPropertiesContext( *this, rAttribs, mrTextField.getTextParagraphProperties() );
67
27.8k
    case A_TOKEN( t ):
68
27.8k
        mbIsInText = true;
69
27.8k
        break;
70
58.8k
    }
71
27.8k
    return this;
72
58.8k
}
73
74
}
75
76
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */