LibreOffice Module sc (master) 1
editattributemap.hxx
Go to the documentation of this file.
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
10#pragma once
11
12#include <rtl/ustring.hxx>
13
14#include <unordered_map>
15
21{
22public:
23 struct Entry
24 {
25 sal_uInt16 nmXMLNS;
26 const char* mpXMLName;
27 const char* mpAPIName;
28 sal_uInt16 mnItemID;
30 };
31
33
34 const Entry* getEntryByAPIName(const OUString& rAPIName) const;
35 const Entry* getEntryByItemID(sal_uInt16 nItemID) const;
36
37private:
38 typedef std::unordered_map<OUString, const Entry*> StrToEntriesType;
39 typedef std::unordered_map<sal_uInt16, const Entry*> IndexToEntriesType;
42};
43
44/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Provide mapping from ODF text formatting styles to EditEngine's, for rich-text cell content import.
std::unordered_map< sal_uInt16, const Entry * > IndexToEntriesType
std::unordered_map< OUString, const Entry * > StrToEntriesType
const Entry * getEntryByAPIName(const OUString &rAPIName) const
const Entry * getEntryByItemID(sal_uInt16 nItemID) const
IndexToEntriesType maItemIDEntries
StrToEntriesType maAPIEntries
unsigned char sal_uInt8