Coverage Report

Created: 2026-04-09 11:41

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/oox/source/drawingml/diagram/diagramdefinitioncontext.cxx
Line
Count
Source
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 "diagramdefinitioncontext.hxx"
21
#include "datamodel_oox.hxx"
22
#include "datamodelcontext.hxx"
23
#include "layoutnodecontext.hxx"
24
#include <oox/helper/attributelist.hxx>
25
#include <oox/token/namespaces.hxx>
26
#include <utility>
27
28
using namespace ::oox::core;
29
30
namespace oox::drawingml {
31
32
// CT_DiagramDefinition
33
DiagramDefinitionContext::DiagramDefinitionContext( SmartArtDiagram& rDgm,
34
                                                    ContextHandler2Helper const & rParent,
35
                                                    const AttributeList& rAttributes,
36
                                                    DiagramLayoutPtr pLayout )
37
264
    : ContextHandler2( rParent )
38
264
    , mpLayout(std::move( pLayout ))
39
264
    , mrDgm(rDgm)
40
264
{
41
264
    mpLayout->setDefStyle( rAttributes.getStringDefaulted( XML_defStyle ) );
42
264
    OUString sValue = rAttributes.getStringDefaulted( XML_minVer );
43
264
    if( sValue.isEmpty() )
44
264
    {
45
264
        sValue = "http://schemas.openxmlformats.org/drawingml/2006/diagram";
46
264
    }
47
264
    mpLayout->setMinVer( sValue );
48
264
    mpLayout->setUniqueId( rAttributes.getStringDefaulted( XML_uniqueId ) );
49
264
}
50
51
DiagramDefinitionContext::~DiagramDefinitionContext()
52
264
{
53
264
    LayoutNodePtr node = mpLayout->getNode();
54
264
    if (node)
55
258
        node->dump();
56
264
}
57
58
ContextHandlerRef
59
DiagramDefinitionContext::onCreateContext( ::sal_Int32 aElement,
60
                                           const AttributeList& rAttribs )
61
2.12k
{
62
2.12k
    switch( aElement )
63
2.12k
    {
64
258
    case DGM_TOKEN( title ):
65
258
        mpLayout->setTitle( rAttribs.getStringDefaulted( XML_val ) );
66
258
        break;
67
258
    case DGM_TOKEN( desc ):
68
258
        mpLayout->setDesc( rAttribs.getStringDefaulted( XML_val ) );
69
258
        break;
70
258
    case DGM_TOKEN( layoutNode ):
71
258
    {
72
258
        LayoutNodePtr pNode = std::make_shared<LayoutNode>();
73
258
        mpLayout->getNode() = pNode;
74
258
        pNode->setChildOrder( rAttribs.getToken( XML_chOrder, XML_b ) );
75
258
        pNode->setMoveWith( rAttribs.getStringDefaulted( XML_moveWith ) );
76
258
        pNode->setStyleLabel( rAttribs.getStringDefaulted( XML_styleLbl ) );
77
258
        return new LayoutNodeContext(mrDgm, *this, rAttribs, pNode );
78
0
    }
79
258
     case DGM_TOKEN( clrData ):
80
        // TODO, does not matter for the UI. skip.
81
258
        return nullptr;
82
258
    case DGM_TOKEN( sampData ):
83
258
        mpLayout->getSampData() = std::make_shared<DiagramData_oox>();
84
258
        return new DataModelContext( *this, mpLayout->getSampData() );
85
258
    case DGM_TOKEN( styleData ):
86
258
        mpLayout->getStyleData() = std::make_shared<DiagramData_oox>();
87
258
        return new DataModelContext( *this, mpLayout->getStyleData() );
88
323
    case DGM_TOKEN( cat ):
89
581
    case DGM_TOKEN( catLst ):
90
        // TODO, does not matter for the UI
91
581
    default:
92
581
        break;
93
2.12k
    }
94
95
1.09k
    return this;
96
2.12k
}
97
98
}
99
100
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */