IWORKDictionary.h
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2/*
3 * This file is part of the libetonyek 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#ifndef IWORKDICTIONARY_H_INCLUDED
11#define IWORKDICTIONARY_H_INCLUDED
12
13#include <deque>
14#include <unordered_map>
15
16#include "IWORKPath.h"
17#include "IWORKStyle.h"
18#include "IWORKStylesheet.h"
19#include "IWORKText_fwd.h"
20#include "IWORKTypes.h"
21
22namespace libetonyek
23{
24
40{
42
48 IWORKStyleMap_t m_graphicStyles; // graphic-style or connection-style
60
62
95
96 std::unordered_map<ID_t, std::deque<double> > m_doubleArrays;
97 std::unordered_map<ID_t, std::deque<IWORKListLabelGeometry> > m_listLabelGeometriesArrays;
98 std::unordered_map<ID_t, std::deque<IWORKListLabelTypeInfo_t> > m_listLabelTypesArrays;
99};
100
101}
102
103#endif // IWORKDICTIONARY_H_INCLUDED
104
105/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Definition IWORKBezierElement.cpp:21
std::unordered_map< ID_t, IWORKStroke > IWORKStrokeMap_t
Definition IWORKTypes.h:287
std::unordered_map< ID_t, IWORKTabStops_t > IWORKTabStopsMap_t
Definition IWORKTypes.h:120
std::unordered_map< ID_t, IWORKExternalTextWrap > IWORKExternalTextWrapMap_t
Definition IWORKTypes.h:184
std::unordered_map< ID_t, IWORKPattern > IWORKPatternMap_t
Definition IWORKTypes.h:275
std::unordered_map< ID_t, IWORKDateTimeFormat > IWORKDateTimeFormatMap_t
Definition IWORKTypes.h:407
std::unordered_map< ID_t, IWORKColumns > IWORKColumnsMap_t
Definition IWORKTypes.h:373
std::unordered_map< ID_t, IWORKStylePtr_t > IWORKStyleMap_t
Definition IWORKStyle_fwd.h:24
std::unordered_map< ID_t, IWORKTableCell > IWORKTableCellMap_t
Definition IWORKTypes.h:239
std::unordered_map< ID_t, IWORKStylesheetPtr_t > IWORKStylesheetMap_t
Definition IWORKStylesheet.h:21
std::unordered_map< ID_t, IWORKTextPtr_t > IWORKTableCommentMap_t
Definition IWORKText_fwd.h:23
std::unordered_map< ID_t, IWORKPadding > IWORKPaddingMap_t
Definition IWORKTypes.h:108
std::unordered_map< ID_t, IWORKFilters_t > IWORKFiltersMap_t
Definition IWORKTypes.h:344
std::unordered_map< ID_t, IWORKShadow > IWORKShadowMap_t
Definition IWORKTypes.h:342
std::unordered_map< ID_t, IWORKLineSpacing > IWORKLineSpacingMap_t
Definition IWORKTypes.h:202
std::unordered_map< ID_t, IWORKTableVector > IWORKTableVectorMap_t
Definition IWORKTypes.h:230
std::unordered_map< ID_t, IWORKFilterDescriptor > IWORKFilterDescriptorMap_t
Definition IWORKTypes.h:424
std::unordered_map< ID_t, IWORKFormulaPtr_t > IWORKFormulaMap_t
Definition IWORKTypes.h:124
std::unordered_map< ID_t, IWORKGradient > IWORKGradientMap_t
Definition IWORKTypes.h:307
std::unordered_map< ID_t, IWORKGradientStop > IWORKGradientStopMap_t
Definition IWORKTypes.h:297
std::unordered_map< ID_t, IWORKMediaContentPtr_t > IWORKMediaContentMap_t
Definition IWORKTypes_fwd.h:59
std::unordered_map< ID_t, IWORKDataPtr_t > IWORKDataMap_t
Definition IWORKTypes_fwd.h:54
std::unordered_map< ID_t, IWORKFill > IWORKFillMap_t
Definition IWORKTypes.h:310
std::unordered_map< ID_t, IWORKPathPtr_t > IWORKPathMap_t
Definition IWORKPath_fwd.h:23
std::unordered_map< ID_t, IWORKListLabelTypeInfo_t > IWORKListLabelTypeInfoMap_t
Definition IWORKTypes.h:475
std::unordered_map< ID_t, IWORKTablePtr_t > IWORKTableMap_t
Definition IWORKTypes_fwd.h:84
std::unordered_map< ID_t, IWORKNumberFormat > IWORKNumberFormatMap_t
Definition IWORKTypes.h:399
std::unordered_map< ID_t, IWORKDurationFormat > IWORKDurationFormatMap_t
Definition IWORKTypes.h:415
std::unordered_map< ID_t, IWORKListLabelGeometry > IWORKListLabelGeometryMap_t
Definition IWORKTypes.h:451
A dictionary of all referenceable entities in the presentation.
Definition IWORKDictionary.h:40
IWORKMediaContentMap_t m_binaries
Definition IWORKDictionary.h:64
IWORKDateTimeFormatMap_t m_dateTimeFormats
Definition IWORKDictionary.h:68
IWORKListLabelGeometryMap_t m_listLabelGeometries
Definition IWORKDictionary.h:80
IWORKStyleMap_t m_chartStyles
Definition IWORKDictionary.h:46
IWORKFillMap_t m_fills
Definition IWORKDictionary.h:71
IWORKStyleMap_t m_vectorStyles
Definition IWORKDictionary.h:59
IWORKListLabelTypeInfoMap_t m_textLabels
Definition IWORKDictionary.h:92
IWORKTableCellMap_t m_tableCells
Definition IWORKDictionary.h:87
std::unordered_map< ID_t, std::deque< IWORKListLabelGeometry > > m_listLabelGeometriesArrays
Definition IWORKDictionary.h:97
IWORKStyleMap_t m_slideStyles
Definition IWORKDictionary.h:53
IWORKPathMap_t m_beziers
Definition IWORKDictionary.h:63
IWORKDurationFormatMap_t m_durationFormats
Definition IWORKDictionary.h:69
IWORKPaddingMap_t m_paddings
Definition IWORKDictionary.h:83
IWORKStyleMap_t m_tocStyles
Definition IWORKDictionary.h:58
IWORKStyleMap_t m_tabularStyles
Definition IWORKDictionary.h:57
IWORKNumberFormatMap_t m_numberFormats
Definition IWORKDictionary.h:82
IWORKPatternMap_t m_patterns
Definition IWORKDictionary.h:84
IWORKDictionary()
Definition IWORKDictionary.cpp:15
IWORKExternalTextWrapMap_t m_externalTextWraps
Definition IWORKDictionary.h:70
IWORKStylesheetMap_t m_stylesheets
Definition IWORKDictionary.h:61
IWORKStyleMap_t m_tableVectorStyles
Definition IWORKDictionary.h:56
std::unordered_map< ID_t, std::deque< double > > m_doubleArrays
Definition IWORKDictionary.h:96
IWORKMediaContentMap_t m_texturedFillImages
Definition IWORKDictionary.h:93
IWORKGradientMap_t m_gradients
Definition IWORKDictionary.h:76
IWORKMediaContentMap_t m_unfiltereds
Definition IWORKDictionary.h:94
IWORKShadowMap_t m_shadows
Definition IWORKDictionary.h:85
IWORKStyleMap_t m_chartSeriesStyles
Definition IWORKDictionary.h:47
IWORKTableMap_t m_tabulars
Definition IWORKDictionary.h:91
IWORKFilterDescriptorMap_t m_filterDescriptors
Definition IWORKDictionary.h:72
IWORKStyleMap_t m_cellCommentStyles
Definition IWORKDictionary.h:44
IWORKStyleMap_t m_tableStyles
Definition IWORKDictionary.h:54
IWORKListLabelTypeInfoMap_t m_listLabelTypeInfos
Definition IWORKDictionary.h:81
IWORKFiltersMap_t m_filters
Definition IWORKDictionary.h:74
IWORKStyleMap_t m_listStyles
Definition IWORKDictionary.h:51
IWORKStyleMap_t m_paragraphStyles
Definition IWORKDictionary.h:52
IWORKStrokeMap_t m_strokes
Definition IWORKDictionary.h:86
IWORKStyleMap_t m_graphicStyles
Definition IWORKDictionary.h:48
IWORKShadowMap_t m_coreImageFilterInfos
Definition IWORKDictionary.h:66
IWORKMediaContentMap_t m_images
Definition IWORKDictionary.h:78
IWORKFormulaMap_t m_formulas
Definition IWORKDictionary.h:75
IWORKStyleMap_t m_characterStyles
Definition IWORKDictionary.h:45
IWORKStyleMap_t m_headlineStyles
Definition IWORKDictionary.h:49
IWORKStyleMap_t m_layoutStyles
Definition IWORKDictionary.h:50
IWORKStyleMap_t m_cellStyles
Definition IWORKDictionary.h:43
IWORKTableVectorMap_t m_tableVectors
Definition IWORKDictionary.h:89
IWORKTableCommentMap_t m_tableComments
Definition IWORKDictionary.h:88
IWORKStyleMap_t m_tableCellStyles
Definition IWORKDictionary.h:55
std::unordered_map< ID_t, std::deque< IWORKListLabelTypeInfo_t > > m_listLabelTypesArrays
Definition IWORKDictionary.h:98
IWORKTabStopsMap_t m_tabs
Definition IWORKDictionary.h:90
IWORKGradientStopMap_t m_gradientStops
Definition IWORKDictionary.h:77
IWORKLineSpacingMap_t m_lineSpacings
Definition IWORKDictionary.h:79
IWORKMediaContentMap_t m_filteredImages
Definition IWORKDictionary.h:73
IWORKDataMap_t m_data
Definition IWORKDictionary.h:67
IWORKColumnsMap_t m_columnSets
Definition IWORKDictionary.h:65

Generated for libetonyek by doxygen 1.12.0