1<?xml version="1.0" encoding="UTF-8"?>
2
3<modaldialog xmlns="http://openoffice.org/2007/layout"
4             xmlns:cnt="http://openoffice.org/2007/layout/container"
5             id="dialog" title="Dialog Button Ordering" optimumsize="true"
6             has_border="true" sizeable="true" moveable="true">
7    <vbox border="5" spacing="5">
8	<fixedline text="Platform default"/>
9	<dialogbuttonhbox border="5" spacing="5">
10	    <flow/>
11	    <okbutton/>
12	    <cancelbutton/>
13	    <helpbutton/>
14	    <nobutton label="~Alternate"/>
15	</dialogbuttonhbox>
16	<fixedline text="GNOME"/>
17	<dialogbuttonhbox border="5" spacing="5" ordering="gnome">
18	    <flow/>
19	    <okbutton/>
20	    <cancelbutton/>
21	    <helpbutton/>
22	    <nobutton label="~Alternate"/>
23	</dialogbuttonhbox>
24	<fixedline text="KDE"/>
25	<dialogbuttonhbox border="5" spacing="5" ordering="kde">
26	    <flow/>
27	    <okbutton/>
28	    <cancelbutton/>
29	    <helpbutton/>
30	    <nobutton label="~Alternate"/>
31	</dialogbuttonhbox>
32	<fixedline text="MacOS"/>
33	<dialogbuttonhbox border="5" spacing="5" ordering="macos">
34	    <flow/>
35	    <okbutton/>
36	    <cancelbutton/>
37	    <helpbutton/>
38	    <nobutton label="~Alternate"/>
39	</dialogbuttonhbox>
40	<fixedline text="Windows"/>
41	<dialogbuttonhbox border="5" spacing="5" ordering="windows">
42	    <flow/>
43	    <okbutton/>
44	    <cancelbutton/>
45	    <helpbutton/>
46	    <nobutton label="~Alternate"/>
47	</dialogbuttonhbox>
48    </vbox>
49</modaldialog>
50