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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/* -*- 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/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_XMLOFF_FAMILIES_HXX
#define INCLUDED_XMLOFF_FAMILIES_HXX
/** These defines determine the unique ids for XML style-families
used in the SvXMLAutoStylePoolP.
*/
#define XML_STYLE_FAMILY_PAGE_MASTER_NAME "page-layout"
#define XML_STYLE_FAMILY_PAGE_MASTER_PREFIX "pm"
#define XML_STYLE_FAMILY_TABLE_TABLE_STYLES_NAME "table"
#define XML_STYLE_FAMILY_TABLE_TABLE_STYLES_PREFIX "ta"
#define XML_STYLE_FAMILY_TABLE_COLUMN_STYLES_NAME "table-column"
#define XML_STYLE_FAMILY_TABLE_COLUMN_STYLES_PREFIX "co"
#define XML_STYLE_FAMILY_TABLE_ROW_STYLES_NAME "table-row"
#define XML_STYLE_FAMILY_TABLE_ROW_STYLES_PREFIX "ro"
#define XML_STYLE_FAMILY_TABLE_CELL_STYLES_NAME "table-cell"
#define XML_STYLE_FAMILY_TABLE_CELL_STYLES_PREFIX "ce"
#define XML_STYLE_FAMILY_SD_GRAPHICS_NAME "graphic"
#define XML_STYLE_FAMILY_SD_GRAPHICS_PREFIX "gr"
#define XML_STYLE_FAMILY_SD_PRESENTATION_NAME "presentation"
#define XML_STYLE_FAMILY_SD_PRESENTATION_PREFIX "pr"
#define XML_STYLE_FAMILY_SD_POOL_NAME "default"
#define XML_STYLE_FAMILY_SD_DRAWINGPAGE_NAME "drawing-page"
#define XML_STYLE_FAMILY_SD_DRAWINGPAGE_PREFIX "dp"
#define XML_STYLE_FAMILY_SCH_CHART_NAME "chart"
#define XML_STYLE_FAMILY_SCH_CHART_PREFIX "ch"
#define XML_STYLE_FAMILY_CONTROL_PREFIX "ctrl"
enum class XmlStyleFamily
{
// Misc (Pool)
// reserved: 0..99
DATA_STYLE = 0,
PAGE_MASTER = 1,
MASTER_PAGE = 2,
// Text
// reserved: 100..199
TEXT_PARAGRAPH = 100,
TEXT_TEXT = 101,
TEXT_LIST = 102,
TEXT_OUTLINE = 103,
TEXT_FOOTNOTECONFIG = 105,
TEXT_ENDNOTECONFIG = 106,
TEXT_SECTION = 107,
TEXT_FRAME = 108, // export only
TEXT_RUBY = 109,
TEXT_BIBLIOGRAPHYCONFIG = 110,
TEXT_LINENUMBERINGCONFIG = 111,
// Table
// reserved: 200..299
TABLE_TABLE = 200,
TABLE_COLUMN = 202,
TABLE_ROW = 203,
TABLE_CELL = 204,
TABLE_TEMPLATE_ID = 205,
// Impress/Draw
// reserved: 300..399
SD_GRAPHICS_ID = 300,
SD_PRESENTATION_ID = 301,
// families for derived from SvXMLStyleContext
SD_PAGEMASTERCONEXT_ID = 302,
SD_PAGEMASTERSTYLECONEXT_ID = 306,
SD_PRESENTATIONPAGELAYOUT_ID = 303,
// family for draw pool
SD_POOL_ID = 304,
// family for presentation drawpage properties
SD_DRAWINGPAGE_ID = 305,
SD_GRADIENT_ID = 306,
SD_HATCH_ID = 307,
SD_FILL_IMAGE_ID = 308,
SD_MARKER_ID = 309,
SD_STROKE_DASH_ID = 310,
// Chart
// reserved: 400..499
SCH_CHART_ID = 400,
// Math
// reserved: 500..599
// Forms/Controls
// reserved 600..649
CONTROL_ID = 600,
};
#endif // INCLUDED_XMLOFF_FAMILIES_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|