home *** CD-ROM | disk | FTP | other *** search
- <!-- gda-report-result.dtd
- *
- * Copyright (C) 1998-2003 The GNOME Foundation.
- *
- * AUTHORS:
- * Santi Camps <santi@gnome-db.org>
- *
- * This Library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public License as
- * published by the Free Software Foundation; either version 2 of the
- * License, or (at your option) any later version.
- *
- * This Library 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
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this Library; see the file COPYING.LIB. If not,
- * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- -->
-
- <!ENTITY % reportelement "line|text|picture">
- <!ENTITY % linestyle "none|solid|dash|dot|dashdot|dashdotdot">
- <!ENTITY % fontweight "light|normal|semibold|bold|black">
-
-
- <!ELEMENT report (page+)>
- <!ATTLIST report
- units (inch|cm|pt) "cm"
- >
-
-
- <!ELEMENT page (font*)>
- <!ATTLIST page
- pagesize (A3|A4|A5|A6|B3|B4|B5|B6|letter|legal|executive) "A4"
- orientation (portrait|landscape) "portrait"
- bgcolor NMTOKENS "255 255 255"
- >
-
- <!ELEMENT font ((%reportelement;)*)>
- <!ATTLIST font
- fontfamily NMTOKEN "Helvetica"
- fontsize NMTOKEN "10"
- fontweight (%fontweight;) "normal"
- fontitalic (yes|no) "no"
- >
-
- <!ELEMENT picture EMPTY>
- <!ATTLIST picture
- active (yes|no) "yes"
- visible (yes|no) "yes"
- x NMTOKEN #REQUIRED
- y NMTOKEN #REQUIRED
- width NMTOKEN #REQUIRED
- height NMTOKEN #REQUIRED
- size (cut|scale) "scale"
- aspectratio (fixed|float) "fixed"
- format NMTOKEN #REQUIRED
- source (intern|extern) #REQUIRED
- data CDATA #REQUIRED
- >
-
-
- <!ELEMENT line EMPTY>
- <!ATTLIST line
- active (yes|no) "yes"
- visible (yes|no) "yes"
- x1 NMTOKEN #REQUIRED
- y1 NMTOKEN #REQUIRED
- x2 NMTOKEN #REQUIRED
- y2 NMTOKEN #REQUIRED
- linewidth NMTOKEN #IMPLIED
- linecolor NMTOKENS #IMPLIED
- linestyle (%linestyle;) #IMPLIED
- >
-
-
- <!ELEMENT text EMPTY>
- <!ATTLIST text
- value CDATA #REQUIRED
- x NMTOKEN #REQUIRED
- y NMTOKEN #REQUIRED
- width NMTOKEN #REQUIRED
- height NMTOKEN #REQUIRED
- bgcolor NMTOKENS #IMPLIED
- fgcolor NMTOKENS #IMPLIED
- bordercolor NMTOKENS #IMPLIED
- borderwidth NMTOKEN #IMPLIED
- borderstyle (%linestyle;) #IMPLIED
- wordwrap (yes|no) "no"
- negvaluecolor NMTOKENS "255 0 0"
- >
-