diff options
author | Shubham Goyal <22shubh22@gmail.com> | 2019-02-26 23:02:40 +0530 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2019-03-08 15:51:23 +0100 |
commit | 732d630c3d2a168c725c18e4dd8df7a0a4f85566 (patch) | |
tree | af02abe6e0b2346c46a464b8063faa81ee11ed7d /xmlscript/dtd | |
parent | cfdba2b94fd7c0a2ec0250ddc9212d367db50c8c (diff) |
tdf#53524 Create UNO grid control- dialog editor
The commit is based on the patch in https://bz.apache.org/ooo/show_bug.cgi?id=120066.
Change-Id: Ia4ad536331954679940104adf5d6178228c90854
Reviewed-on: https://gerrit.libreoffice.org/68814
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'xmlscript/dtd')
-rw-r--r-- | xmlscript/dtd/dialog.dtd | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/xmlscript/dtd/dialog.dtd b/xmlscript/dtd/dialog.dtd index 4d9b93355c86..364517311405 100644 --- a/xmlscript/dtd/dialog.dtd +++ b/xmlscript/dtd/dialog.dtd @@ -59,7 +59,8 @@ dlg:formattedfield| dlg:fixedline| dlg:progressmeter| - dlg:scrollbar + dlg:scrollbar| + dlg:table )"> <!ELEMENT dlg:window (dlg:styles*, (%event;)*, dlg:bulletinboard*)> @@ -395,3 +396,20 @@ dlg:value-min %numeric; #IMPLIED dlg:value-max %numeric; #IMPLIED > + +<!ELEMENT dlg:table ((%event;)*)> +<!ATTLIST dlg:table %default-attributes; + dlg:showcolumnheader %boolean; #IMPLIED + dlg:showrowheader %boolean; #IMPLIED + dlg:gridline-color %numeric; #IMPLIED + dlg:usegridlines %boolean; #IMPLIED + dlg:headerbackground-color %numeric; #IMPLIED + dlg:headertext-color %numeric; #IMPLIED + dlg:activeselectionbackground-color %numeric; #IMPLIED + dlg:activeselectiontext-color %numeric; #IMPLIED + dlg:inactiveselectionbackground-color %numeric; #IMPLIED + dlg:inactiveselectiontext-color %numeric; #IMPLIED + dlg:selectiontype CDATA #IMPLIED + dlg:valign (top|center|bottom) #IMPLIED + dlg:tabstop %boolean; #IMPLIED + > |