home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / libgda / xml / gda-report-result.dtd next >
Encoding:
Text File  |  2006-07-06  |  3.1 KB  |  95 lines

  1. <!-- gda-report-result.dtd
  2.  *
  3.  * Copyright (C) 1998-2003 The GNOME Foundation.
  4.  *
  5.  * AUTHORS:
  6.  *    Santi Camps <santi@gnome-db.org>
  7.  *
  8.  * This Library is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU Library General Public License as
  10.  * published by the Free Software Foundation; either version 2 of the
  11.  * License, or (at your option) any later version.
  12.  *
  13.  * This Library is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.  * Library General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU Library General Public
  19.  * License along with this Library; see the file COPYING.LIB.  If not,
  20.  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  21.  * Boston, MA 02111-1307, USA.
  22. -->
  23.  
  24. <!ENTITY % reportelement   "line|text|picture">
  25. <!ENTITY % linestyle       "none|solid|dash|dot|dashdot|dashdotdot">
  26. <!ENTITY % fontweight      "light|normal|semibold|bold|black">
  27.  
  28.  
  29. <!ELEMENT report (page+)>
  30. <!ATTLIST report
  31.   units           (inch|cm|pt)      "cm"
  32. >
  33.  
  34.  
  35. <!ELEMENT page (font*)>
  36. <!ATTLIST page
  37.   pagesize        (A3|A4|A5|A6|B3|B4|B5|B6|letter|legal|executive) "A4"
  38.   orientation     (portrait|landscape) "portrait"
  39.   bgcolor         NMTOKENS          "255 255 255"
  40. >
  41.  
  42. <!ELEMENT font ((%reportelement;)*)>
  43. <!ATTLIST font
  44.   fontfamily      NMTOKEN           "Helvetica"
  45.   fontsize        NMTOKEN           "10"
  46.   fontweight      (%fontweight;)    "normal"
  47.   fontitalic      (yes|no)          "no"
  48. >
  49.  
  50. <!ELEMENT picture EMPTY>
  51. <!ATTLIST picture 
  52.   active          (yes|no)          "yes"
  53.   visible         (yes|no)          "yes"
  54.   x               NMTOKEN           #REQUIRED
  55.   y               NMTOKEN           #REQUIRED
  56.   width           NMTOKEN           #REQUIRED
  57.   height          NMTOKEN           #REQUIRED
  58.   size            (cut|scale)       "scale"
  59.   aspectratio     (fixed|float)     "fixed"
  60.   format          NMTOKEN           #REQUIRED
  61.   source          (intern|extern)   #REQUIRED
  62.   data            CDATA             #REQUIRED
  63. >
  64.  
  65.  
  66. <!ELEMENT line EMPTY>
  67. <!ATTLIST line 
  68.   active          (yes|no)          "yes"
  69.   visible         (yes|no)          "yes"
  70.   x1              NMTOKEN           #REQUIRED
  71.   y1              NMTOKEN           #REQUIRED
  72.   x2              NMTOKEN           #REQUIRED
  73.   y2              NMTOKEN           #REQUIRED
  74.   linewidth       NMTOKEN           #IMPLIED
  75.   linecolor       NMTOKENS          #IMPLIED
  76.   linestyle       (%linestyle;)     #IMPLIED
  77. >
  78.  
  79.  
  80. <!ELEMENT text EMPTY>
  81. <!ATTLIST text 
  82.   value           CDATA             #REQUIRED
  83.   x               NMTOKEN           #REQUIRED
  84.   y               NMTOKEN           #REQUIRED
  85.   width           NMTOKEN           #REQUIRED
  86.   height          NMTOKEN           #REQUIRED
  87.   bgcolor         NMTOKENS          #IMPLIED
  88.   fgcolor         NMTOKENS          #IMPLIED
  89.   bordercolor     NMTOKENS          #IMPLIED
  90.   borderwidth     NMTOKEN           #IMPLIED
  91.   borderstyle     (%linestyle;)     #IMPLIED
  92.   wordwrap        (yes|no)          "no"
  93.   negvaluecolor   NMTOKENS          "255 0 0"
  94. >
  95.