From 940b4d1848e8c70ab7642901a68594e8016caffc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 18:51:28 +0200 Subject: Adding upstream version 1:7.0.4. Signed-off-by: Daniel Baumann --- sc/inc/orcusxml.hxx | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 sc/inc/orcusxml.hxx (limited to 'sc/inc/orcusxml.hxx') diff --git a/sc/inc/orcusxml.hxx b/sc/inc/orcusxml.hxx new file mode 100644 index 000000000..b18c437f0 --- /dev/null +++ b/sc/inc/orcusxml.hxx @@ -0,0 +1,85 @@ +/* -*- 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/. + */ + +#ifndef INCLUDED_SC_INC_ORCUSXML_HXX +#define INCLUDED_SC_INC_ORCUSXML_HXX + +#include "scdllapi.h" +#include "address.hxx" + +#include +#include + +namespace weld { + class TreeIter; + class TreeView; +} + +/** + * Parameter used during call to ScOrcusFilters::loadXMLStructure(). + */ +struct ScOrcusXMLTreeParam +{ + enum EntryType { ElementDefault, ElementRepeat, Attribute }; + + /** Custom data stored with each tree item. */ + struct EntryData + { + size_t mnNamespaceID; /// numerical ID for xml namespace + EntryType meType; + ScAddress maLinkedPos; /// linked cell position (invalid if unlinked) + bool mbRangeParent:1; + bool mbLeafNode:1; /// Leaf if it has no child elements. Child Attributes don't count. + + SC_DLLPUBLIC EntryData(EntryType eType); + }; + + typedef std::vector> UserDataStoreType; + + OUString maImgElementDefault; + OUString maImgElementRepeat; + OUString maImgAttribute; + + /** + * Store all custom data instances since the tree control doesn't manage + * the life cycle of user data. + */ + UserDataStoreType m_UserDataStore; + + static EntryData* getUserData(const weld::TreeView& rControl, const weld::TreeIter& rEntry); +}; + +struct ScOrcusImportXMLParam +{ + struct CellLink + { + ScAddress maPos; + OString maPath; + + CellLink(const ScAddress& rPos, const OString& rPath); + }; + + struct RangeLink + { + ScAddress maPos; + std::vector maFieldPaths; + std::vector maRowGroups; + }; + + typedef std::vector CellLinksType; + typedef std::vector RangeLinksType; + + std::vector maNamespaces; + CellLinksType maCellLinks; + RangeLinksType maRangeLinks; +}; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3