summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2003-12-11 11:06:36 +0000
committerKurt Zenker <kz@openoffice.org>2003-12-11 11:06:36 +0000
commit976c9bff5cdfe0989c809ba27722e4a015261f9d (patch)
tree7b35d713d0ce065c8f0f21b39c34f2cb6d95b743 /xmloff
parent6654417effeea9602cf9c604a7c070ed35dc8e8f (diff)
INTEGRATION: CWS frmcontrols01 (1.13.174); FILE MERGED
2003/10/29 07:05:15 fs 1.13.174.4: #i21605# value-range: orientation exported as attribute, not as generic property 2003/10/27 15:12:33 fs 1.13.174.3: RESYNC: (1.13-1.14); FILE MERGED 2003/10/27 11:46:01 fs 1.13.174.2: #i21605# min/max-value are float, not integer (necessary since it's going to be used for the formatted-text element, too) 2003/10/22 13:21:52 fs 1.13.174.1: #21277# new form control element form:value-range
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/dtd/form.mod30
1 files changed, 25 insertions, 5 deletions
diff --git a/xmloff/dtd/form.mod b/xmloff/dtd/form.mod
index 34b2b51476c0..ccbf90b57796 100644
--- a/xmloff/dtd/form.mod
+++ b/xmloff/dtd/form.mod
@@ -1,5 +1,5 @@
<!--
- $Id: form.mod,v 1.14 2003-10-21 08:37:17 obo Exp $
+ $Id: form.mod,v 1.15 2003-12-11 12:06:36 kz Exp $
The Contents of this file are made available subject to the terms of
either of the following licenses
@@ -56,7 +56,7 @@
<!ENTITY % controls "form:text|form:textarea|form:fixed-text|form:file|
form:password|form:formatted-text|form:button|form:image|
form:checkbox|form:radio|form:listbox|form:combobox|form:frame|
- form:hidden|form:image-frame|form:grid|form:generic-control">
+ form:hidden|form:image-frame|form:grid|form:value-range|form:generic-control">
<!ENTITY % name "form:name CDATA #IMPLIED">
<!ENTITY % service-name "form:service-name CDATA #IMPLIED">
@@ -192,13 +192,12 @@
%tab-index;
%tab-stop;
%title;
+ %min-value;
+ %max-value;
%value;
%convert-empty;
%data-field;
%linked-cell;>
-
-<!ATTLIST form:formatted-text form:max-value CDATA #IMPLIED>
-<!ATTLIST form:formatted-text form:min-value CDATA #IMPLIED>
<!ATTLIST form:formatted-text form:validation %boolean; "false">
<!ELEMENT form:fixed-text (form:properties?, office:events?)>
@@ -348,6 +347,27 @@
<!ELEMENT form:generic-control (form:properties?, office:events?)>
+<!ELEMENT form:value-range (form:properties?, office:events?)>
+<!ATTLIST form:value-range %disabled;
+ %printable;
+ %tab-index;
+ %tab-stop;
+ %title;
+ %min-value;
+ %max-value;
+ %current-value;
+ %value;
+ %step-size;
+ %page-step-size;
+ %delay-for-repeat;
+ %orientation;>
+
+<!ENTITY % min-value "form:min-value %float; #IMPLIED">
+<!ENTITY % max-value "form:max-value %float; #IMPLIED">
+<!ENTITY % step-size "form:step-size %positiveInteger; '1'">
+<!ENTITY % page-step-size "form:page-step-size %positiveInteger; #IMPLIED">
+<!ENTITY % delay-for-repeat "form:delay-for-repeat %positiveInteger; #IMPLIED">
+<!ENTITY % orientation "form:orientation (horizontal|vertical) #IMPLIED">
<!ELEMENT form:properties (form:property+)>
<!ELEMENT form:property (form:property-value*)>