axlsx 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +13 -0
- data/lib/axlsx.rb +38 -0
- data/lib/axlsx/content_type/content_type.rb +23 -0
- data/lib/axlsx/content_type/default.rb +32 -0
- data/lib/axlsx/content_type/override.rb +30 -0
- data/lib/axlsx/doc_props/app.rb +148 -0
- data/lib/axlsx/doc_props/core.rb +34 -0
- data/lib/axlsx/drawing/axis.rb +78 -0
- data/lib/axlsx/drawing/bar_3D_chart.rb +138 -0
- data/lib/axlsx/drawing/bar_series.rb +91 -0
- data/lib/axlsx/drawing/cat_axis.rb +58 -0
- data/lib/axlsx/drawing/chart.rb +120 -0
- data/lib/axlsx/drawing/drawing.rb +121 -0
- data/lib/axlsx/drawing/graphic_frame.rb +55 -0
- data/lib/axlsx/drawing/marker.rb +57 -0
- data/lib/axlsx/drawing/pie_3D_chart.rb +59 -0
- data/lib/axlsx/drawing/pie_series.rb +88 -0
- data/lib/axlsx/drawing/scaling.rb +53 -0
- data/lib/axlsx/drawing/series.rb +70 -0
- data/lib/axlsx/drawing/title.rb +69 -0
- data/lib/axlsx/drawing/two_cell_anchor.rb +88 -0
- data/lib/axlsx/drawing/val_axis.rb +34 -0
- data/lib/axlsx/drawing/view_3D.rb +72 -0
- data/lib/axlsx/package.rb +181 -0
- data/lib/axlsx/rels/relationship.rb +43 -0
- data/lib/axlsx/rels/relationships.rb +25 -0
- data/lib/axlsx/stylesheet/border.rb +52 -0
- data/lib/axlsx/stylesheet/border_pr.rb +65 -0
- data/lib/axlsx/stylesheet/cell_alignment.rb +96 -0
- data/lib/axlsx/stylesheet/cell_protection.rb +33 -0
- data/lib/axlsx/stylesheet/cell_style.rb +60 -0
- data/lib/axlsx/stylesheet/color.rb +57 -0
- data/lib/axlsx/stylesheet/fill.rb +31 -0
- data/lib/axlsx/stylesheet/font.rb +128 -0
- data/lib/axlsx/stylesheet/gradient_fill.rb +70 -0
- data/lib/axlsx/stylesheet/gradient_stop.rb +31 -0
- data/lib/axlsx/stylesheet/num_fmt.rb +61 -0
- data/lib/axlsx/stylesheet/pattern_fill.rb +64 -0
- data/lib/axlsx/stylesheet/styles.rb +296 -0
- data/lib/axlsx/stylesheet/table_style.rb +44 -0
- data/lib/axlsx/stylesheet/table_style_element.rb +66 -0
- data/lib/axlsx/stylesheet/table_styles.rb +39 -0
- data/lib/axlsx/stylesheet/xf.rb +117 -0
- data/lib/axlsx/util/constants.rb +189 -0
- data/lib/axlsx/util/simple_typed_list.rb +150 -0
- data/lib/axlsx/util/validators.rb +132 -0
- data/lib/axlsx/workbook/workbook.rb +130 -0
- data/lib/axlsx/workbook/worksheet/cell.rb +184 -0
- data/lib/axlsx/workbook/worksheet/row.rb +92 -0
- data/lib/axlsx/workbook/worksheet/worksheet.rb +194 -0
- data/lib/schema/dc.xsd +118 -0
- data/lib/schema/dcmitype.xsd +50 -0
- data/lib/schema/dcterms.xsd +331 -0
- data/lib/schema/dml-chart.xsd +1499 -0
- data/lib/schema/dml-chartDrawing.xsd +146 -0
- data/lib/schema/dml-compatibility.xsd +14 -0
- data/lib/schema/dml-diagram.xsd +1091 -0
- data/lib/schema/dml-lockedCanvas.xsd +11 -0
- data/lib/schema/dml-main.xsd +3048 -0
- data/lib/schema/dml-picture.xsd +23 -0
- data/lib/schema/dml-spreadsheetDrawing.xsd +185 -0
- data/lib/schema/dml-wordprocessingDrawing.xsd +185 -0
- data/lib/schema/opc-contentTypes.xsd +42 -0
- data/lib/schema/opc-coreProperties.xsd +50 -0
- data/lib/schema/opc-digSig.xsd +49 -0
- data/lib/schema/opc-relationships.xsd +33 -0
- data/lib/schema/pml.xsd +1676 -0
- data/lib/schema/shared-additionalCharacteristics.xsd +28 -0
- data/lib/schema/shared-bibliography.xsd +144 -0
- data/lib/schema/shared-commonSimpleTypes.xsd +166 -0
- data/lib/schema/shared-customXmlDataProperties.xsd +25 -0
- data/lib/schema/shared-customXmlSchemaProperties.xsd +18 -0
- data/lib/schema/shared-documentPropertiesCustom.xsd +59 -0
- data/lib/schema/shared-documentPropertiesExtended.xsd +56 -0
- data/lib/schema/shared-documentPropertiesVariantTypes.xsd +195 -0
- data/lib/schema/shared-math.xsd +582 -0
- data/lib/schema/shared-relationshipReference.xsd +25 -0
- data/lib/schema/sml.xsd +4430 -0
- data/lib/schema/vml-main.xsd +569 -0
- data/lib/schema/vml-officeDrawing.xsd +509 -0
- data/lib/schema/vml-presentationDrawing.xsd +12 -0
- data/lib/schema/vml-spreadsheetDrawing.xsd +108 -0
- data/lib/schema/vml-wordprocessingDrawing.xsd +96 -0
- data/lib/schema/wml.xsd +3644 -0
- data/lib/schema/xml.xsd +117 -0
- data/test/content_type/tc_content_type.rb +81 -0
- data/test/content_type/tc_content_type.rb~ +81 -0
- data/test/content_type/tc_default.rb +40 -0
- data/test/content_type/tc_default.rb~ +40 -0
- data/test/content_type/tc_override.rb +40 -0
- data/test/content_type/tc_override.rb~ +40 -0
- data/test/doc_props/tc_app.rb +19 -0
- data/test/doc_props/tc_app.rb~ +19 -0
- data/test/doc_props/tc_core.rb +34 -0
- data/test/drawing/tc_axis.rb +39 -0
- data/test/drawing/tc_axis.rb~ +0 -0
- data/test/drawing/tc_bar_3D_chart.rb +66 -0
- data/test/drawing/tc_bar_3D_chart.rb~ +4 -0
- data/test/drawing/tc_bar_series.rb +34 -0
- data/test/drawing/tc_bar_series.rb~ +31 -0
- data/test/drawing/tc_cat_axis.rb +32 -0
- data/test/drawing/tc_cat_axis.rb~ +39 -0
- data/test/drawing/tc_chart.rb +59 -0
- data/test/drawing/tc_chart.rb~ +58 -0
- data/test/drawing/tc_drawing.rb +71 -0
- data/test/drawing/tc_graphic_frame.rb +26 -0
- data/test/drawing/tc_graphic_frame.rb~ +21 -0
- data/test/drawing/tc_marker.rb +45 -0
- data/test/drawing/tc_marker.rb~ +26 -0
- data/test/drawing/tc_pie_3D_chart.rb +33 -0
- data/test/drawing/tc_pie_3D_chart.rb~ +58 -0
- data/test/drawing/tc_pie_series.rb +35 -0
- data/test/drawing/tc_pie_series.rb~ +26 -0
- data/test/drawing/tc_scaling.rb +37 -0
- data/test/drawing/tc_scaling.rb~ +45 -0
- data/test/drawing/tc_series.rb +24 -0
- data/test/drawing/tc_series.rb~ +31 -0
- data/test/drawing/tc_title.rb +34 -0
- data/test/drawing/tc_title.rb~ +37 -0
- data/test/drawing/tc_two_cell_anchor.rb +37 -0
- data/test/drawing/tc_two_cell_anchor.rb~ +35 -0
- data/test/drawing/tc_val_axis.rb +20 -0
- data/test/drawing/tc_val_axis.rb~ +32 -0
- data/test/drawing/tc_view_3D.rb +46 -0
- data/test/drawing/tc_view_3D.rb~ +37 -0
- data/test/rels/tc_relationship.rb +16 -0
- data/test/rels/tc_relationship.rb~ +39 -0
- data/test/rels/tc_relationships.rb +32 -0
- data/test/rels/tc_relationships.rb~ +37 -0
- data/test/stylesheet/tc_border.rb +38 -0
- data/test/stylesheet/tc_border.rb~ +31 -0
- data/test/stylesheet/tc_border_pr.rb +33 -0
- data/test/stylesheet/tc_border_pr.rb~ +31 -0
- data/test/stylesheet/tc_cell_alignment.rb +77 -0
- data/test/stylesheet/tc_cell_alignment.rb~ +38 -0
- data/test/stylesheet/tc_cell_protection.rb +30 -0
- data/test/stylesheet/tc_cell_protection.rb~ +77 -0
- data/test/stylesheet/tc_cell_style.rb +58 -0
- data/test/stylesheet/tc_cell_style.rb~ +30 -0
- data/test/stylesheet/tc_color.rb +38 -0
- data/test/stylesheet/tc_color.rb~ +38 -0
- data/test/stylesheet/tc_fill.rb +19 -0
- data/test/stylesheet/tc_fill.rb~ +19 -0
- data/test/stylesheet/tc_font.rb +114 -0
- data/test/stylesheet/tc_font.rb~ +19 -0
- data/test/stylesheet/tc_gradient_fill.rb +65 -0
- data/test/stylesheet/tc_gradient_fill.rb~ +114 -0
- data/test/stylesheet/tc_gradient_stop.rb +32 -0
- data/test/stylesheet/tc_gradient_stop.rb~ +65 -0
- data/test/stylesheet/tc_num_fmt.rb +31 -0
- data/test/stylesheet/tc_num_fmt.rb~ +32 -0
- data/test/stylesheet/tc_pattern_fill.rb +38 -0
- data/test/stylesheet/tc_pattern_fill.rb~ +31 -0
- data/test/stylesheet/tc_styles.rb +64 -0
- data/test/stylesheet/tc_table_style.rb +37 -0
- data/test/stylesheet/tc_table_style.rb~ +38 -0
- data/test/stylesheet/tc_table_style_element.rb +37 -0
- data/test/stylesheet/tc_table_style_element.rb~ +37 -0
- data/test/stylesheet/tc_table_styles.rb +30 -0
- data/test/stylesheet/tc_table_styles.rb~ +37 -0
- data/test/stylesheet/tc_xf.rb +121 -0
- data/test/stylesheet/tc_xf.rb~ +30 -0
- data/test/tc_app.rb~ +19 -0
- data/test/tc_border_pr.rb~ +21 -0
- data/test/tc_package.rb +70 -0
- data/test/tc_package.rb~ +64 -0
- data/test/tc_pie_3D_chart.rb~ +66 -0
- data/test/tc_relationships.rb~ +37 -0
- data/test/tc_series.rb~ +31 -0
- data/test/tc_styles.rb~ +64 -0
- data/test/tc_validators.rb~ +77 -0
- data/test/tc_worksheet.rb~ +85 -0
- data/test/util/tc_simple_typed_list.rb +66 -0
- data/test/util/tc_validators.rb +76 -0
- data/test/workbook/tc_workbook.rb +53 -0
- data/test/workbook/worksheet/tc_cell.rb +78 -0
- data/test/workbook/worksheet/tc_row.rb +30 -0
- data/test/workbook/worksheet/tc_worksheet.rb +85 -0
- metadata +378 -0
@@ -0,0 +1,146 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
3
|
+
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
|
4
|
+
xmlns="http://schemas.openxmlformats.org/drawingml/2006/chartDrawing"
|
5
|
+
targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/chartDrawing"
|
6
|
+
elementFormDefault="qualified">
|
7
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main"
|
8
|
+
schemaLocation="dml-main.xsd"/>
|
9
|
+
<xsd:complexType name="CT_ShapeNonVisual">
|
10
|
+
<xsd:sequence>
|
11
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
12
|
+
<xsd:element name="cNvSpPr" type="a:CT_NonVisualDrawingShapeProps" minOccurs="1" maxOccurs="1"
|
13
|
+
/>
|
14
|
+
</xsd:sequence>
|
15
|
+
</xsd:complexType>
|
16
|
+
<xsd:complexType name="CT_Shape">
|
17
|
+
<xsd:sequence>
|
18
|
+
<xsd:element name="nvSpPr" type="CT_ShapeNonVisual" minOccurs="1" maxOccurs="1"/>
|
19
|
+
<xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
|
20
|
+
<xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
|
21
|
+
<xsd:element name="txBody" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/>
|
22
|
+
</xsd:sequence>
|
23
|
+
<xsd:attribute name="macro" type="xsd:string" use="optional"/>
|
24
|
+
<xsd:attribute name="textlink" type="xsd:string" use="optional"/>
|
25
|
+
<xsd:attribute name="fLocksText" type="xsd:boolean" use="optional" default="true"/>
|
26
|
+
<xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/>
|
27
|
+
</xsd:complexType>
|
28
|
+
<xsd:complexType name="CT_ConnectorNonVisual">
|
29
|
+
<xsd:sequence>
|
30
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
31
|
+
<xsd:element name="cNvCxnSpPr" type="a:CT_NonVisualConnectorProperties" minOccurs="1"
|
32
|
+
maxOccurs="1"/>
|
33
|
+
</xsd:sequence>
|
34
|
+
</xsd:complexType>
|
35
|
+
<xsd:complexType name="CT_Connector">
|
36
|
+
<xsd:sequence>
|
37
|
+
<xsd:element name="nvCxnSpPr" type="CT_ConnectorNonVisual" minOccurs="1" maxOccurs="1"/>
|
38
|
+
<xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
|
39
|
+
<xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
|
40
|
+
</xsd:sequence>
|
41
|
+
<xsd:attribute name="macro" type="xsd:string" use="optional"/>
|
42
|
+
<xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/>
|
43
|
+
</xsd:complexType>
|
44
|
+
<xsd:complexType name="CT_PictureNonVisual">
|
45
|
+
<xsd:sequence>
|
46
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
47
|
+
<xsd:element name="cNvPicPr" type="a:CT_NonVisualPictureProperties" minOccurs="1"
|
48
|
+
maxOccurs="1"/>
|
49
|
+
</xsd:sequence>
|
50
|
+
</xsd:complexType>
|
51
|
+
<xsd:complexType name="CT_Picture">
|
52
|
+
<xsd:sequence>
|
53
|
+
<xsd:element name="nvPicPr" type="CT_PictureNonVisual" minOccurs="1" maxOccurs="1"/>
|
54
|
+
<xsd:element name="blipFill" type="a:CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/>
|
55
|
+
<xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
|
56
|
+
<xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
|
57
|
+
</xsd:sequence>
|
58
|
+
<xsd:attribute name="macro" type="xsd:string" use="optional" default=""/>
|
59
|
+
<xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/>
|
60
|
+
</xsd:complexType>
|
61
|
+
<xsd:complexType name="CT_GraphicFrameNonVisual">
|
62
|
+
<xsd:sequence>
|
63
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
64
|
+
<xsd:element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties"
|
65
|
+
minOccurs="1" maxOccurs="1"/>
|
66
|
+
</xsd:sequence>
|
67
|
+
</xsd:complexType>
|
68
|
+
<xsd:complexType name="CT_GraphicFrame">
|
69
|
+
<xsd:sequence>
|
70
|
+
<xsd:element name="nvGraphicFramePr" type="CT_GraphicFrameNonVisual" minOccurs="1"
|
71
|
+
maxOccurs="1"/>
|
72
|
+
<xsd:element name="xfrm" type="a:CT_Transform2D" minOccurs="1" maxOccurs="1"/>
|
73
|
+
<xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/>
|
74
|
+
</xsd:sequence>
|
75
|
+
<xsd:attribute name="macro" type="xsd:string" use="optional"/>
|
76
|
+
<xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/>
|
77
|
+
</xsd:complexType>
|
78
|
+
<xsd:complexType name="CT_GroupShapeNonVisual">
|
79
|
+
<xsd:sequence>
|
80
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
81
|
+
<xsd:element name="cNvGrpSpPr" type="a:CT_NonVisualGroupDrawingShapeProps" minOccurs="1"
|
82
|
+
maxOccurs="1"/>
|
83
|
+
</xsd:sequence>
|
84
|
+
</xsd:complexType>
|
85
|
+
<xsd:complexType name="CT_GroupShape">
|
86
|
+
<xsd:sequence>
|
87
|
+
<xsd:element name="nvGrpSpPr" type="CT_GroupShapeNonVisual" minOccurs="1" maxOccurs="1"/>
|
88
|
+
<xsd:element name="grpSpPr" type="a:CT_GroupShapeProperties" minOccurs="1" maxOccurs="1"/>
|
89
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
90
|
+
<xsd:element name="sp" type="CT_Shape"/>
|
91
|
+
<xsd:element name="grpSp" type="CT_GroupShape"/>
|
92
|
+
<xsd:element name="graphicFrame" type="CT_GraphicFrame"/>
|
93
|
+
<xsd:element name="cxnSp" type="CT_Connector"/>
|
94
|
+
<xsd:element name="pic" type="CT_Picture"/>
|
95
|
+
</xsd:choice>
|
96
|
+
</xsd:sequence>
|
97
|
+
</xsd:complexType>
|
98
|
+
<xsd:group name="EG_ObjectChoices">
|
99
|
+
<xsd:sequence>
|
100
|
+
<xsd:choice minOccurs="1" maxOccurs="1">
|
101
|
+
<xsd:element name="sp" type="CT_Shape"/>
|
102
|
+
<xsd:element name="grpSp" type="CT_GroupShape"/>
|
103
|
+
<xsd:element name="graphicFrame" type="CT_GraphicFrame"/>
|
104
|
+
<xsd:element name="cxnSp" type="CT_Connector"/>
|
105
|
+
<xsd:element name="pic" type="CT_Picture"/>
|
106
|
+
</xsd:choice>
|
107
|
+
</xsd:sequence>
|
108
|
+
</xsd:group>
|
109
|
+
<xsd:simpleType name="ST_MarkerCoordinate">
|
110
|
+
<xsd:restriction base="xsd:double">
|
111
|
+
<xsd:minInclusive value="0.0"/>
|
112
|
+
<xsd:maxInclusive value="1.0"/>
|
113
|
+
</xsd:restriction>
|
114
|
+
</xsd:simpleType>
|
115
|
+
<xsd:complexType name="CT_Marker">
|
116
|
+
<xsd:sequence>
|
117
|
+
<xsd:element name="x" type="ST_MarkerCoordinate" minOccurs="1" maxOccurs="1"/>
|
118
|
+
<xsd:element name="y" type="ST_MarkerCoordinate" minOccurs="1" maxOccurs="1"/>
|
119
|
+
</xsd:sequence>
|
120
|
+
</xsd:complexType>
|
121
|
+
<xsd:complexType name="CT_RelSizeAnchor">
|
122
|
+
<xsd:sequence>
|
123
|
+
<xsd:element name="from" type="CT_Marker"/>
|
124
|
+
<xsd:element name="to" type="CT_Marker"/>
|
125
|
+
<xsd:group ref="EG_ObjectChoices"/>
|
126
|
+
</xsd:sequence>
|
127
|
+
</xsd:complexType>
|
128
|
+
<xsd:complexType name="CT_AbsSizeAnchor">
|
129
|
+
<xsd:sequence>
|
130
|
+
<xsd:element name="from" type="CT_Marker"/>
|
131
|
+
<xsd:element name="ext" type="a:CT_PositiveSize2D"/>
|
132
|
+
<xsd:group ref="EG_ObjectChoices"/>
|
133
|
+
</xsd:sequence>
|
134
|
+
</xsd:complexType>
|
135
|
+
<xsd:group name="EG_Anchor">
|
136
|
+
<xsd:choice>
|
137
|
+
<xsd:element name="relSizeAnchor" type="CT_RelSizeAnchor"/>
|
138
|
+
<xsd:element name="absSizeAnchor" type="CT_AbsSizeAnchor"/>
|
139
|
+
</xsd:choice>
|
140
|
+
</xsd:group>
|
141
|
+
<xsd:complexType name="CT_Drawing">
|
142
|
+
<xsd:sequence>
|
143
|
+
<xsd:group ref="EG_Anchor" minOccurs="0" maxOccurs="unbounded"/>
|
144
|
+
</xsd:sequence>
|
145
|
+
</xsd:complexType>
|
146
|
+
</xsd:schema>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
3
|
+
xmlns="http://schemas.openxmlformats.org/drawingml/2006/compatibility"
|
4
|
+
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
|
5
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
6
|
+
elementFormDefault="qualified"
|
7
|
+
targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/compatibility">
|
8
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main"
|
9
|
+
schemaLocation="dml-main.xsd"/>
|
10
|
+
<xsd:complexType name="CT_Compat">
|
11
|
+
<xsd:attribute name="spid" type="a:ST_ShapeID" use="required"/>
|
12
|
+
</xsd:complexType>
|
13
|
+
<xsd:element name="legacyDrawing" type="CT_Compat"/>
|
14
|
+
</xsd:schema>
|
@@ -0,0 +1,1091 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
3
|
+
xmlns="http://schemas.openxmlformats.org/drawingml/2006/diagram"
|
4
|
+
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
|
5
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
6
|
+
xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
7
|
+
targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/diagram"
|
8
|
+
elementFormDefault="qualified" attributeFormDefault="unqualified">
|
9
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
10
|
+
schemaLocation="shared-relationshipReference.xsd"/>
|
11
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main"
|
12
|
+
schemaLocation="dml-main.xsd"/>
|
13
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
14
|
+
schemaLocation="shared-commonSimpleTypes.xsd"/>
|
15
|
+
<xsd:complexType name="CT_CTName">
|
16
|
+
<xsd:attribute name="lang" type="xsd:string" use="optional" default=""/>
|
17
|
+
<xsd:attribute name="val" type="xsd:string" use="required"/>
|
18
|
+
</xsd:complexType>
|
19
|
+
<xsd:complexType name="CT_CTDescription">
|
20
|
+
<xsd:attribute name="lang" type="xsd:string" use="optional" default=""/>
|
21
|
+
<xsd:attribute name="val" type="xsd:string" use="required"/>
|
22
|
+
</xsd:complexType>
|
23
|
+
<xsd:complexType name="CT_CTCategory">
|
24
|
+
<xsd:attribute name="type" type="xsd:anyURI" use="required"/>
|
25
|
+
<xsd:attribute name="pri" type="xsd:unsignedInt" use="required"/>
|
26
|
+
</xsd:complexType>
|
27
|
+
<xsd:complexType name="CT_CTCategories">
|
28
|
+
<xsd:sequence minOccurs="0" maxOccurs="unbounded">
|
29
|
+
<xsd:element name="cat" type="CT_CTCategory" minOccurs="0" maxOccurs="unbounded"/>
|
30
|
+
</xsd:sequence>
|
31
|
+
</xsd:complexType>
|
32
|
+
<xsd:simpleType name="ST_ClrAppMethod">
|
33
|
+
<xsd:restriction base="xsd:token">
|
34
|
+
<xsd:enumeration value="span"/>
|
35
|
+
<xsd:enumeration value="cycle"/>
|
36
|
+
<xsd:enumeration value="repeat"/>
|
37
|
+
</xsd:restriction>
|
38
|
+
</xsd:simpleType>
|
39
|
+
<xsd:simpleType name="ST_HueDir">
|
40
|
+
<xsd:restriction base="xsd:token">
|
41
|
+
<xsd:enumeration value="cw"/>
|
42
|
+
<xsd:enumeration value="ccw"/>
|
43
|
+
</xsd:restriction>
|
44
|
+
</xsd:simpleType>
|
45
|
+
<xsd:complexType name="CT_Colors">
|
46
|
+
<xsd:sequence>
|
47
|
+
<xsd:group ref="a:EG_ColorChoice" minOccurs="0" maxOccurs="unbounded"/>
|
48
|
+
</xsd:sequence>
|
49
|
+
<xsd:attribute name="meth" type="ST_ClrAppMethod" use="optional" default="span"/>
|
50
|
+
<xsd:attribute name="hueDir" type="ST_HueDir" use="optional" default="cw"/>
|
51
|
+
</xsd:complexType>
|
52
|
+
<xsd:complexType name="CT_CTStyleLabel">
|
53
|
+
<xsd:sequence>
|
54
|
+
<xsd:element name="fillClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
|
55
|
+
<xsd:element name="linClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
|
56
|
+
<xsd:element name="effectClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
|
57
|
+
<xsd:element name="txLinClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
|
58
|
+
<xsd:element name="txFillClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
|
59
|
+
<xsd:element name="txEffectClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
|
60
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
61
|
+
</xsd:sequence>
|
62
|
+
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
63
|
+
</xsd:complexType>
|
64
|
+
<xsd:complexType name="CT_ColorTransform">
|
65
|
+
<xsd:sequence>
|
66
|
+
<xsd:element name="title" type="CT_CTName" minOccurs="0" maxOccurs="unbounded"/>
|
67
|
+
<xsd:element name="desc" type="CT_CTDescription" minOccurs="0" maxOccurs="unbounded"/>
|
68
|
+
<xsd:element name="catLst" type="CT_CTCategories" minOccurs="0"/>
|
69
|
+
<xsd:element name="styleLbl" type="CT_CTStyleLabel" minOccurs="0" maxOccurs="unbounded"/>
|
70
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
71
|
+
</xsd:sequence>
|
72
|
+
<xsd:attribute name="uniqueId" type="xsd:string" use="optional" default=""/>
|
73
|
+
<xsd:attribute name="minVer" type="xsd:string" use="optional"
|
74
|
+
default="http://schemas.openxmlformats.org/drawingml/2006/diagram"/>
|
75
|
+
</xsd:complexType>
|
76
|
+
<xsd:element name="colorsDef" type="CT_ColorTransform"/>
|
77
|
+
<xsd:complexType name="CT_ColorTransformHeader">
|
78
|
+
<xsd:sequence>
|
79
|
+
<xsd:element name="title" type="CT_CTName" minOccurs="1" maxOccurs="unbounded"/>
|
80
|
+
<xsd:element name="desc" type="CT_CTDescription" minOccurs="1" maxOccurs="unbounded"/>
|
81
|
+
<xsd:element name="catLst" type="CT_CTCategories" minOccurs="0"/>
|
82
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
83
|
+
</xsd:sequence>
|
84
|
+
<xsd:attribute name="uniqueId" type="xsd:string" use="required"/>
|
85
|
+
<xsd:attribute name="minVer" type="xsd:string" use="optional"
|
86
|
+
default="http://schemas.openxmlformats.org/drawingml/2006/diagram"/>
|
87
|
+
<xsd:attribute name="resId" type="xsd:int" use="optional" default="0"/>
|
88
|
+
</xsd:complexType>
|
89
|
+
<xsd:element name="colorsDefHdr" type="CT_ColorTransformHeader"/>
|
90
|
+
<xsd:complexType name="CT_ColorTransformHeaderLst">
|
91
|
+
<xsd:sequence>
|
92
|
+
<xsd:element name="colorsDefHdr" type="CT_ColorTransformHeader" minOccurs="0"
|
93
|
+
maxOccurs="unbounded"/>
|
94
|
+
</xsd:sequence>
|
95
|
+
</xsd:complexType>
|
96
|
+
<xsd:element name="colorsDefHdrLst" type="CT_ColorTransformHeaderLst"/>
|
97
|
+
<xsd:simpleType name="ST_PtType">
|
98
|
+
<xsd:restriction base="xsd:token">
|
99
|
+
<xsd:enumeration value="node"/>
|
100
|
+
<xsd:enumeration value="asst"/>
|
101
|
+
<xsd:enumeration value="doc"/>
|
102
|
+
<xsd:enumeration value="pres"/>
|
103
|
+
<xsd:enumeration value="parTrans"/>
|
104
|
+
<xsd:enumeration value="sibTrans"/>
|
105
|
+
</xsd:restriction>
|
106
|
+
</xsd:simpleType>
|
107
|
+
<xsd:complexType name="CT_Pt">
|
108
|
+
<xsd:sequence>
|
109
|
+
<xsd:element name="prSet" type="CT_ElemPropSet" minOccurs="0" maxOccurs="1"/>
|
110
|
+
<xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/>
|
111
|
+
<xsd:element name="t" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/>
|
112
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
113
|
+
</xsd:sequence>
|
114
|
+
<xsd:attribute name="modelId" type="ST_ModelId" use="required"/>
|
115
|
+
<xsd:attribute name="type" type="ST_PtType" use="optional" default="node"/>
|
116
|
+
<xsd:attribute name="cxnId" type="ST_ModelId" use="optional" default="0"/>
|
117
|
+
</xsd:complexType>
|
118
|
+
<xsd:complexType name="CT_PtList">
|
119
|
+
<xsd:sequence>
|
120
|
+
<xsd:element name="pt" type="CT_Pt" minOccurs="0" maxOccurs="unbounded"/>
|
121
|
+
</xsd:sequence>
|
122
|
+
</xsd:complexType>
|
123
|
+
<xsd:simpleType name="ST_CxnType">
|
124
|
+
<xsd:restriction base="xsd:token">
|
125
|
+
<xsd:enumeration value="parOf"/>
|
126
|
+
<xsd:enumeration value="presOf"/>
|
127
|
+
<xsd:enumeration value="presParOf"/>
|
128
|
+
<xsd:enumeration value="unknownRelationship"/>
|
129
|
+
</xsd:restriction>
|
130
|
+
</xsd:simpleType>
|
131
|
+
<xsd:complexType name="CT_Cxn">
|
132
|
+
<xsd:sequence>
|
133
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
134
|
+
</xsd:sequence>
|
135
|
+
<xsd:attribute name="modelId" type="ST_ModelId" use="required"/>
|
136
|
+
<xsd:attribute name="type" type="ST_CxnType" use="optional" default="parOf"/>
|
137
|
+
<xsd:attribute name="srcId" type="ST_ModelId" use="required"/>
|
138
|
+
<xsd:attribute name="destId" type="ST_ModelId" use="required"/>
|
139
|
+
<xsd:attribute name="srcOrd" type="xsd:unsignedInt" use="required"/>
|
140
|
+
<xsd:attribute name="destOrd" type="xsd:unsignedInt" use="required"/>
|
141
|
+
<xsd:attribute name="parTransId" type="ST_ModelId" use="optional" default="0"/>
|
142
|
+
<xsd:attribute name="sibTransId" type="ST_ModelId" use="optional" default="0"/>
|
143
|
+
<xsd:attribute name="presId" type="xsd:string" use="optional" default=""/>
|
144
|
+
</xsd:complexType>
|
145
|
+
<xsd:complexType name="CT_CxnList">
|
146
|
+
<xsd:sequence>
|
147
|
+
<xsd:element name="cxn" type="CT_Cxn" minOccurs="0" maxOccurs="unbounded"/>
|
148
|
+
</xsd:sequence>
|
149
|
+
</xsd:complexType>
|
150
|
+
<xsd:complexType name="CT_DataModel">
|
151
|
+
<xsd:sequence>
|
152
|
+
<xsd:element name="ptLst" type="CT_PtList"/>
|
153
|
+
<xsd:element name="cxnLst" type="CT_CxnList" minOccurs="0" maxOccurs="1"/>
|
154
|
+
<xsd:element name="bg" type="a:CT_BackgroundFormatting" minOccurs="0"/>
|
155
|
+
<xsd:element name="whole" type="a:CT_WholeE2oFormatting" minOccurs="0"/>
|
156
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
157
|
+
</xsd:sequence>
|
158
|
+
</xsd:complexType>
|
159
|
+
<xsd:element name="dataModel" type="CT_DataModel"/>
|
160
|
+
<xsd:attributeGroup name="AG_IteratorAttributes">
|
161
|
+
<xsd:attribute name="axis" type="ST_AxisTypes" use="optional" default="none"/>
|
162
|
+
<xsd:attribute name="ptType" type="ST_ElementTypes" use="optional" default="all"/>
|
163
|
+
<xsd:attribute name="hideLastTrans" type="ST_Booleans" use="optional" default="true"/>
|
164
|
+
<xsd:attribute name="st" type="ST_Ints" use="optional" default="1"/>
|
165
|
+
<xsd:attribute name="cnt" type="ST_UnsignedInts" use="optional" default="0"/>
|
166
|
+
<xsd:attribute name="step" type="ST_Ints" use="optional" default="1"/>
|
167
|
+
</xsd:attributeGroup>
|
168
|
+
<xsd:attributeGroup name="AG_ConstraintAttributes">
|
169
|
+
<xsd:attribute name="type" type="ST_ConstraintType" use="required"/>
|
170
|
+
<xsd:attribute name="for" type="ST_ConstraintRelationship" use="optional" default="self"/>
|
171
|
+
<xsd:attribute name="forName" type="xsd:string" use="optional" default=""/>
|
172
|
+
<xsd:attribute name="ptType" type="ST_ElementType" use="optional" default="all"/>
|
173
|
+
</xsd:attributeGroup>
|
174
|
+
<xsd:attributeGroup name="AG_ConstraintRefAttributes">
|
175
|
+
<xsd:attribute name="refType" type="ST_ConstraintType" use="optional" default="none"/>
|
176
|
+
<xsd:attribute name="refFor" type="ST_ConstraintRelationship" use="optional" default="self"/>
|
177
|
+
<xsd:attribute name="refForName" type="xsd:string" use="optional" default=""/>
|
178
|
+
<xsd:attribute name="refPtType" type="ST_ElementType" use="optional" default="all"/>
|
179
|
+
</xsd:attributeGroup>
|
180
|
+
<xsd:complexType name="CT_Constraint">
|
181
|
+
<xsd:sequence>
|
182
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
183
|
+
</xsd:sequence>
|
184
|
+
<xsd:attributeGroup ref="AG_ConstraintAttributes"/>
|
185
|
+
<xsd:attributeGroup ref="AG_ConstraintRefAttributes"/>
|
186
|
+
<xsd:attribute name="op" type="ST_BoolOperator" use="optional" default="none"/>
|
187
|
+
<xsd:attribute name="val" type="xsd:double" use="optional" default="0"/>
|
188
|
+
<xsd:attribute name="fact" type="xsd:double" use="optional" default="1"/>
|
189
|
+
</xsd:complexType>
|
190
|
+
<xsd:complexType name="CT_Constraints">
|
191
|
+
<xsd:sequence>
|
192
|
+
<xsd:element name="constr" type="CT_Constraint" minOccurs="0" maxOccurs="unbounded"/>
|
193
|
+
</xsd:sequence>
|
194
|
+
</xsd:complexType>
|
195
|
+
<xsd:complexType name="CT_NumericRule">
|
196
|
+
<xsd:sequence>
|
197
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
198
|
+
</xsd:sequence>
|
199
|
+
<xsd:attributeGroup ref="AG_ConstraintAttributes"/>
|
200
|
+
<xsd:attribute name="val" type="xsd:double" use="optional" default="NaN"/>
|
201
|
+
<xsd:attribute name="fact" type="xsd:double" use="optional" default="NaN"/>
|
202
|
+
<xsd:attribute name="max" type="xsd:double" use="optional" default="NaN"/>
|
203
|
+
</xsd:complexType>
|
204
|
+
<xsd:complexType name="CT_Rules">
|
205
|
+
<xsd:sequence>
|
206
|
+
<xsd:element name="rule" type="CT_NumericRule" minOccurs="0" maxOccurs="unbounded"/>
|
207
|
+
</xsd:sequence>
|
208
|
+
</xsd:complexType>
|
209
|
+
<xsd:complexType name="CT_PresentationOf">
|
210
|
+
<xsd:sequence>
|
211
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
212
|
+
</xsd:sequence>
|
213
|
+
<xsd:attributeGroup ref="AG_IteratorAttributes"/>
|
214
|
+
</xsd:complexType>
|
215
|
+
<xsd:simpleType name="ST_LayoutShapeType" final="restriction">
|
216
|
+
<xsd:union memberTypes="a:ST_ShapeType ST_OutputShapeType"/>
|
217
|
+
</xsd:simpleType>
|
218
|
+
<xsd:simpleType name="ST_Index1">
|
219
|
+
<xsd:restriction base="xsd:unsignedInt">
|
220
|
+
<xsd:minInclusive value="1"/>
|
221
|
+
</xsd:restriction>
|
222
|
+
</xsd:simpleType>
|
223
|
+
<xsd:complexType name="CT_Adj">
|
224
|
+
<xsd:attribute name="idx" type="ST_Index1" use="required"/>
|
225
|
+
<xsd:attribute name="val" type="xsd:double" use="required"/>
|
226
|
+
</xsd:complexType>
|
227
|
+
<xsd:complexType name="CT_AdjLst">
|
228
|
+
<xsd:sequence>
|
229
|
+
<xsd:element name="adj" type="CT_Adj" minOccurs="0" maxOccurs="unbounded"/>
|
230
|
+
</xsd:sequence>
|
231
|
+
</xsd:complexType>
|
232
|
+
<xsd:complexType name="CT_Shape">
|
233
|
+
<xsd:sequence>
|
234
|
+
<xsd:element name="adjLst" type="CT_AdjLst" minOccurs="0" maxOccurs="1"/>
|
235
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
236
|
+
</xsd:sequence>
|
237
|
+
<xsd:attribute name="rot" type="xsd:double" use="optional" default="0"/>
|
238
|
+
<xsd:attribute name="type" type="ST_LayoutShapeType" use="optional" default="none"/>
|
239
|
+
<xsd:attribute ref="r:blip" use="optional"/>
|
240
|
+
<xsd:attribute name="zOrderOff" type="xsd:int" use="optional" default="0"/>
|
241
|
+
<xsd:attribute name="hideGeom" type="xsd:boolean" use="optional" default="false"/>
|
242
|
+
<xsd:attribute name="lkTxEntry" type="xsd:boolean" use="optional" default="false"/>
|
243
|
+
<xsd:attribute name="blipPhldr" type="xsd:boolean" use="optional" default="false"/>
|
244
|
+
</xsd:complexType>
|
245
|
+
<xsd:complexType name="CT_Parameter">
|
246
|
+
<xsd:attribute name="type" type="ST_ParameterId" use="required"/>
|
247
|
+
<xsd:attribute name="val" type="ST_ParameterVal" use="required"/>
|
248
|
+
</xsd:complexType>
|
249
|
+
<xsd:complexType name="CT_Algorithm">
|
250
|
+
<xsd:sequence>
|
251
|
+
<xsd:element name="param" type="CT_Parameter" minOccurs="0" maxOccurs="unbounded"/>
|
252
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
253
|
+
</xsd:sequence>
|
254
|
+
<xsd:attribute name="type" type="ST_AlgorithmType" use="required"/>
|
255
|
+
<xsd:attribute name="rev" type="xsd:unsignedInt" use="optional" default="0"/>
|
256
|
+
</xsd:complexType>
|
257
|
+
<xsd:complexType name="CT_LayoutNode">
|
258
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
259
|
+
<xsd:element name="alg" type="CT_Algorithm" minOccurs="0" maxOccurs="1"/>
|
260
|
+
<xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/>
|
261
|
+
<xsd:element name="presOf" type="CT_PresentationOf" minOccurs="0" maxOccurs="1"/>
|
262
|
+
<xsd:element name="constrLst" type="CT_Constraints" minOccurs="0" maxOccurs="1"/>
|
263
|
+
<xsd:element name="ruleLst" type="CT_Rules" minOccurs="0" maxOccurs="1"/>
|
264
|
+
<xsd:element name="varLst" type="CT_LayoutVariablePropertySet" minOccurs="0" maxOccurs="1"/>
|
265
|
+
<xsd:element name="forEach" type="CT_ForEach"/>
|
266
|
+
<xsd:element name="layoutNode" type="CT_LayoutNode"/>
|
267
|
+
<xsd:element name="choose" type="CT_Choose"/>
|
268
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
269
|
+
</xsd:choice>
|
270
|
+
<xsd:attribute name="name" type="xsd:string" use="optional" default=""/>
|
271
|
+
<xsd:attribute name="styleLbl" type="xsd:string" use="optional" default=""/>
|
272
|
+
<xsd:attribute name="chOrder" type="ST_ChildOrderType" use="optional" default="b"/>
|
273
|
+
<xsd:attribute name="moveWith" type="xsd:string" use="optional" default=""/>
|
274
|
+
</xsd:complexType>
|
275
|
+
<xsd:complexType name="CT_ForEach">
|
276
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
277
|
+
<xsd:element name="alg" type="CT_Algorithm" minOccurs="0" maxOccurs="1"/>
|
278
|
+
<xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/>
|
279
|
+
<xsd:element name="presOf" type="CT_PresentationOf" minOccurs="0" maxOccurs="1"/>
|
280
|
+
<xsd:element name="constrLst" type="CT_Constraints" minOccurs="0" maxOccurs="1"/>
|
281
|
+
<xsd:element name="ruleLst" type="CT_Rules" minOccurs="0" maxOccurs="1"/>
|
282
|
+
<xsd:element name="forEach" type="CT_ForEach"/>
|
283
|
+
<xsd:element name="layoutNode" type="CT_LayoutNode"/>
|
284
|
+
<xsd:element name="choose" type="CT_Choose"/>
|
285
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
286
|
+
</xsd:choice>
|
287
|
+
<xsd:attribute name="name" type="xsd:string" use="optional" default=""/>
|
288
|
+
<xsd:attribute name="ref" type="xsd:string" use="optional" default=""/>
|
289
|
+
<xsd:attributeGroup ref="AG_IteratorAttributes"/>
|
290
|
+
</xsd:complexType>
|
291
|
+
<xsd:complexType name="CT_When">
|
292
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
293
|
+
<xsd:element name="alg" type="CT_Algorithm" minOccurs="0" maxOccurs="1"/>
|
294
|
+
<xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/>
|
295
|
+
<xsd:element name="presOf" type="CT_PresentationOf" minOccurs="0" maxOccurs="1"/>
|
296
|
+
<xsd:element name="constrLst" type="CT_Constraints" minOccurs="0" maxOccurs="1"/>
|
297
|
+
<xsd:element name="ruleLst" type="CT_Rules" minOccurs="0" maxOccurs="1"/>
|
298
|
+
<xsd:element name="forEach" type="CT_ForEach"/>
|
299
|
+
<xsd:element name="layoutNode" type="CT_LayoutNode"/>
|
300
|
+
<xsd:element name="choose" type="CT_Choose"/>
|
301
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
302
|
+
</xsd:choice>
|
303
|
+
<xsd:attribute name="name" type="xsd:string" use="optional" default=""/>
|
304
|
+
<xsd:attributeGroup ref="AG_IteratorAttributes"/>
|
305
|
+
<xsd:attribute name="func" type="ST_FunctionType" use="required"/>
|
306
|
+
<xsd:attribute name="arg" type="ST_FunctionArgument" use="optional" default="none"/>
|
307
|
+
<xsd:attribute name="op" type="ST_FunctionOperator" use="required"/>
|
308
|
+
<xsd:attribute name="val" type="ST_FunctionValue" use="required"/>
|
309
|
+
</xsd:complexType>
|
310
|
+
<xsd:complexType name="CT_Otherwise">
|
311
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
312
|
+
<xsd:element name="alg" type="CT_Algorithm" minOccurs="0" maxOccurs="1"/>
|
313
|
+
<xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/>
|
314
|
+
<xsd:element name="presOf" type="CT_PresentationOf" minOccurs="0" maxOccurs="1"/>
|
315
|
+
<xsd:element name="constrLst" type="CT_Constraints" minOccurs="0" maxOccurs="1"/>
|
316
|
+
<xsd:element name="ruleLst" type="CT_Rules" minOccurs="0" maxOccurs="1"/>
|
317
|
+
<xsd:element name="forEach" type="CT_ForEach"/>
|
318
|
+
<xsd:element name="layoutNode" type="CT_LayoutNode"/>
|
319
|
+
<xsd:element name="choose" type="CT_Choose"/>
|
320
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
321
|
+
</xsd:choice>
|
322
|
+
<xsd:attribute name="name" type="xsd:string" use="optional" default=""/>
|
323
|
+
</xsd:complexType>
|
324
|
+
<xsd:complexType name="CT_Choose">
|
325
|
+
<xsd:sequence>
|
326
|
+
<xsd:element name="if" type="CT_When" maxOccurs="unbounded"/>
|
327
|
+
<xsd:element name="else" type="CT_Otherwise" minOccurs="0"/>
|
328
|
+
</xsd:sequence>
|
329
|
+
<xsd:attribute name="name" type="xsd:string" use="optional" default=""/>
|
330
|
+
</xsd:complexType>
|
331
|
+
<xsd:complexType name="CT_SampleData">
|
332
|
+
<xsd:sequence>
|
333
|
+
<xsd:element name="dataModel" type="CT_DataModel" minOccurs="0"/>
|
334
|
+
</xsd:sequence>
|
335
|
+
<xsd:attribute name="useDef" type="xsd:boolean" use="optional" default="false"/>
|
336
|
+
</xsd:complexType>
|
337
|
+
<xsd:complexType name="CT_Category">
|
338
|
+
<xsd:attribute name="type" type="xsd:anyURI" use="required"/>
|
339
|
+
<xsd:attribute name="pri" type="xsd:unsignedInt" use="required"/>
|
340
|
+
</xsd:complexType>
|
341
|
+
<xsd:complexType name="CT_Categories">
|
342
|
+
<xsd:sequence>
|
343
|
+
<xsd:element name="cat" type="CT_Category" minOccurs="0" maxOccurs="unbounded"/>
|
344
|
+
</xsd:sequence>
|
345
|
+
</xsd:complexType>
|
346
|
+
<xsd:complexType name="CT_Name">
|
347
|
+
<xsd:attribute name="lang" type="xsd:string" use="optional" default=""/>
|
348
|
+
<xsd:attribute name="val" type="xsd:string" use="required"/>
|
349
|
+
</xsd:complexType>
|
350
|
+
<xsd:complexType name="CT_Description">
|
351
|
+
<xsd:attribute name="lang" type="xsd:string" use="optional" default=""/>
|
352
|
+
<xsd:attribute name="val" type="xsd:string" use="required"/>
|
353
|
+
</xsd:complexType>
|
354
|
+
<xsd:complexType name="CT_DiagramDefinition">
|
355
|
+
<xsd:sequence>
|
356
|
+
<xsd:element name="title" type="CT_Name" minOccurs="0" maxOccurs="unbounded"/>
|
357
|
+
<xsd:element name="desc" type="CT_Description" minOccurs="0" maxOccurs="unbounded"/>
|
358
|
+
<xsd:element name="catLst" type="CT_Categories" minOccurs="0"/>
|
359
|
+
<xsd:element name="sampData" type="CT_SampleData" minOccurs="0"/>
|
360
|
+
<xsd:element name="styleData" type="CT_SampleData" minOccurs="0"/>
|
361
|
+
<xsd:element name="clrData" type="CT_SampleData" minOccurs="0"/>
|
362
|
+
<xsd:element name="layoutNode" type="CT_LayoutNode"/>
|
363
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
364
|
+
</xsd:sequence>
|
365
|
+
<xsd:attribute name="uniqueId" type="xsd:string" use="optional" default=""/>
|
366
|
+
<xsd:attribute name="minVer" type="xsd:string" use="optional"
|
367
|
+
default="http://schemas.openxmlformats.org/drawingml/2006/diagram"/>
|
368
|
+
<xsd:attribute name="defStyle" type="xsd:string" use="optional" default=""/>
|
369
|
+
</xsd:complexType>
|
370
|
+
<xsd:element name="layoutDef" type="CT_DiagramDefinition"/>
|
371
|
+
<xsd:complexType name="CT_DiagramDefinitionHeader">
|
372
|
+
<xsd:sequence>
|
373
|
+
<xsd:element name="title" type="CT_Name" minOccurs="1" maxOccurs="unbounded"/>
|
374
|
+
<xsd:element name="desc" type="CT_Description" minOccurs="1" maxOccurs="unbounded"/>
|
375
|
+
<xsd:element name="catLst" type="CT_Categories" minOccurs="0"/>
|
376
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
377
|
+
</xsd:sequence>
|
378
|
+
<xsd:attribute name="uniqueId" type="xsd:string" use="required"/>
|
379
|
+
<xsd:attribute name="minVer" type="xsd:string" use="optional"
|
380
|
+
default="http://schemas.openxmlformats.org/drawingml/2006/diagram"/>
|
381
|
+
<xsd:attribute name="defStyle" type="xsd:string" use="optional" default=""/>
|
382
|
+
<xsd:attribute name="resId" type="xsd:int" use="optional" default="0"/>
|
383
|
+
</xsd:complexType>
|
384
|
+
<xsd:element name="layoutDefHdr" type="CT_DiagramDefinitionHeader"/>
|
385
|
+
<xsd:complexType name="CT_DiagramDefinitionHeaderLst">
|
386
|
+
<xsd:sequence>
|
387
|
+
<xsd:element name="layoutDefHdr" type="CT_DiagramDefinitionHeader" minOccurs="0"
|
388
|
+
maxOccurs="unbounded"/>
|
389
|
+
</xsd:sequence>
|
390
|
+
</xsd:complexType>
|
391
|
+
<xsd:element name="layoutDefHdrLst" type="CT_DiagramDefinitionHeaderLst"/>
|
392
|
+
<xsd:complexType name="CT_RelIds">
|
393
|
+
<xsd:attribute ref="r:dm" use="required"/>
|
394
|
+
<xsd:attribute ref="r:lo" use="required"/>
|
395
|
+
<xsd:attribute ref="r:qs" use="required"/>
|
396
|
+
<xsd:attribute ref="r:cs" use="required"/>
|
397
|
+
</xsd:complexType>
|
398
|
+
<xsd:element name="relIds" type="CT_RelIds"/>
|
399
|
+
<xsd:simpleType name="ST_ParameterVal">
|
400
|
+
<xsd:union
|
401
|
+
memberTypes="ST_DiagramHorizontalAlignment ST_VerticalAlignment ST_ChildDirection ST_ChildAlignment ST_SecondaryChildAlignment ST_LinearDirection ST_SecondaryLinearDirection ST_StartingElement ST_BendPoint ST_ConnectorRouting ST_ArrowheadStyle ST_ConnectorDimension ST_RotationPath ST_CenterShapeMapping ST_NodeHorizontalAlignment ST_NodeVerticalAlignment ST_FallbackDimension ST_TextDirection ST_PyramidAccentPosition ST_PyramidAccentTextMargin ST_TextBlockDirection ST_TextAnchorHorizontal ST_TextAnchorVertical ST_DiagramTextAlignment ST_AutoTextRotation ST_GrowDirection ST_FlowDirection ST_ContinueDirection ST_Breakpoint ST_Offset ST_HierarchyAlignment xsd:int xsd:double xsd:boolean xsd:string ST_ConnectorPoint"
|
402
|
+
/>
|
403
|
+
</xsd:simpleType>
|
404
|
+
<xsd:simpleType name="ST_ModelId">
|
405
|
+
<xsd:union memberTypes="xsd:int s:ST_Guid"/>
|
406
|
+
</xsd:simpleType>
|
407
|
+
<xsd:simpleType name="ST_PrSetCustVal">
|
408
|
+
<xsd:union memberTypes="s:ST_Percentage xsd:int"/>
|
409
|
+
</xsd:simpleType>
|
410
|
+
<xsd:complexType name="CT_ElemPropSet">
|
411
|
+
<xsd:sequence>
|
412
|
+
<xsd:element name="presLayoutVars" type="CT_LayoutVariablePropertySet" minOccurs="0"
|
413
|
+
maxOccurs="1"/>
|
414
|
+
<xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
|
415
|
+
</xsd:sequence>
|
416
|
+
<xsd:attribute name="presAssocID" type="ST_ModelId" use="optional"/>
|
417
|
+
<xsd:attribute name="presName" type="xsd:string" use="optional"/>
|
418
|
+
<xsd:attribute name="presStyleLbl" type="xsd:string" use="optional"/>
|
419
|
+
<xsd:attribute name="presStyleIdx" type="xsd:int" use="optional"/>
|
420
|
+
<xsd:attribute name="presStyleCnt" type="xsd:int" use="optional"/>
|
421
|
+
<xsd:attribute name="loTypeId" type="xsd:string" use="optional"/>
|
422
|
+
<xsd:attribute name="loCatId" type="xsd:string" use="optional"/>
|
423
|
+
<xsd:attribute name="qsTypeId" type="xsd:string" use="optional"/>
|
424
|
+
<xsd:attribute name="qsCatId" type="xsd:string" use="optional"/>
|
425
|
+
<xsd:attribute name="csTypeId" type="xsd:string" use="optional"/>
|
426
|
+
<xsd:attribute name="csCatId" type="xsd:string" use="optional"/>
|
427
|
+
<xsd:attribute name="coherent3DOff" type="xsd:boolean" use="optional"/>
|
428
|
+
<xsd:attribute name="phldrT" type="xsd:string" use="optional"/>
|
429
|
+
<xsd:attribute name="phldr" type="xsd:boolean" use="optional"/>
|
430
|
+
<xsd:attribute name="custAng" type="xsd:int" use="optional"/>
|
431
|
+
<xsd:attribute name="custFlipVert" type="xsd:boolean" use="optional"/>
|
432
|
+
<xsd:attribute name="custFlipHor" type="xsd:boolean" use="optional"/>
|
433
|
+
<xsd:attribute name="custSzX" type="xsd:int" use="optional"/>
|
434
|
+
<xsd:attribute name="custSzY" type="xsd:int" use="optional"/>
|
435
|
+
<xsd:attribute name="custScaleX" type="ST_PrSetCustVal" use="optional"/>
|
436
|
+
<xsd:attribute name="custScaleY" type="ST_PrSetCustVal" use="optional"/>
|
437
|
+
<xsd:attribute name="custT" type="xsd:boolean" use="optional"/>
|
438
|
+
<xsd:attribute name="custLinFactX" type="ST_PrSetCustVal" use="optional"/>
|
439
|
+
<xsd:attribute name="custLinFactY" type="ST_PrSetCustVal" use="optional"/>
|
440
|
+
<xsd:attribute name="custLinFactNeighborX" type="ST_PrSetCustVal" use="optional"/>
|
441
|
+
<xsd:attribute name="custLinFactNeighborY" type="ST_PrSetCustVal" use="optional"/>
|
442
|
+
<xsd:attribute name="custRadScaleRad" type="ST_PrSetCustVal" use="optional"/>
|
443
|
+
<xsd:attribute name="custRadScaleInc" type="ST_PrSetCustVal" use="optional"/>
|
444
|
+
</xsd:complexType>
|
445
|
+
<xsd:simpleType name="ST_Direction" final="restriction">
|
446
|
+
<xsd:restriction base="xsd:token">
|
447
|
+
<xsd:enumeration value="norm"/>
|
448
|
+
<xsd:enumeration value="rev"/>
|
449
|
+
</xsd:restriction>
|
450
|
+
</xsd:simpleType>
|
451
|
+
<xsd:simpleType name="ST_HierBranchStyle" final="restriction">
|
452
|
+
<xsd:restriction base="xsd:token">
|
453
|
+
<xsd:enumeration value="l"/>
|
454
|
+
<xsd:enumeration value="r"/>
|
455
|
+
<xsd:enumeration value="hang"/>
|
456
|
+
<xsd:enumeration value="std"/>
|
457
|
+
<xsd:enumeration value="init"/>
|
458
|
+
</xsd:restriction>
|
459
|
+
</xsd:simpleType>
|
460
|
+
<xsd:simpleType name="ST_AnimOneStr" final="restriction">
|
461
|
+
<xsd:restriction base="xsd:token">
|
462
|
+
<xsd:enumeration value="none"/>
|
463
|
+
<xsd:enumeration value="one"/>
|
464
|
+
<xsd:enumeration value="branch"/>
|
465
|
+
</xsd:restriction>
|
466
|
+
</xsd:simpleType>
|
467
|
+
<xsd:simpleType name="ST_AnimLvlStr" final="restriction">
|
468
|
+
<xsd:restriction base="xsd:token">
|
469
|
+
<xsd:enumeration value="none"/>
|
470
|
+
<xsd:enumeration value="lvl"/>
|
471
|
+
<xsd:enumeration value="ctr"/>
|
472
|
+
</xsd:restriction>
|
473
|
+
</xsd:simpleType>
|
474
|
+
<xsd:complexType name="CT_OrgChart">
|
475
|
+
<xsd:attribute name="val" type="xsd:boolean" default="false" use="optional"/>
|
476
|
+
</xsd:complexType>
|
477
|
+
<xsd:simpleType name="ST_NodeCount">
|
478
|
+
<xsd:restriction base="xsd:int">
|
479
|
+
<xsd:minInclusive value="-1"/>
|
480
|
+
</xsd:restriction>
|
481
|
+
</xsd:simpleType>
|
482
|
+
<xsd:complexType name="CT_ChildMax">
|
483
|
+
<xsd:attribute name="val" type="ST_NodeCount" default="-1" use="optional"/>
|
484
|
+
</xsd:complexType>
|
485
|
+
<xsd:complexType name="CT_ChildPref">
|
486
|
+
<xsd:attribute name="val" type="ST_NodeCount" default="-1" use="optional"/>
|
487
|
+
</xsd:complexType>
|
488
|
+
<xsd:complexType name="CT_BulletEnabled">
|
489
|
+
<xsd:attribute name="val" type="xsd:boolean" default="false" use="optional"/>
|
490
|
+
</xsd:complexType>
|
491
|
+
<xsd:complexType name="CT_Direction">
|
492
|
+
<xsd:attribute name="val" type="ST_Direction" default="norm" use="optional"/>
|
493
|
+
</xsd:complexType>
|
494
|
+
<xsd:complexType name="CT_HierBranchStyle">
|
495
|
+
<xsd:attribute name="val" type="ST_HierBranchStyle" default="std" use="optional"/>
|
496
|
+
</xsd:complexType>
|
497
|
+
<xsd:complexType name="CT_AnimOne">
|
498
|
+
<xsd:attribute name="val" type="ST_AnimOneStr" default="one" use="optional"/>
|
499
|
+
</xsd:complexType>
|
500
|
+
<xsd:complexType name="CT_AnimLvl">
|
501
|
+
<xsd:attribute name="val" type="ST_AnimLvlStr" default="none" use="optional"/>
|
502
|
+
</xsd:complexType>
|
503
|
+
<xsd:simpleType name="ST_ResizeHandlesStr" final="restriction">
|
504
|
+
<xsd:restriction base="xsd:token">
|
505
|
+
<xsd:enumeration value="exact"/>
|
506
|
+
<xsd:enumeration value="rel"/>
|
507
|
+
</xsd:restriction>
|
508
|
+
</xsd:simpleType>
|
509
|
+
<xsd:complexType name="CT_ResizeHandles">
|
510
|
+
<xsd:attribute name="val" type="ST_ResizeHandlesStr" default="rel" use="optional"/>
|
511
|
+
</xsd:complexType>
|
512
|
+
<xsd:complexType name="CT_LayoutVariablePropertySet">
|
513
|
+
<xsd:sequence>
|
514
|
+
<xsd:element name="orgChart" type="CT_OrgChart" minOccurs="0" maxOccurs="1"/>
|
515
|
+
<xsd:element name="chMax" type="CT_ChildMax" minOccurs="0" maxOccurs="1"/>
|
516
|
+
<xsd:element name="chPref" type="CT_ChildPref" minOccurs="0" maxOccurs="1"/>
|
517
|
+
<xsd:element name="bulletEnabled" type="CT_BulletEnabled" minOccurs="0" maxOccurs="1"/>
|
518
|
+
<xsd:element name="dir" type="CT_Direction" minOccurs="0" maxOccurs="1"/>
|
519
|
+
<xsd:element name="hierBranch" type="CT_HierBranchStyle" minOccurs="0" maxOccurs="1"/>
|
520
|
+
<xsd:element name="animOne" type="CT_AnimOne" minOccurs="0" maxOccurs="1"/>
|
521
|
+
<xsd:element name="animLvl" type="CT_AnimLvl" minOccurs="0" maxOccurs="1"/>
|
522
|
+
<xsd:element name="resizeHandles" type="CT_ResizeHandles" minOccurs="0" maxOccurs="1"/>
|
523
|
+
</xsd:sequence>
|
524
|
+
</xsd:complexType>
|
525
|
+
<xsd:complexType name="CT_SDName">
|
526
|
+
<xsd:attribute name="lang" type="xsd:string" use="optional" default=""/>
|
527
|
+
<xsd:attribute name="val" type="xsd:string" use="required"/>
|
528
|
+
</xsd:complexType>
|
529
|
+
<xsd:complexType name="CT_SDDescription">
|
530
|
+
<xsd:attribute name="lang" type="xsd:string" use="optional" default=""/>
|
531
|
+
<xsd:attribute name="val" type="xsd:string" use="required"/>
|
532
|
+
</xsd:complexType>
|
533
|
+
<xsd:complexType name="CT_SDCategory">
|
534
|
+
<xsd:attribute name="type" type="xsd:anyURI" use="required"/>
|
535
|
+
<xsd:attribute name="pri" type="xsd:unsignedInt" use="required"/>
|
536
|
+
</xsd:complexType>
|
537
|
+
<xsd:complexType name="CT_SDCategories">
|
538
|
+
<xsd:sequence minOccurs="0" maxOccurs="unbounded">
|
539
|
+
<xsd:element name="cat" type="CT_SDCategory" minOccurs="0" maxOccurs="unbounded"/>
|
540
|
+
</xsd:sequence>
|
541
|
+
</xsd:complexType>
|
542
|
+
<xsd:complexType name="CT_TextProps">
|
543
|
+
<xsd:sequence>
|
544
|
+
<xsd:group ref="a:EG_Text3D" minOccurs="0" maxOccurs="1"/>
|
545
|
+
</xsd:sequence>
|
546
|
+
</xsd:complexType>
|
547
|
+
<xsd:complexType name="CT_StyleLabel">
|
548
|
+
<xsd:sequence>
|
549
|
+
<xsd:element name="scene3d" type="a:CT_Scene3D" minOccurs="0" maxOccurs="1"/>
|
550
|
+
<xsd:element name="sp3d" type="a:CT_Shape3D" minOccurs="0" maxOccurs="1"/>
|
551
|
+
<xsd:element name="txPr" type="CT_TextProps" minOccurs="0" maxOccurs="1"/>
|
552
|
+
<xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
|
553
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
554
|
+
</xsd:sequence>
|
555
|
+
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
556
|
+
</xsd:complexType>
|
557
|
+
<xsd:complexType name="CT_StyleDefinition">
|
558
|
+
<xsd:sequence>
|
559
|
+
<xsd:element name="title" type="CT_SDName" minOccurs="0" maxOccurs="unbounded"/>
|
560
|
+
<xsd:element name="desc" type="CT_SDDescription" minOccurs="0" maxOccurs="unbounded"/>
|
561
|
+
<xsd:element name="catLst" type="CT_SDCategories" minOccurs="0"/>
|
562
|
+
<xsd:element name="scene3d" type="a:CT_Scene3D" minOccurs="0" maxOccurs="1"/>
|
563
|
+
<xsd:element name="styleLbl" type="CT_StyleLabel" minOccurs="1" maxOccurs="unbounded"/>
|
564
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
565
|
+
</xsd:sequence>
|
566
|
+
<xsd:attribute name="uniqueId" type="xsd:string" use="optional" default=""/>
|
567
|
+
<xsd:attribute name="minVer" type="xsd:string" use="optional"
|
568
|
+
default="http://schemas.openxmlformats.org/drawingml/2006/diagram"/>
|
569
|
+
</xsd:complexType>
|
570
|
+
<xsd:element name="styleDef" type="CT_StyleDefinition"/>
|
571
|
+
<xsd:complexType name="CT_StyleDefinitionHeader">
|
572
|
+
<xsd:sequence>
|
573
|
+
<xsd:element name="title" type="CT_SDName" minOccurs="1" maxOccurs="unbounded"/>
|
574
|
+
<xsd:element name="desc" type="CT_SDDescription" minOccurs="1" maxOccurs="unbounded"/>
|
575
|
+
<xsd:element name="catLst" type="CT_SDCategories" minOccurs="0"/>
|
576
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
577
|
+
</xsd:sequence>
|
578
|
+
<xsd:attribute name="uniqueId" type="xsd:string" use="required"/>
|
579
|
+
<xsd:attribute name="minVer" type="xsd:string" use="optional"
|
580
|
+
default="http://schemas.openxmlformats.org/drawingml/2006/diagram"/>
|
581
|
+
<xsd:attribute name="resId" type="xsd:int" use="optional" default="0"/>
|
582
|
+
</xsd:complexType>
|
583
|
+
<xsd:element name="styleDefHdr" type="CT_StyleDefinitionHeader"/>
|
584
|
+
<xsd:complexType name="CT_StyleDefinitionHeaderLst">
|
585
|
+
<xsd:sequence>
|
586
|
+
<xsd:element name="styleDefHdr" type="CT_StyleDefinitionHeader" minOccurs="0"
|
587
|
+
maxOccurs="unbounded"/>
|
588
|
+
</xsd:sequence>
|
589
|
+
</xsd:complexType>
|
590
|
+
<xsd:element name="styleDefHdrLst" type="CT_StyleDefinitionHeaderLst"/>
|
591
|
+
<xsd:simpleType name="ST_AlgorithmType" final="restriction">
|
592
|
+
<xsd:restriction base="xsd:token">
|
593
|
+
<xsd:enumeration value="composite"/>
|
594
|
+
<xsd:enumeration value="conn"/>
|
595
|
+
<xsd:enumeration value="cycle"/>
|
596
|
+
<xsd:enumeration value="hierChild"/>
|
597
|
+
<xsd:enumeration value="hierRoot"/>
|
598
|
+
<xsd:enumeration value="pyra"/>
|
599
|
+
<xsd:enumeration value="lin"/>
|
600
|
+
<xsd:enumeration value="sp"/>
|
601
|
+
<xsd:enumeration value="tx"/>
|
602
|
+
<xsd:enumeration value="snake"/>
|
603
|
+
</xsd:restriction>
|
604
|
+
</xsd:simpleType>
|
605
|
+
<xsd:simpleType name="ST_AxisType" final="restriction">
|
606
|
+
<xsd:restriction base="xsd:token">
|
607
|
+
<xsd:enumeration value="self"/>
|
608
|
+
<xsd:enumeration value="ch"/>
|
609
|
+
<xsd:enumeration value="des"/>
|
610
|
+
<xsd:enumeration value="desOrSelf"/>
|
611
|
+
<xsd:enumeration value="par"/>
|
612
|
+
<xsd:enumeration value="ancst"/>
|
613
|
+
<xsd:enumeration value="ancstOrSelf"/>
|
614
|
+
<xsd:enumeration value="followSib"/>
|
615
|
+
<xsd:enumeration value="precedSib"/>
|
616
|
+
<xsd:enumeration value="follow"/>
|
617
|
+
<xsd:enumeration value="preced"/>
|
618
|
+
<xsd:enumeration value="root"/>
|
619
|
+
<xsd:enumeration value="none"/>
|
620
|
+
</xsd:restriction>
|
621
|
+
</xsd:simpleType>
|
622
|
+
<xsd:simpleType name="ST_AxisTypes">
|
623
|
+
<xsd:list itemType="ST_AxisType"/>
|
624
|
+
</xsd:simpleType>
|
625
|
+
<xsd:simpleType name="ST_BoolOperator" final="restriction">
|
626
|
+
<xsd:restriction base="xsd:token">
|
627
|
+
<xsd:enumeration value="none"/>
|
628
|
+
<xsd:enumeration value="equ"/>
|
629
|
+
<xsd:enumeration value="gte"/>
|
630
|
+
<xsd:enumeration value="lte"/>
|
631
|
+
</xsd:restriction>
|
632
|
+
</xsd:simpleType>
|
633
|
+
<xsd:simpleType name="ST_ChildOrderType" final="restriction">
|
634
|
+
<xsd:restriction base="xsd:token">
|
635
|
+
<xsd:enumeration value="b"/>
|
636
|
+
<xsd:enumeration value="t"/>
|
637
|
+
</xsd:restriction>
|
638
|
+
</xsd:simpleType>
|
639
|
+
<xsd:simpleType name="ST_ConstraintType" final="restriction">
|
640
|
+
<xsd:restriction base="xsd:token">
|
641
|
+
<xsd:enumeration value="none"/>
|
642
|
+
<xsd:enumeration value="alignOff"/>
|
643
|
+
<xsd:enumeration value="begMarg"/>
|
644
|
+
<xsd:enumeration value="bendDist"/>
|
645
|
+
<xsd:enumeration value="begPad"/>
|
646
|
+
<xsd:enumeration value="b"/>
|
647
|
+
<xsd:enumeration value="bMarg"/>
|
648
|
+
<xsd:enumeration value="bOff"/>
|
649
|
+
<xsd:enumeration value="ctrX"/>
|
650
|
+
<xsd:enumeration value="ctrXOff"/>
|
651
|
+
<xsd:enumeration value="ctrY"/>
|
652
|
+
<xsd:enumeration value="ctrYOff"/>
|
653
|
+
<xsd:enumeration value="connDist"/>
|
654
|
+
<xsd:enumeration value="diam"/>
|
655
|
+
<xsd:enumeration value="endMarg"/>
|
656
|
+
<xsd:enumeration value="endPad"/>
|
657
|
+
<xsd:enumeration value="h"/>
|
658
|
+
<xsd:enumeration value="hArH"/>
|
659
|
+
<xsd:enumeration value="hOff"/>
|
660
|
+
<xsd:enumeration value="l"/>
|
661
|
+
<xsd:enumeration value="lMarg"/>
|
662
|
+
<xsd:enumeration value="lOff"/>
|
663
|
+
<xsd:enumeration value="r"/>
|
664
|
+
<xsd:enumeration value="rMarg"/>
|
665
|
+
<xsd:enumeration value="rOff"/>
|
666
|
+
<xsd:enumeration value="primFontSz"/>
|
667
|
+
<xsd:enumeration value="pyraAcctRatio"/>
|
668
|
+
<xsd:enumeration value="secFontSz"/>
|
669
|
+
<xsd:enumeration value="sibSp"/>
|
670
|
+
<xsd:enumeration value="secSibSp"/>
|
671
|
+
<xsd:enumeration value="sp"/>
|
672
|
+
<xsd:enumeration value="stemThick"/>
|
673
|
+
<xsd:enumeration value="t"/>
|
674
|
+
<xsd:enumeration value="tMarg"/>
|
675
|
+
<xsd:enumeration value="tOff"/>
|
676
|
+
<xsd:enumeration value="userA"/>
|
677
|
+
<xsd:enumeration value="userB"/>
|
678
|
+
<xsd:enumeration value="userC"/>
|
679
|
+
<xsd:enumeration value="userD"/>
|
680
|
+
<xsd:enumeration value="userE"/>
|
681
|
+
<xsd:enumeration value="userF"/>
|
682
|
+
<xsd:enumeration value="userG"/>
|
683
|
+
<xsd:enumeration value="userH"/>
|
684
|
+
<xsd:enumeration value="userI"/>
|
685
|
+
<xsd:enumeration value="userJ"/>
|
686
|
+
<xsd:enumeration value="userK"/>
|
687
|
+
<xsd:enumeration value="userL"/>
|
688
|
+
<xsd:enumeration value="userM"/>
|
689
|
+
<xsd:enumeration value="userN"/>
|
690
|
+
<xsd:enumeration value="userO"/>
|
691
|
+
<xsd:enumeration value="userP"/>
|
692
|
+
<xsd:enumeration value="userQ"/>
|
693
|
+
<xsd:enumeration value="userR"/>
|
694
|
+
<xsd:enumeration value="userS"/>
|
695
|
+
<xsd:enumeration value="userT"/>
|
696
|
+
<xsd:enumeration value="userU"/>
|
697
|
+
<xsd:enumeration value="userV"/>
|
698
|
+
<xsd:enumeration value="userW"/>
|
699
|
+
<xsd:enumeration value="userX"/>
|
700
|
+
<xsd:enumeration value="userY"/>
|
701
|
+
<xsd:enumeration value="userZ"/>
|
702
|
+
<xsd:enumeration value="w"/>
|
703
|
+
<xsd:enumeration value="wArH"/>
|
704
|
+
<xsd:enumeration value="wOff"/>
|
705
|
+
</xsd:restriction>
|
706
|
+
</xsd:simpleType>
|
707
|
+
<xsd:simpleType name="ST_ConstraintRelationship" final="restriction">
|
708
|
+
<xsd:restriction base="xsd:token">
|
709
|
+
<xsd:enumeration value="self"/>
|
710
|
+
<xsd:enumeration value="ch"/>
|
711
|
+
<xsd:enumeration value="des"/>
|
712
|
+
</xsd:restriction>
|
713
|
+
</xsd:simpleType>
|
714
|
+
<xsd:simpleType name="ST_ElementType" final="restriction">
|
715
|
+
<xsd:restriction base="xsd:token">
|
716
|
+
<xsd:enumeration value="all"/>
|
717
|
+
<xsd:enumeration value="doc"/>
|
718
|
+
<xsd:enumeration value="node"/>
|
719
|
+
<xsd:enumeration value="norm"/>
|
720
|
+
<xsd:enumeration value="nonNorm"/>
|
721
|
+
<xsd:enumeration value="asst"/>
|
722
|
+
<xsd:enumeration value="nonAsst"/>
|
723
|
+
<xsd:enumeration value="parTrans"/>
|
724
|
+
<xsd:enumeration value="pres"/>
|
725
|
+
<xsd:enumeration value="sibTrans"/>
|
726
|
+
</xsd:restriction>
|
727
|
+
</xsd:simpleType>
|
728
|
+
<xsd:simpleType name="ST_ElementTypes">
|
729
|
+
<xsd:list itemType="ST_ElementType"/>
|
730
|
+
</xsd:simpleType>
|
731
|
+
<xsd:simpleType name="ST_ParameterId" final="restriction">
|
732
|
+
<xsd:restriction base="xsd:token">
|
733
|
+
<xsd:enumeration value="horzAlign"/>
|
734
|
+
<xsd:enumeration value="vertAlign"/>
|
735
|
+
<xsd:enumeration value="chDir"/>
|
736
|
+
<xsd:enumeration value="chAlign"/>
|
737
|
+
<xsd:enumeration value="secChAlign"/>
|
738
|
+
<xsd:enumeration value="linDir"/>
|
739
|
+
<xsd:enumeration value="secLinDir"/>
|
740
|
+
<xsd:enumeration value="stElem"/>
|
741
|
+
<xsd:enumeration value="bendPt"/>
|
742
|
+
<xsd:enumeration value="connRout"/>
|
743
|
+
<xsd:enumeration value="begSty"/>
|
744
|
+
<xsd:enumeration value="endSty"/>
|
745
|
+
<xsd:enumeration value="dim"/>
|
746
|
+
<xsd:enumeration value="rotPath"/>
|
747
|
+
<xsd:enumeration value="ctrShpMap"/>
|
748
|
+
<xsd:enumeration value="nodeHorzAlign"/>
|
749
|
+
<xsd:enumeration value="nodeVertAlign"/>
|
750
|
+
<xsd:enumeration value="fallback"/>
|
751
|
+
<xsd:enumeration value="txDir"/>
|
752
|
+
<xsd:enumeration value="pyraAcctPos"/>
|
753
|
+
<xsd:enumeration value="pyraAcctTxMar"/>
|
754
|
+
<xsd:enumeration value="txBlDir"/>
|
755
|
+
<xsd:enumeration value="txAnchorHorz"/>
|
756
|
+
<xsd:enumeration value="txAnchorVert"/>
|
757
|
+
<xsd:enumeration value="txAnchorHorzCh"/>
|
758
|
+
<xsd:enumeration value="txAnchorVertCh"/>
|
759
|
+
<xsd:enumeration value="parTxLTRAlign"/>
|
760
|
+
<xsd:enumeration value="parTxRTLAlign"/>
|
761
|
+
<xsd:enumeration value="shpTxLTRAlignCh"/>
|
762
|
+
<xsd:enumeration value="shpTxRTLAlignCh"/>
|
763
|
+
<xsd:enumeration value="autoTxRot"/>
|
764
|
+
<xsd:enumeration value="grDir"/>
|
765
|
+
<xsd:enumeration value="flowDir"/>
|
766
|
+
<xsd:enumeration value="contDir"/>
|
767
|
+
<xsd:enumeration value="bkpt"/>
|
768
|
+
<xsd:enumeration value="off"/>
|
769
|
+
<xsd:enumeration value="hierAlign"/>
|
770
|
+
<xsd:enumeration value="bkPtFixedVal"/>
|
771
|
+
<xsd:enumeration value="stBulletLvl"/>
|
772
|
+
<xsd:enumeration value="stAng"/>
|
773
|
+
<xsd:enumeration value="spanAng"/>
|
774
|
+
<xsd:enumeration value="ar"/>
|
775
|
+
<xsd:enumeration value="lnSpPar"/>
|
776
|
+
<xsd:enumeration value="lnSpAfParP"/>
|
777
|
+
<xsd:enumeration value="lnSpCh"/>
|
778
|
+
<xsd:enumeration value="lnSpAfChP"/>
|
779
|
+
<xsd:enumeration value="rtShortDist"/>
|
780
|
+
<xsd:enumeration value="alignTx"/>
|
781
|
+
<xsd:enumeration value="pyraLvlNode"/>
|
782
|
+
<xsd:enumeration value="pyraAcctBkgdNode"/>
|
783
|
+
<xsd:enumeration value="pyraAcctTxNode"/>
|
784
|
+
<xsd:enumeration value="srcNode"/>
|
785
|
+
<xsd:enumeration value="dstNode"/>
|
786
|
+
<xsd:enumeration value="begPts"/>
|
787
|
+
<xsd:enumeration value="endPts"/>
|
788
|
+
</xsd:restriction>
|
789
|
+
</xsd:simpleType>
|
790
|
+
<xsd:simpleType name="ST_Ints">
|
791
|
+
<xsd:list itemType="xsd:int"/>
|
792
|
+
</xsd:simpleType>
|
793
|
+
<xsd:simpleType name="ST_UnsignedInts">
|
794
|
+
<xsd:list itemType="xsd:unsignedInt"/>
|
795
|
+
</xsd:simpleType>
|
796
|
+
<xsd:simpleType name="ST_Booleans">
|
797
|
+
<xsd:list itemType="xsd:boolean"/>
|
798
|
+
</xsd:simpleType>
|
799
|
+
<xsd:simpleType name="ST_FunctionType" final="restriction">
|
800
|
+
<xsd:restriction base="xsd:token">
|
801
|
+
<xsd:enumeration value="cnt"/>
|
802
|
+
<xsd:enumeration value="pos"/>
|
803
|
+
<xsd:enumeration value="revPos"/>
|
804
|
+
<xsd:enumeration value="posEven"/>
|
805
|
+
<xsd:enumeration value="posOdd"/>
|
806
|
+
<xsd:enumeration value="var"/>
|
807
|
+
<xsd:enumeration value="depth"/>
|
808
|
+
<xsd:enumeration value="maxDepth"/>
|
809
|
+
</xsd:restriction>
|
810
|
+
</xsd:simpleType>
|
811
|
+
<xsd:simpleType name="ST_FunctionOperator" final="restriction">
|
812
|
+
<xsd:restriction base="xsd:token">
|
813
|
+
<xsd:enumeration value="equ"/>
|
814
|
+
<xsd:enumeration value="neq"/>
|
815
|
+
<xsd:enumeration value="gt"/>
|
816
|
+
<xsd:enumeration value="lt"/>
|
817
|
+
<xsd:enumeration value="gte"/>
|
818
|
+
<xsd:enumeration value="lte"/>
|
819
|
+
</xsd:restriction>
|
820
|
+
</xsd:simpleType>
|
821
|
+
<xsd:simpleType name="ST_DiagramHorizontalAlignment" final="restriction">
|
822
|
+
<xsd:restriction base="xsd:token">
|
823
|
+
<xsd:enumeration value="l"/>
|
824
|
+
<xsd:enumeration value="ctr"/>
|
825
|
+
<xsd:enumeration value="r"/>
|
826
|
+
<xsd:enumeration value="none"/>
|
827
|
+
</xsd:restriction>
|
828
|
+
</xsd:simpleType>
|
829
|
+
<xsd:simpleType name="ST_VerticalAlignment" final="restriction">
|
830
|
+
<xsd:restriction base="xsd:token">
|
831
|
+
<xsd:enumeration value="t"/>
|
832
|
+
<xsd:enumeration value="mid"/>
|
833
|
+
<xsd:enumeration value="b"/>
|
834
|
+
<xsd:enumeration value="none"/>
|
835
|
+
</xsd:restriction>
|
836
|
+
</xsd:simpleType>
|
837
|
+
<xsd:simpleType name="ST_ChildDirection" final="restriction">
|
838
|
+
<xsd:restriction base="xsd:token">
|
839
|
+
<xsd:enumeration value="horz"/>
|
840
|
+
<xsd:enumeration value="vert"/>
|
841
|
+
</xsd:restriction>
|
842
|
+
</xsd:simpleType>
|
843
|
+
<xsd:simpleType name="ST_ChildAlignment" final="restriction">
|
844
|
+
<xsd:restriction base="xsd:token">
|
845
|
+
<xsd:enumeration value="t"/>
|
846
|
+
<xsd:enumeration value="b"/>
|
847
|
+
<xsd:enumeration value="l"/>
|
848
|
+
<xsd:enumeration value="r"/>
|
849
|
+
</xsd:restriction>
|
850
|
+
</xsd:simpleType>
|
851
|
+
<xsd:simpleType name="ST_SecondaryChildAlignment" final="restriction">
|
852
|
+
<xsd:restriction base="xsd:token">
|
853
|
+
<xsd:enumeration value="none"/>
|
854
|
+
<xsd:enumeration value="t"/>
|
855
|
+
<xsd:enumeration value="b"/>
|
856
|
+
<xsd:enumeration value="l"/>
|
857
|
+
<xsd:enumeration value="r"/>
|
858
|
+
</xsd:restriction>
|
859
|
+
</xsd:simpleType>
|
860
|
+
<xsd:simpleType name="ST_LinearDirection" final="restriction">
|
861
|
+
<xsd:restriction base="xsd:token">
|
862
|
+
<xsd:enumeration value="fromL"/>
|
863
|
+
<xsd:enumeration value="fromR"/>
|
864
|
+
<xsd:enumeration value="fromT"/>
|
865
|
+
<xsd:enumeration value="fromB"/>
|
866
|
+
</xsd:restriction>
|
867
|
+
</xsd:simpleType>
|
868
|
+
<xsd:simpleType name="ST_SecondaryLinearDirection" final="restriction">
|
869
|
+
<xsd:restriction base="xsd:token">
|
870
|
+
<xsd:enumeration value="none"/>
|
871
|
+
<xsd:enumeration value="fromL"/>
|
872
|
+
<xsd:enumeration value="fromR"/>
|
873
|
+
<xsd:enumeration value="fromT"/>
|
874
|
+
<xsd:enumeration value="fromB"/>
|
875
|
+
</xsd:restriction>
|
876
|
+
</xsd:simpleType>
|
877
|
+
<xsd:simpleType name="ST_StartingElement" final="restriction">
|
878
|
+
<xsd:restriction base="xsd:token">
|
879
|
+
<xsd:enumeration value="node"/>
|
880
|
+
<xsd:enumeration value="trans"/>
|
881
|
+
</xsd:restriction>
|
882
|
+
</xsd:simpleType>
|
883
|
+
<xsd:simpleType name="ST_RotationPath" final="restriction">
|
884
|
+
<xsd:restriction base="xsd:token">
|
885
|
+
<xsd:enumeration value="none"/>
|
886
|
+
<xsd:enumeration value="alongPath"/>
|
887
|
+
</xsd:restriction>
|
888
|
+
</xsd:simpleType>
|
889
|
+
<xsd:simpleType name="ST_CenterShapeMapping" final="restriction">
|
890
|
+
<xsd:restriction base="xsd:token">
|
891
|
+
<xsd:enumeration value="none"/>
|
892
|
+
<xsd:enumeration value="fNode"/>
|
893
|
+
</xsd:restriction>
|
894
|
+
</xsd:simpleType>
|
895
|
+
<xsd:simpleType name="ST_BendPoint" final="restriction">
|
896
|
+
<xsd:restriction base="xsd:token">
|
897
|
+
<xsd:enumeration value="beg"/>
|
898
|
+
<xsd:enumeration value="def"/>
|
899
|
+
<xsd:enumeration value="end"/>
|
900
|
+
</xsd:restriction>
|
901
|
+
</xsd:simpleType>
|
902
|
+
<xsd:simpleType name="ST_ConnectorRouting" final="restriction">
|
903
|
+
<xsd:restriction base="xsd:token">
|
904
|
+
<xsd:enumeration value="stra"/>
|
905
|
+
<xsd:enumeration value="bend"/>
|
906
|
+
<xsd:enumeration value="curve"/>
|
907
|
+
<xsd:enumeration value="longCurve"/>
|
908
|
+
</xsd:restriction>
|
909
|
+
</xsd:simpleType>
|
910
|
+
<xsd:simpleType name="ST_ArrowheadStyle" final="restriction">
|
911
|
+
<xsd:restriction base="xsd:token">
|
912
|
+
<xsd:enumeration value="auto"/>
|
913
|
+
<xsd:enumeration value="arr"/>
|
914
|
+
<xsd:enumeration value="noArr"/>
|
915
|
+
</xsd:restriction>
|
916
|
+
</xsd:simpleType>
|
917
|
+
<xsd:simpleType name="ST_ConnectorDimension" final="restriction">
|
918
|
+
<xsd:restriction base="xsd:token">
|
919
|
+
<xsd:enumeration value="1D"/>
|
920
|
+
<xsd:enumeration value="2D"/>
|
921
|
+
<xsd:enumeration value="cust"/>
|
922
|
+
</xsd:restriction>
|
923
|
+
</xsd:simpleType>
|
924
|
+
<xsd:simpleType name="ST_ConnectorPoint" final="restriction">
|
925
|
+
<xsd:restriction base="xsd:token">
|
926
|
+
<xsd:enumeration value="auto"/>
|
927
|
+
<xsd:enumeration value="bCtr"/>
|
928
|
+
<xsd:enumeration value="ctr"/>
|
929
|
+
<xsd:enumeration value="midL"/>
|
930
|
+
<xsd:enumeration value="midR"/>
|
931
|
+
<xsd:enumeration value="tCtr"/>
|
932
|
+
<xsd:enumeration value="bL"/>
|
933
|
+
<xsd:enumeration value="bR"/>
|
934
|
+
<xsd:enumeration value="tL"/>
|
935
|
+
<xsd:enumeration value="tR"/>
|
936
|
+
<xsd:enumeration value="radial"/>
|
937
|
+
</xsd:restriction>
|
938
|
+
</xsd:simpleType>
|
939
|
+
<xsd:simpleType name="ST_NodeHorizontalAlignment" final="restriction">
|
940
|
+
<xsd:restriction base="xsd:token">
|
941
|
+
<xsd:enumeration value="l"/>
|
942
|
+
<xsd:enumeration value="ctr"/>
|
943
|
+
<xsd:enumeration value="r"/>
|
944
|
+
</xsd:restriction>
|
945
|
+
</xsd:simpleType>
|
946
|
+
<xsd:simpleType name="ST_NodeVerticalAlignment" final="restriction">
|
947
|
+
<xsd:restriction base="xsd:token">
|
948
|
+
<xsd:enumeration value="t"/>
|
949
|
+
<xsd:enumeration value="mid"/>
|
950
|
+
<xsd:enumeration value="b"/>
|
951
|
+
</xsd:restriction>
|
952
|
+
</xsd:simpleType>
|
953
|
+
<xsd:simpleType name="ST_FallbackDimension" final="restriction">
|
954
|
+
<xsd:restriction base="xsd:token">
|
955
|
+
<xsd:enumeration value="1D"/>
|
956
|
+
<xsd:enumeration value="2D"/>
|
957
|
+
</xsd:restriction>
|
958
|
+
</xsd:simpleType>
|
959
|
+
<xsd:simpleType name="ST_TextDirection" final="restriction">
|
960
|
+
<xsd:restriction base="xsd:token">
|
961
|
+
<xsd:enumeration value="fromT"/>
|
962
|
+
<xsd:enumeration value="fromB"/>
|
963
|
+
</xsd:restriction>
|
964
|
+
</xsd:simpleType>
|
965
|
+
<xsd:simpleType name="ST_PyramidAccentPosition" final="restriction">
|
966
|
+
<xsd:restriction base="xsd:token">
|
967
|
+
<xsd:enumeration value="bef"/>
|
968
|
+
<xsd:enumeration value="aft"/>
|
969
|
+
</xsd:restriction>
|
970
|
+
</xsd:simpleType>
|
971
|
+
<xsd:simpleType name="ST_PyramidAccentTextMargin" final="restriction">
|
972
|
+
<xsd:restriction base="xsd:token">
|
973
|
+
<xsd:enumeration value="step"/>
|
974
|
+
<xsd:enumeration value="stack"/>
|
975
|
+
</xsd:restriction>
|
976
|
+
</xsd:simpleType>
|
977
|
+
<xsd:simpleType name="ST_TextBlockDirection" final="restriction">
|
978
|
+
<xsd:restriction base="xsd:token">
|
979
|
+
<xsd:enumeration value="horz"/>
|
980
|
+
<xsd:enumeration value="vert"/>
|
981
|
+
</xsd:restriction>
|
982
|
+
</xsd:simpleType>
|
983
|
+
<xsd:simpleType name="ST_TextAnchorHorizontal" final="restriction">
|
984
|
+
<xsd:restriction base="xsd:token">
|
985
|
+
<xsd:enumeration value="none"/>
|
986
|
+
<xsd:enumeration value="ctr"/>
|
987
|
+
</xsd:restriction>
|
988
|
+
</xsd:simpleType>
|
989
|
+
<xsd:simpleType name="ST_TextAnchorVertical" final="restriction">
|
990
|
+
<xsd:restriction base="xsd:token">
|
991
|
+
<xsd:enumeration value="t"/>
|
992
|
+
<xsd:enumeration value="mid"/>
|
993
|
+
<xsd:enumeration value="b"/>
|
994
|
+
</xsd:restriction>
|
995
|
+
</xsd:simpleType>
|
996
|
+
<xsd:simpleType name="ST_DiagramTextAlignment" final="restriction">
|
997
|
+
<xsd:restriction base="xsd:token">
|
998
|
+
<xsd:enumeration value="l"/>
|
999
|
+
<xsd:enumeration value="ctr"/>
|
1000
|
+
<xsd:enumeration value="r"/>
|
1001
|
+
</xsd:restriction>
|
1002
|
+
</xsd:simpleType>
|
1003
|
+
<xsd:simpleType name="ST_AutoTextRotation" final="restriction">
|
1004
|
+
<xsd:restriction base="xsd:token">
|
1005
|
+
<xsd:enumeration value="none"/>
|
1006
|
+
<xsd:enumeration value="upr"/>
|
1007
|
+
<xsd:enumeration value="grav"/>
|
1008
|
+
</xsd:restriction>
|
1009
|
+
</xsd:simpleType>
|
1010
|
+
<xsd:simpleType name="ST_GrowDirection" final="restriction">
|
1011
|
+
<xsd:restriction base="xsd:token">
|
1012
|
+
<xsd:enumeration value="tL"/>
|
1013
|
+
<xsd:enumeration value="tR"/>
|
1014
|
+
<xsd:enumeration value="bL"/>
|
1015
|
+
<xsd:enumeration value="bR"/>
|
1016
|
+
</xsd:restriction>
|
1017
|
+
</xsd:simpleType>
|
1018
|
+
<xsd:simpleType name="ST_FlowDirection" final="restriction">
|
1019
|
+
<xsd:restriction base="xsd:token">
|
1020
|
+
<xsd:enumeration value="row"/>
|
1021
|
+
<xsd:enumeration value="col"/>
|
1022
|
+
</xsd:restriction>
|
1023
|
+
</xsd:simpleType>
|
1024
|
+
<xsd:simpleType name="ST_ContinueDirection" final="restriction">
|
1025
|
+
<xsd:restriction base="xsd:token">
|
1026
|
+
<xsd:enumeration value="revDir"/>
|
1027
|
+
<xsd:enumeration value="sameDir"/>
|
1028
|
+
</xsd:restriction>
|
1029
|
+
</xsd:simpleType>
|
1030
|
+
<xsd:simpleType name="ST_Breakpoint" final="restriction">
|
1031
|
+
<xsd:restriction base="xsd:token">
|
1032
|
+
<xsd:enumeration value="endCnv"/>
|
1033
|
+
<xsd:enumeration value="bal"/>
|
1034
|
+
<xsd:enumeration value="fixed"/>
|
1035
|
+
</xsd:restriction>
|
1036
|
+
</xsd:simpleType>
|
1037
|
+
<xsd:simpleType name="ST_Offset" final="restriction">
|
1038
|
+
<xsd:restriction base="xsd:token">
|
1039
|
+
<xsd:enumeration value="ctr"/>
|
1040
|
+
<xsd:enumeration value="off"/>
|
1041
|
+
</xsd:restriction>
|
1042
|
+
</xsd:simpleType>
|
1043
|
+
<xsd:simpleType name="ST_HierarchyAlignment" final="restriction">
|
1044
|
+
<xsd:restriction base="xsd:token">
|
1045
|
+
<xsd:enumeration value="tL"/>
|
1046
|
+
<xsd:enumeration value="tR"/>
|
1047
|
+
<xsd:enumeration value="tCtrCh"/>
|
1048
|
+
<xsd:enumeration value="tCtrDes"/>
|
1049
|
+
<xsd:enumeration value="bL"/>
|
1050
|
+
<xsd:enumeration value="bR"/>
|
1051
|
+
<xsd:enumeration value="bCtrCh"/>
|
1052
|
+
<xsd:enumeration value="bCtrDes"/>
|
1053
|
+
<xsd:enumeration value="lT"/>
|
1054
|
+
<xsd:enumeration value="lB"/>
|
1055
|
+
<xsd:enumeration value="lCtrCh"/>
|
1056
|
+
<xsd:enumeration value="lCtrDes"/>
|
1057
|
+
<xsd:enumeration value="rT"/>
|
1058
|
+
<xsd:enumeration value="rB"/>
|
1059
|
+
<xsd:enumeration value="rCtrCh"/>
|
1060
|
+
<xsd:enumeration value="rCtrDes"/>
|
1061
|
+
</xsd:restriction>
|
1062
|
+
</xsd:simpleType>
|
1063
|
+
<xsd:simpleType name="ST_FunctionValue" final="restriction">
|
1064
|
+
<xsd:union
|
1065
|
+
memberTypes="xsd:int xsd:boolean ST_Direction ST_HierBranchStyle ST_AnimOneStr ST_AnimLvlStr ST_ResizeHandlesStr"
|
1066
|
+
/>
|
1067
|
+
</xsd:simpleType>
|
1068
|
+
<xsd:simpleType name="ST_VariableType" final="restriction">
|
1069
|
+
<xsd:restriction base="xsd:token">
|
1070
|
+
<xsd:enumeration value="none"/>
|
1071
|
+
<xsd:enumeration value="orgChart"/>
|
1072
|
+
<xsd:enumeration value="chMax"/>
|
1073
|
+
<xsd:enumeration value="chPref"/>
|
1074
|
+
<xsd:enumeration value="bulEnabled"/>
|
1075
|
+
<xsd:enumeration value="dir"/>
|
1076
|
+
<xsd:enumeration value="hierBranch"/>
|
1077
|
+
<xsd:enumeration value="animOne"/>
|
1078
|
+
<xsd:enumeration value="animLvl"/>
|
1079
|
+
<xsd:enumeration value="resizeHandles"/>
|
1080
|
+
</xsd:restriction>
|
1081
|
+
</xsd:simpleType>
|
1082
|
+
<xsd:simpleType name="ST_FunctionArgument" final="restriction">
|
1083
|
+
<xsd:union memberTypes="ST_VariableType"/>
|
1084
|
+
</xsd:simpleType>
|
1085
|
+
<xsd:simpleType name="ST_OutputShapeType" final="restriction">
|
1086
|
+
<xsd:restriction base="xsd:token">
|
1087
|
+
<xsd:enumeration value="none"/>
|
1088
|
+
<xsd:enumeration value="conn"/>
|
1089
|
+
</xsd:restriction>
|
1090
|
+
</xsd:simpleType>
|
1091
|
+
</xsd:schema>
|