home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 September / VPR0309.ISO / OPENOFFICE / install / f_0184 / toolbar.dtd
Extensible Markup Language  |  2001-10-17  |  4KB  |  94 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3.     $Id: toolbar.dtd,v 1.6 2001/10/17 10:57:37 cd Exp $
  4.  
  5.    The Contents of this file are made available subject to the terms of
  6.    either of the following licenses
  7.  
  8.           - GNU Lesser General Public License Version 2.1
  9.           - Sun Industry Standards Source License Version 1.1
  10.  
  11.    Sun Microsystems Inc., October, 2000
  12.  
  13.    GNU Lesser General Public License Version 2.1
  14.    =============================================
  15.    Copyright 2000 by Sun Microsystems, Inc.
  16.    901 San Antonio Road, Palo Alto, CA 94303, USA
  17.  
  18.    This library is free software; you can redistribute it and/or
  19.    modify it under the terms of the GNU Lesser General Public
  20.    License version 2.1, as published by the Free Software Foundation.
  21.  
  22.    This library is distributed in the hope that it will be useful,
  23.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  24.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  25.    Lesser General Public License for more details.
  26.  
  27.    You should have received a copy of the GNU Lesser General Public
  28.    License along with this library; if not, write to the Free Software
  29.    Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  30.    MA  02111-1307  USA
  31.  
  32.  
  33.    Sun Industry Standards Source License Version 1.1
  34.    =================================================
  35.    The contents of this file are subject to the Sun Industry Standards
  36.    Source License Version 1.1 (the "License"); You may not use this file
  37.    except in compliance with the License. You may obtain a copy of the
  38.    License at http://www.openoffice.org/license.html.
  39.  
  40.    Software provided under this License is provided on an "AS IS" basis,
  41.    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
  42.    WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
  43.    MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
  44.    See the License for the specific provisions governing your rights and
  45.    obligations concerning the Software.
  46.  
  47.    The Initial Developer of the Original Code is: Sun Microsystems, Inc.
  48.  
  49.    Copyright: 2000 by Sun Microsystems, Inc.
  50.  
  51.    All Rights Reserved.
  52.  
  53.    Contributor(s): _______________________________________
  54. -->
  55. <!ENTITY % boolean "(true|false)">
  56. <!ENTITY % numeric "CDATA">
  57. <!ENTITY % alignment "(top|bottom|left|right)">
  58. <!ENTITY % style "(symbol|text|symboltext)">
  59. <!ELEMENT toolbar:toolbar (toolbar:toolbaritem | toolbar:toolbarspace | toolbar:toolbarbreak | toolbar:toolbarseparator)*>
  60. <!ATTLIST toolbar:toolbar
  61.     xmlns:toolbar CDATA #FIXED "http://openoffice.org/2001/toolbar"
  62.     xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink"
  63. >
  64. <!ELEMENT toolbar:toolbaritem EMPTY>
  65. <!ATTLIST toolbar:toolbaritem
  66.     xlink:href CDATA #REQUIRED
  67.     toolbar:visible %boolean; "true"
  68.     toolbar:userdefined %boolean; "false"
  69.     toolbar:text CDATA #IMPLIED
  70.     toolbar:width %numeric; "0"
  71.     toolbar:style CDATA #IMPLIED
  72.     toolbar:bitmap CDATA #IMPLIED
  73.     toolbar:helpid CDATA #IMPLIED
  74. >
  75. <!ELEMENT toolbar:toolbarspace EMPTY>
  76. <!ELEMENT toolbar:toolbarbreak EMPTY>
  77. <!ELEMENT toolbar:toolbarseparator EMPTY>
  78. <!ELEMENT toolbar:toolbarlayouts (toolbar:toolbarlayout*)>
  79. <!ATTLIST toolbar:toolbarlayouts
  80.     xmlns:toolbar CDATA #FIXED "http://openoffice.org/2001/toolbar"
  81. >
  82. <!ELEMENT toolbar:toolbarlayout EMPTY>
  83. <!ATTLIST toolbar:toolbarlayout
  84.     toolbar:id CDATA #REQUIRED
  85.     toolbar:floatingposleft %numeric; #IMPLIED
  86.     toolbar:floatingpostop %numeric; #IMPLIED
  87.     toolbar:floatinglines %numeric; "0"
  88.     toolbar:dockinglines %numeric; "1"
  89.     toolbar:align %alignment; "left"
  90.     toolbar:visible %boolean; "false"
  91.     toolbar:floating %boolean; "false"
  92.     toolbar:style %style; "symbol"
  93. >
  94.