From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- sc/source/filter/inc/SparklineFragment.hxx | 74 ++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 sc/source/filter/inc/SparklineFragment.hxx (limited to 'sc/source/filter/inc/SparklineFragment.hxx') diff --git a/sc/source/filter/inc/SparklineFragment.hxx b/sc/source/filter/inc/SparklineFragment.hxx new file mode 100644 index 000000000..0d4e76e6b --- /dev/null +++ b/sc/source/filter/inc/SparklineFragment.hxx @@ -0,0 +1,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 +#include + +#include +#include + +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 m_aSparklines; + + std::shared_ptr m_pSparklineGroup; + +public: + SparklineGroup() + : m_pSparklineGroup(new sc::SparklineGroup) + { + } + + const std::shared_ptr& getSparklineGroup() { return m_pSparklineGroup; } + + std::vector& getSparklines() { return m_aSparklines; } +}; + +/** Handle import of the sparkline, sparkline group and attributes */ +class SparklineGroupsContext : public WorksheetContextBase +{ +private: + std::vector 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: */ -- cgit v1.2.3