1*cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?> 2*cdf0e10cSrcweir<!-- 3*cdf0e10cSrcweir 4*cdf0e10cSrcweir DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5*cdf0e10cSrcweir 6*cdf0e10cSrcweir Copyright 2000, 2010 Oracle and/or its affiliates. 7*cdf0e10cSrcweir 8*cdf0e10cSrcweir OpenOffice.org - a multi-platform office productivity suite 9*cdf0e10cSrcweir 10*cdf0e10cSrcweir This file is part of OpenOffice.org. 11*cdf0e10cSrcweir 12*cdf0e10cSrcweir OpenOffice.org is free software: you can redistribute it and/or modify 13*cdf0e10cSrcweir it under the terms of the GNU Lesser General Public License version 3 14*cdf0e10cSrcweir only, as published by the Free Software Foundation. 15*cdf0e10cSrcweir 16*cdf0e10cSrcweir OpenOffice.org is distributed in the hope that it will be useful, 17*cdf0e10cSrcweir but WITHOUT ANY WARRANTY; without even the implied warranty of 18*cdf0e10cSrcweir MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19*cdf0e10cSrcweir GNU Lesser General Public License version 3 for more details 20*cdf0e10cSrcweir (a copy is included in the LICENSE file that accompanied this code). 21*cdf0e10cSrcweir 22*cdf0e10cSrcweir You should have received a copy of the GNU Lesser General Public License 23*cdf0e10cSrcweir version 3 along with OpenOffice.org. If not, see 24*cdf0e10cSrcweir <http://www.openoffice.org/license.html> 25*cdf0e10cSrcweir for a copy of the LGPLv3 License. 26*cdf0e10cSrcweir 27*cdf0e10cSrcweir--> 28*cdf0e10cSrcweir 29*cdf0e10cSrcweir<!ENTITY % boolean "(true|false)"> 30*cdf0e10cSrcweir<!ENTITY % numeric "CDATA"> 31*cdf0e10cSrcweir 32*cdf0e10cSrcweir<!ENTITY % default-attributes "dlg:id CDATA #REQUIRED 33*cdf0e10cSrcweir dlg:left %numeric; #REQUIRED 34*cdf0e10cSrcweir dlg:top %numeric; #REQUIRED 35*cdf0e10cSrcweir dlg:width %numeric; #REQUIRED 36*cdf0e10cSrcweir dlg:height %numeric; #REQUIRED 37*cdf0e10cSrcweir dlg:style-id CDATA #IMPLIED 38*cdf0e10cSrcweir dlg:tab-index %numeric; #IMPLIED 39*cdf0e10cSrcweir dlg:disabled %boolean; #IMPLIED 40*cdf0e10cSrcweir dlg:printable %boolean; #IMPLIED 41*cdf0e10cSrcweir dlg:page %numeric; #IMPLIED 42*cdf0e10cSrcweir dlg:tag CDATA #IMPLIED 43*cdf0e10cSrcweir dlg:help-text CDATA #IMPLIED 44*cdf0e10cSrcweir dlg:help-url CDATA #IMPLIED 45*cdf0e10cSrcweir "> 46*cdf0e10cSrcweir 47*cdf0e10cSrcweir<!ENTITY % event "(script:event| 48*cdf0e10cSrcweir script:listener-event| 49*cdf0e10cSrcweir dlg:event 50*cdf0e10cSrcweir )"> 51*cdf0e10cSrcweir 52*cdf0e10cSrcweir<!ENTITY % control "(dlg:bulletinboard| 53*cdf0e10cSrcweir dlg:button| 54*cdf0e10cSrcweir dlg:checkbox| 55*cdf0e10cSrcweir dlg:combobox| 56*cdf0e10cSrcweir dlg:menulist| 57*cdf0e10cSrcweir dlg:radiogroup| 58*cdf0e10cSrcweir dlg:titledbox| 59*cdf0e10cSrcweir dlg:textfield| 60*cdf0e10cSrcweir dlg:text| 61*cdf0e10cSrcweir dlg:filecontrol| 62*cdf0e10cSrcweir dlg:img| 63*cdf0e10cSrcweir dlg:timefield| 64*cdf0e10cSrcweir dlg:datefield| 65*cdf0e10cSrcweir dlg:numericfield| 66*cdf0e10cSrcweir dlg:currencyfield| 67*cdf0e10cSrcweir dlg:patternfield| 68*cdf0e10cSrcweir dlg:formattedfield| 69*cdf0e10cSrcweir dlg:fixedline| 70*cdf0e10cSrcweir dlg:progressmeter| 71*cdf0e10cSrcweir dlg:scrollbar 72*cdf0e10cSrcweir )"> 73*cdf0e10cSrcweir 74*cdf0e10cSrcweir<!ELEMENT dlg:window (dlg:styles*, (%event;)*, dlg:bulletinboard*)> 75*cdf0e10cSrcweir<!ATTLIST dlg:window %default-attributes; 76*cdf0e10cSrcweir dlg:closeable %boolean; #IMPLIED 77*cdf0e10cSrcweir dlg:moveable %boolean; #IMPLIED 78*cdf0e10cSrcweir dlg:resizeable %boolean; #IMPLIED 79*cdf0e10cSrcweir dlg:title CDATA #IMPLIED 80*cdf0e10cSrcweir dlg:withtitlebar CDATA #IMPLIED 81*cdf0e10cSrcweir dlg:image-src CDATA #IMPLIED 82*cdf0e10cSrcweir xmlns:dlg CDATA #FIXED "http://openoffice.org/2000/dialog" 83*cdf0e10cSrcweir xmlns:script CDATA #FIXED "http://openoffice.org/2000/script" 84*cdf0e10cSrcweir > 85*cdf0e10cSrcweir 86*cdf0e10cSrcweir<!ELEMENT dlg:styles (dlg:style+)> 87*cdf0e10cSrcweir 88*cdf0e10cSrcweir<!ELEMENT dlg:style EMPTY> 89*cdf0e10cSrcweir<!ATTLIST dlg:style dlg:style-id CDATA #REQUIRED 90*cdf0e10cSrcweir dlg:background-color %numeric; #IMPLIED 91*cdf0e10cSrcweir dlg:text-color %numeric; #IMPLIED 92*cdf0e10cSrcweir dlg:textline-color %numeric; #IMPLIED 93*cdf0e10cSrcweir dlg:fill-color %numeric; #IMPLIED 94*cdf0e10cSrcweir dlg:border CDATA #IMPLIED 95*cdf0e10cSrcweir dlg:font-name CDATA #IMPLIED 96*cdf0e10cSrcweir dlg:font-height %numeric; #IMPLIED 97*cdf0e10cSrcweir dlg:font-width %numeric; #IMPLIED 98*cdf0e10cSrcweir dlg:font-stylename CDATA #IMPLIED 99*cdf0e10cSrcweir dlg:font-family (decorative|modern|roman|script|swiss|system) #IMPLIED 100*cdf0e10cSrcweir dlg:font-charset (ansi|mac|ibmpc_437|ibmpc_850|ibmpc_860|ibmpc_861|ibmpc_863|ibmpc_865|system|symbol) #IMPLIED 101*cdf0e10cSrcweir dlg:font-pitch (fixed|variable) #IMPLIED 102*cdf0e10cSrcweir dlg:font-charwidth %numeric; #IMPLIED 103*cdf0e10cSrcweir dlg:font-weight %numeric; #IMPLIED 104*cdf0e10cSrcweir dlg:font-slant (oblique|italic|reverse_oblique|reverse_italic) #IMPLIED 105*cdf0e10cSrcweir dlg:font-underline (single|double|dotted|dash|longdash|dashdot|dashdotdot|smallwave|wave|doublewave|bold|bolddotted|bolddash|boldlongdash|bolddashdot|bolddashdotdot|boldwave) #IMPLIED 106*cdf0e10cSrcweir dlg:font-strikeout (single|double|bold|slash|x) #IMPLIED 107*cdf0e10cSrcweir dlg:font-orientation CDATA #IMPLIED 108*cdf0e10cSrcweir dlg:font-kerning %boolean; #IMPLIED 109*cdf0e10cSrcweir dlg:font-wordlinemode %boolean; #IMPLIED 110*cdf0e10cSrcweir dlg:font-type (raster|device|scalable) #IMPLIED 111*cdf0e10cSrcweir dlg:font-relief (none|embossed|engraved) #IMPLIED 112*cdf0e10cSrcweir dlg:font-emphasismark (none|dot|circle|disc|accent|above|below) #IMPLIED 113*cdf0e10cSrcweir dlg:look (none|3d|simple) #IMPLIED 114*cdf0e10cSrcweir > 115*cdf0e10cSrcweir 116*cdf0e10cSrcweir<!ELEMENT script:event EMPTY> 117*cdf0e10cSrcweir<!ATTLIST script:event script:location CDATA #IMPLIED 118*cdf0e10cSrcweir script:language CDATA #REQUIRED 119*cdf0e10cSrcweir script:macro-name CDATA #REQUIRED 120*cdf0e10cSrcweir script:event-name CDATA #REQUIRED 121*cdf0e10cSrcweir > 122*cdf0e10cSrcweir<!ELEMENT script:listener-event EMPTY> 123*cdf0e10cSrcweir<!ATTLIST script:listener-event script:location CDATA #IMPLIED 124*cdf0e10cSrcweir script:language CDATA #REQUIRED 125*cdf0e10cSrcweir script:macro-name CDATA #REQUIRED 126*cdf0e10cSrcweir script:listener-type CDATA #REQUIRED 127*cdf0e10cSrcweir script:listener-method CDATA #REQUIRED 128*cdf0e10cSrcweir script:listener-param CDATA #IMPLIED 129*cdf0e10cSrcweir > 130*cdf0e10cSrcweir<!-- deprecated --> 131*cdf0e10cSrcweir<!ELEMENT dlg:event EMPTY> 132*cdf0e10cSrcweir<!ATTLIST dlg:event dlg:listener-type CDATA #REQUIRED 133*cdf0e10cSrcweir dlg:event-method CDATA #REQUIRED 134*cdf0e10cSrcweir dlg:script-type CDATA #IMPLIED 135*cdf0e10cSrcweir dlg:script-code CDATA #IMPLIED 136*cdf0e10cSrcweir dlg:param CDATA #IMPLIED 137*cdf0e10cSrcweir > 138*cdf0e10cSrcweir<!-- /deprecated --> 139*cdf0e10cSrcweir 140*cdf0e10cSrcweir<!ELEMENT dlg:bulletinboard ((%control;)*)> 141*cdf0e10cSrcweir<!ATTLIST dlg:bulletinboard dlg:left %numeric; #IMPLIED 142*cdf0e10cSrcweir dlg:top %numeric; #IMPLIED 143*cdf0e10cSrcweir > 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir<!ELEMENT dlg:button ((%event;)*)> 146*cdf0e10cSrcweir<!ATTLIST dlg:button %default-attributes; 147*cdf0e10cSrcweir dlg:value CDATA #IMPLIED 148*cdf0e10cSrcweir dlg:align (left|center|right) #IMPLIED 149*cdf0e10cSrcweir dlg:valign (top|center|bottom) #IMPLIED 150*cdf0e10cSrcweir dlg:checked %boolean; #IMPLIED 151*cdf0e10cSrcweir dlg:image-src CDATA #IMPLIED 152*cdf0e10cSrcweir dlg:image-position (left-top|left-center|left-bottom|right-top|right-center|right-bottom|top-left|top-center|top-right|bottom-left|bottom-center|bottom-right|center) #IMPLIED 153*cdf0e10cSrcweir dlg:image-align (top|left|right|bottom) #IMPLIED 154*cdf0e10cSrcweir dlg:default %boolean; #IMPLIED 155*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 156*cdf0e10cSrcweir dlg:button-type (standard|ok|cancel|help) #IMPLIED 157*cdf0e10cSrcweir dlg:repeat %numeric; #IMPLIED 158*cdf0e10cSrcweir dlg:toggled (0|1) #IMPLIED 159*cdf0e10cSrcweir dlg:grab-focus (true|false) #IMPLIED 160*cdf0e10cSrcweir dlg:multiline %boolean; #IMPLIED 161*cdf0e10cSrcweir > 162*cdf0e10cSrcweir 163*cdf0e10cSrcweir<!ELEMENT dlg:checkbox ((%event;)*)> 164*cdf0e10cSrcweir<!ATTLIST dlg:checkbox %default-attributes; 165*cdf0e10cSrcweir dlg:value CDATA #IMPLIED 166*cdf0e10cSrcweir dlg:align (left|center|right) #IMPLIED 167*cdf0e10cSrcweir dlg:valign (top|center|bottom) #IMPLIED 168*cdf0e10cSrcweir dlg:checked %boolean; #IMPLIED 169*cdf0e10cSrcweir dlg:tristate %boolean; #IMPLIED 170*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 171*cdf0e10cSrcweir dlg:image-src CDATA #IMPLIED 172*cdf0e10cSrcweir dlg:image-position (left-top|left-center|left-bottom|right-top|right-center|right-bottom|top-left|top-center|top-right|bottom-left|bottom-center|bottom-right|center) #IMPLIED 173*cdf0e10cSrcweir dlg:multiline %boolean; #IMPLIED 174*cdf0e10cSrcweir > 175*cdf0e10cSrcweir 176*cdf0e10cSrcweir<!ELEMENT dlg:combobox (dlg:menupopup?, (%event;)*)> 177*cdf0e10cSrcweir<!ATTLIST dlg:combobox %default-attributes; 178*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 179*cdf0e10cSrcweir dlg:readonly %boolean; #IMPLIED 180*cdf0e10cSrcweir dlg:autocomplete %boolean; #IMPLIED 181*cdf0e10cSrcweir dlg:spin %boolean; #IMPLIED 182*cdf0e10cSrcweir dlg:maxlength %numeric; #IMPLIED 183*cdf0e10cSrcweir dlg:linecount %numeric; #IMPLIED 184*cdf0e10cSrcweir dlg:value CDATA #IMPLIED 185*cdf0e10cSrcweir dlg:hide-inactive-selection %boolean; #IMPLIED 186*cdf0e10cSrcweir dlg:align (left|center|right) #IMPLIED 187*cdf0e10cSrcweir > 188*cdf0e10cSrcweir 189*cdf0e10cSrcweir<!ELEMENT dlg:menulist (dlg:menupopup?, (%event;)*)> 190*cdf0e10cSrcweir<!ATTLIST dlg:menulist %default-attributes; 191*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 192*cdf0e10cSrcweir dlg:spin %boolean; #IMPLIED 193*cdf0e10cSrcweir dlg:multiselection %boolean; #IMPLIED 194*cdf0e10cSrcweir dlg:readonly %boolean; #IMPLIED 195*cdf0e10cSrcweir dlg:linecount %numeric; #IMPLIED 196*cdf0e10cSrcweir dlg:align (left|center|right) #IMPLIED 197*cdf0e10cSrcweir > 198*cdf0e10cSrcweir 199*cdf0e10cSrcweir<!ELEMENT dlg:menupopup (dlg:menuitem+)> 200*cdf0e10cSrcweir<!ELEMENT dlg:menuitem EMPTY> 201*cdf0e10cSrcweir<!ATTLIST dlg:menuitem dlg:value CDATA #REQUIRED 202*cdf0e10cSrcweir dlg:selected %boolean; #IMPLIED 203*cdf0e10cSrcweir > 204*cdf0e10cSrcweir 205*cdf0e10cSrcweir<!ELEMENT dlg:radiogroup (dlg:radio+)> 206*cdf0e10cSrcweir<!ELEMENT dlg:radio ((%event;)*)> 207*cdf0e10cSrcweir<!ATTLIST dlg:radio %default-attributes; 208*cdf0e10cSrcweir dlg:value CDATA #IMPLIED 209*cdf0e10cSrcweir dlg:align (left|center|right) #IMPLIED 210*cdf0e10cSrcweir dlg:valign (top|center|bottom) #IMPLIED 211*cdf0e10cSrcweir dlg:checked %boolean; #IMPLIED 212*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 213*cdf0e10cSrcweir dlg:image-src CDATA #IMPLIED 214*cdf0e10cSrcweir dlg:image-position (left-top|left-center|left-bottom|right-top|right-center|right-bottom|top-left|top-center|top-right|bottom-left|bottom-center|bottom-right|center) #IMPLIED 215*cdf0e10cSrcweir dlg:multiline %boolean; #IMPLIED 216*cdf0e10cSrcweir > 217*cdf0e10cSrcweir 218*cdf0e10cSrcweir<!ELEMENT dlg:titledbox (dlg:title?, dlg:radio*, (%control;)*, (%event;)*)> 219*cdf0e10cSrcweir<!ATTLIST dlg:titledbox %default-attributes; 220*cdf0e10cSrcweir > 221*cdf0e10cSrcweir<!ELEMENT dlg:title EMPTY> 222*cdf0e10cSrcweir<!ATTLIST dlg:title dlg:value CDATA #IMPLIED 223*cdf0e10cSrcweir > 224*cdf0e10cSrcweir 225*cdf0e10cSrcweir<!ELEMENT dlg:text ((%event;)*)> 226*cdf0e10cSrcweir<!ATTLIST dlg:text %default-attributes; 227*cdf0e10cSrcweir dlg:value CDATA #IMPLIED 228*cdf0e10cSrcweir dlg:align (left|center|right) #IMPLIED 229*cdf0e10cSrcweir dlg:valign (top|center|bottom) #IMPLIED 230*cdf0e10cSrcweir dlg:multiline %boolean; #IMPLIED 231*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 232*cdf0e10cSrcweir > 233*cdf0e10cSrcweir 234*cdf0e10cSrcweir<!ELEMENT dlg:textfield ((%event;)*)> 235*cdf0e10cSrcweir<!ATTLIST dlg:textfield %default-attributes; 236*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 237*cdf0e10cSrcweir dlg:align (left|center|right) #IMPLIED 238*cdf0e10cSrcweir dlg:readonly %boolean; #IMPLIED 239*cdf0e10cSrcweir dlg:echochar CDATA #IMPLIED 240*cdf0e10cSrcweir dlg:hard-linebreaks %boolean; #IMPLIED 241*cdf0e10cSrcweir dlg:hscroll %boolean; #IMPLIED 242*cdf0e10cSrcweir dlg:vscroll %boolean; #IMPLIED 243*cdf0e10cSrcweir dlg:maxlength %numeric; #IMPLIED 244*cdf0e10cSrcweir dlg:multiline %boolean; #IMPLIED 245*cdf0e10cSrcweir dlg:value CDATA #IMPLIED 246*cdf0e10cSrcweir dlg:hide-inactive-selection %boolean; #IMPLIED 247*cdf0e10cSrcweir dlg:lineend-format (carriage-return|line-feed|carriage-return-line-feed) #IMPLIED 248*cdf0e10cSrcweir > 249*cdf0e10cSrcweir 250*cdf0e10cSrcweir<!ELEMENT dlg:img ((%event;)*)> 251*cdf0e10cSrcweir<!ATTLIST dlg:img %default-attributes; 252*cdf0e10cSrcweir dlg:src CDATA #IMPLIED 253*cdf0e10cSrcweir dlg:scale-image %boolean; #IMPLIED 254*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 255*cdf0e10cSrcweir > 256*cdf0e10cSrcweir 257*cdf0e10cSrcweir<!ELEMENT dlg:filecontrol ((%event;)*)> 258*cdf0e10cSrcweir<!ATTLIST dlg:filecontrol %default-attributes; 259*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 260*cdf0e10cSrcweir dlg:value CDATA #IMPLIED 261*cdf0e10cSrcweir dlg:hide-inactive-selection %boolean; #IMPLIED 262*cdf0e10cSrcweir dlg:readonly %boolean; #IMPLIED 263*cdf0e10cSrcweir > 264*cdf0e10cSrcweir 265*cdf0e10cSrcweir<!ELEMENT dlg:treecontrol ((%event;)*)> 266*cdf0e10cSrcweir<!ATTLIST dlg:treecontrol %default-attributes; 267*cdf0e10cSrcweir dlg:selectiontype CDATA #IMPLIED 268*cdf0e10cSrcweir dlg:rootdisplayed %boolean; #IMPLIED 269*cdf0e10cSrcweir dlg:showshandles %boolean; #IMPLIED 270*cdf0e10cSrcweir dlg:showsroothandles %boolean; #IMPLIED 271*cdf0e10cSrcweir dlg:rowheight %boolean; #IMPLIED 272*cdf0e10cSrcweir dlg:editable %numeric; #IMPLIED 273*cdf0e10cSrcweir dlg:invokesstopnodeediting %boolean; #IMPLIED 274*cdf0e10cSrcweir > 275*cdf0e10cSrcweir 276*cdf0e10cSrcweir<!ELEMENT dlg:currencyfield ((%event;)*)> 277*cdf0e10cSrcweir<!ATTLIST dlg:currencyfield %default-attributes; 278*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 279*cdf0e10cSrcweir dlg:readonly %boolean; #IMPLIED 280*cdf0e10cSrcweir dlg:currency-symbol CDATA #IMPLIED 281*cdf0e10cSrcweir dlg:strict-format %boolean; #IMPLIED 282*cdf0e10cSrcweir dlg:decimal-accuracy %numeric; #IMPLIED 283*cdf0e10cSrcweir dlg:thousands-separator %boolean; #IMPLIED 284*cdf0e10cSrcweir dlg:value %numeric; #IMPLIED 285*cdf0e10cSrcweir dlg:value-min %numeric; #IMPLIED 286*cdf0e10cSrcweir dlg:value-max %numeric; #IMPLIED 287*cdf0e10cSrcweir dlg:value-step %numeric; #IMPLIED 288*cdf0e10cSrcweir dlg:spin %boolean; #IMPLIED 289*cdf0e10cSrcweir dlg:repeat %numeric; #IMPLIED 290*cdf0e10cSrcweir dlg:hide-inactive-selection %boolean; #IMPLIED 291*cdf0e10cSrcweir dlg:prepend-symbol %boolean; #IMPLIED 292*cdf0e10cSrcweir dlg:enforce-format %boolean; #IMPLIED 293*cdf0e10cSrcweir > 294*cdf0e10cSrcweir 295*cdf0e10cSrcweir<!ELEMENT dlg:datefield ((%event;)*)> 296*cdf0e10cSrcweir<!ATTLIST dlg:datefield %default-attributes; 297*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 298*cdf0e10cSrcweir dlg:readonly %boolean; #IMPLIED 299*cdf0e10cSrcweir dlg:strict-format %boolean; #IMPLIED 300*cdf0e10cSrcweir dlg:date-format (system_short|system_short_YY|system_short_YYYY|system_long|short_DDMMYY|short_MMDDYY|short_YYMMDD|short_DDMMYYYY|short_MMDDYYYY|short_YYYYMMDD|short_YYMMDD_DIN5008|short_YYYYMMDD_DIN5008) #IMPLIED 301*cdf0e10cSrcweir dlg:show-century %boolean; #IMPLIED 302*cdf0e10cSrcweir dlg:value CDATA #IMPLIED 303*cdf0e10cSrcweir dlg:value-min CDATA #IMPLIED 304*cdf0e10cSrcweir dlg:value-max CDATA #IMPLIED 305*cdf0e10cSrcweir dlg:spin %boolean; #IMPLIED 306*cdf0e10cSrcweir dlg:repeat %numeric; #IMPLIED 307*cdf0e10cSrcweir dlg:hide-inactive-selection %boolean; #IMPLIED 308*cdf0e10cSrcweir dlg:dropdown %boolean; #IMPLIED 309*cdf0e10cSrcweir dlg:text CDATA #IMPLIED 310*cdf0e10cSrcweir dlg:enforce-format %boolean; #IMPLIED 311*cdf0e10cSrcweir > 312*cdf0e10cSrcweir 313*cdf0e10cSrcweir<!ELEMENT dlg:numericfield ((%event;)*)> 314*cdf0e10cSrcweir<!ATTLIST dlg:numericfield %default-attributes; 315*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 316*cdf0e10cSrcweir dlg:readonly %boolean; #IMPLIED 317*cdf0e10cSrcweir dlg:strict-format %boolean; #IMPLIED 318*cdf0e10cSrcweir dlg:decimal-accuracy %numeric; #IMPLIED 319*cdf0e10cSrcweir dlg:thousands-separator %boolean; #IMPLIED 320*cdf0e10cSrcweir dlg:value %numeric; #IMPLIED 321*cdf0e10cSrcweir dlg:value-min %numeric; #IMPLIED 322*cdf0e10cSrcweir dlg:value-max %numeric; #IMPLIED 323*cdf0e10cSrcweir dlg:value-step %numeric; #IMPLIED 324*cdf0e10cSrcweir dlg:spin %boolean; #IMPLIED 325*cdf0e10cSrcweir dlg:repeat %numeric; #IMPLIED 326*cdf0e10cSrcweir dlg:hide-inactive-selection %boolean; #IMPLIED 327*cdf0e10cSrcweir dlg:enforce-format %boolean; #IMPLIED 328*cdf0e10cSrcweir > 329*cdf0e10cSrcweir 330*cdf0e10cSrcweir<!ELEMENT dlg:timefield ((%event;)*)> 331*cdf0e10cSrcweir<!ATTLIST dlg:timefield %default-attributes; 332*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 333*cdf0e10cSrcweir dlg:readonly %boolean; #IMPLIED 334*cdf0e10cSrcweir dlg:strict-format %boolean; #IMPLIED 335*cdf0e10cSrcweir dlg:time-format (24h_short|24h_long|12h_short|12h_long|Duration_short|Duration_long) #IMPLIED 336*cdf0e10cSrcweir dlg:value CDATA #IMPLIED 337*cdf0e10cSrcweir dlg:value-min CDATA #IMPLIED 338*cdf0e10cSrcweir dlg:value-max CDATA #IMPLIED 339*cdf0e10cSrcweir dlg:spin %boolean; #IMPLIED 340*cdf0e10cSrcweir dlg:repeat %numeric; #IMPLIED 341*cdf0e10cSrcweir dlg:hide-inactive-selection %boolean; #IMPLIED 342*cdf0e10cSrcweir dlg:text CDATA #IMPLIED 343*cdf0e10cSrcweir dlg:enforce-format %boolean; #IMPLIED 344*cdf0e10cSrcweir > 345*cdf0e10cSrcweir 346*cdf0e10cSrcweir<!ELEMENT dlg:patternfield ((%event;)*)> 347*cdf0e10cSrcweir<!ATTLIST dlg:patternfield %default-attributes; 348*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 349*cdf0e10cSrcweir dlg:readonly %boolean; #IMPLIED 350*cdf0e10cSrcweir dlg:strict-format %boolean; #IMPLIED 351*cdf0e10cSrcweir dlg:edit-mask CDATA #IMPLIED 352*cdf0e10cSrcweir dlg:literal-mask CDATA #IMPLIED 353*cdf0e10cSrcweir dlg:value CDATA #IMPLIED 354*cdf0e10cSrcweir dlg:maxlength %numeric; #IMPLIED 355*cdf0e10cSrcweir dlg:hide-inactive-selection %boolean; #IMPLIED 356*cdf0e10cSrcweir > 357*cdf0e10cSrcweir 358*cdf0e10cSrcweir<!ELEMENT dlg:formattedfield ((%event;)*)> 359*cdf0e10cSrcweir<!ATTLIST dlg:formattedfield %default-attributes; 360*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 361*cdf0e10cSrcweir dlg:readonly %boolean; #IMPLIED 362*cdf0e10cSrcweir dlg:strict-format %boolean; #IMPLIED 363*cdf0e10cSrcweir dlg:maxlength %numeric; #IMPLIED 364*cdf0e10cSrcweir dlg:spin %boolean; #IMPLIED 365*cdf0e10cSrcweir dlg:align (left|center|right) #IMPLIED 366*cdf0e10cSrcweir dlg:text CDATA #IMPLIED 367*cdf0e10cSrcweir dlg:value-default CDATA #IMPLIED 368*cdf0e10cSrcweir dlg:value-max %numeric; #IMPLIED 369*cdf0e10cSrcweir dlg:value-min %numeric; #IMPLIED 370*cdf0e10cSrcweir dlg:value %numeric; #IMPLIED 371*cdf0e10cSrcweir dlg:format-code CDATA #IMPLIED 372*cdf0e10cSrcweir dlg:format-locale CDATA #IMPLIED 373*cdf0e10cSrcweir dlg:repeat %numeric; #IMPLIED 374*cdf0e10cSrcweir dlg:hide-inactive-selection %boolean; #IMPLIED 375*cdf0e10cSrcweir dlg:treat-as-number %boolean; #IMPLIED 376*cdf0e10cSrcweir dlg:enforce-format %boolean; #IMPLIED 377*cdf0e10cSrcweir > 378*cdf0e10cSrcweir 379*cdf0e10cSrcweir<!ELEMENT dlg:fixedline ((%event;)*)> 380*cdf0e10cSrcweir<!ATTLIST dlg:fixedline %default-attributes; 381*cdf0e10cSrcweir dlg:align (horizontal|vertical) #IMPLIED 382*cdf0e10cSrcweir dlg:value CDATA #IMPLIED 383*cdf0e10cSrcweir > 384*cdf0e10cSrcweir 385*cdf0e10cSrcweir<!ELEMENT dlg:scrollbar ((%event;)*)> 386*cdf0e10cSrcweir<!ATTLIST dlg:scrollbar %default-attributes; 387*cdf0e10cSrcweir dlg:align (horizontal|vertical) #IMPLIED 388*cdf0e10cSrcweir dlg:curpos %numeric; #IMPLIED 389*cdf0e10cSrcweir dlg:maxpos %numeric; #IMPLIED 390*cdf0e10cSrcweir dlg:minpos %numeric; #IMPLIED 391*cdf0e10cSrcweir dlg:increment %numeric; #IMPLIED 392*cdf0e10cSrcweir dlg:pageincrement %numeric; #IMPLIED 393*cdf0e10cSrcweir dlg:visible-size %numeric; #IMPLIED 394*cdf0e10cSrcweir dlg:repeat %numeric; #IMPLIED 395*cdf0e10cSrcweir dlg:tabstop %boolean; #IMPLIED 396*cdf0e10cSrcweir dlg:live-scroll %boolean; #IMPLIED 397*cdf0e10cSrcweir dlg:symbol-color %numeric; #IMPLIED 398*cdf0e10cSrcweir > 399*cdf0e10cSrcweir 400*cdf0e10cSrcweir<!ELEMENT dlg:progressmeter ((%event;)*)> 401*cdf0e10cSrcweir<!ATTLIST dlg:progressmeter %default-attributes; 402*cdf0e10cSrcweir dlg:value %numeric; #IMPLIED 403*cdf0e10cSrcweir dlg:value-min %numeric; #IMPLIED 404*cdf0e10cSrcweir dlg:value-max %numeric; #IMPLIED 405*cdf0e10cSrcweir > 406