summaryrefslogtreecommitdiff
path: root/reportbuilder/java/com/sun/star/report/pentaho/styles/stylemapper.xsd
blob: 905dbc8464d6268f7b10e85788d03007bf0adea7 (plain)
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
<!--

  DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  
  Copyright 2008 by Sun Microsystems, Inc.
 
  OpenOffice.org - a multi-platform office productivity suite
 
  $RCSfile: stylemapper.xsd,v $
 
  $Revision: 1.3 $
 
  This file is part of OpenOffice.org.
 
  OpenOffice.org is free software: you can redistribute it and/or modify
  it under the terms of the GNU Lesser General Public License version 3
  only, as published by the Free Software Foundation.
 
  OpenOffice.org is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU Lesser General Public License version 3 for more details
  (a copy is included in the LICENSE file that accompanied this code).
 
  You should have received a copy of the GNU Lesser General Public License
  version 3 along with OpenOffice.org.  If not, see
  <http://www.openoffice.org/license.html>
  for a copy of the LGPLv3 License.
 
  -->

<xsd:schema version="0.9"
            xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns="http://jfreereport.sourceforge.net/namespaces/engine/openoffice/stylemapper"
            targetNamespace="http://jfreereport.sourceforge.net/namespaces/engine/openoffice/stylemapper"
            attributeFormDefault="unqualified">
  <xsd:annotation>
    <xsd:documentation>
      This schema describes the format of the stylemapper definition file.
      The stylemapper declares what style-families are referenced by an element.
    </xsd:documentation>
  </xsd:annotation>

  <xsd:simpleType name="styleNameRefType">
    <xsd:restriction base="xsd:NMTOKEN">
      <xsd:enumeration value="styleNameRef"/>
      <xsd:enumeration value="styleNameRefs"/>
    </xsd:restriction>
  </xsd:simpleType>

  <xsd:simpleType name="styleFamilyType">
    <xsd:restriction base="xsd:NMTOKEN">
      <xsd:enumeration value="paragraph"/>
      <xsd:enumeration value="text"/>
      <xsd:enumeration value="section"/>
      <xsd:enumeration value="table"/>
      <xsd:enumeration value="table-column"/>
      <xsd:enumeration value="table-row"/>
      <xsd:enumeration value="table-cell"/>
      <xsd:enumeration value="table-page"/>
      <xsd:enumeration value="chart"/>
      <xsd:enumeration value="default"/>
      <xsd:enumeration value="drawing-page"/>
      <xsd:enumeration value="graphic"/>
      <xsd:enumeration value="presentation"/>
      <xsd:enumeration value="control"/>
      <xsd:enumeration value="ruby"/>
      <xsd:enumeration value="custom-shape"/>
    </xsd:restriction>
  </xsd:simpleType>

  <xsd:element name="mapping">
    <xsd:complexType>
      <xsd:attribute name="element-namespace" use="required" type="xsd:anyURI"/>
      <xsd:attribute name="element-name"  use="required" type="xsd:NCName"/>
      <xsd:attribute name="attribute-namespace"  use="required" type="xsd:anyURI"/>
      <xsd:attribute name="attribute-name"  use="required" type="xsd:NCName"/>
      <xsd:attribute name="type"  use="required" type="styleNameRefType"/>
      <xsd:attribute name="style-family"  use="required" type="styleFamilyType"/>
    </xsd:complexType>
  </xsd:element>

  <xsd:element name="style-mapper-definition">
    <xsd:complexType>
      <xsd:complexContent>
        <xsd:restriction base="xsd:anyType">
          <xsd:sequence>
            <xsd:element ref="mapping" minOccurs="0" maxOccurs="unbounded"/>
          </xsd:sequence>
        </xsd:restriction>
      </xsd:complexContent>
    </xsd:complexType>
  </xsd:element>

</xsd:schema>