summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/inc/SparklineFragment.hxx
blob: 0d4e76e6b9a93e4c285e5ef73bb31b8715d950e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#pragma once

#include "excelhandlers.hxx"
#include <oox/core/contexthandler.hxx>
#include <SparklineGroup.hxx>

#include <vector>
#include <memory>

namespace oox
{
class AttributeList;
}

namespace oox::xls
{
/** Transitional sparkline data */
class Sparkline
{
public:
    ScRangeList m_aInputRange;
    ScRangeList m_aTargetRange;
    Sparkline() {}
};

/** Transitional sparkline group data */
class SparklineGroup
{
private:
    std::vector<Sparkline> m_aSparklines;

    std::shared_ptr<sc::SparklineGroup> m_pSparklineGroup;

public:
    SparklineGroup()
        : m_pSparklineGroup(new sc::SparklineGroup)
    {
    }

    const std::shared_ptr<sc::SparklineGroup>& getSparklineGroup() { return m_pSparklineGroup; }

    std::vector<Sparkline>& getSparklines() { return m_aSparklines; }
};

/** Handle import of the sparkline, sparkline group and attributes */
class SparklineGroupsContext : public WorksheetContextBase
{
private:
    std::vector<SparklineGroup> m_aSparklineGroups;

public:
    explicit SparklineGroupsContext(WorksheetContextBase& rFragment);

    oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElement,
                                                 const AttributeList& rAttribs) override;
    void onStartElement(const AttributeList& rAttribs) override;
    void onCharacters(const OUString& rCharacters) override;
    void onEndElement() override;

    void insertSparkline(SparklineGroup& rSparklineGroup, Sparkline& rSparkline);
};

} //namespace oox::xls

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */