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	    <resetbutton/>
16	</dialogbuttonhbox>
17	<fixedline text="GNOME"/>
18	<dialogbuttonhbox border="5" spacing="5" ordering="gnome">
19	    <flow/>
20	    <okbutton/>
21	    <cancelbutton/>
22	    <helpbutton/>
23	    <nobutton label="~Alternate"/>
24	    <resetbutton/>
25	</dialogbuttonhbox>
26	<fixedline text="KDE"/>
27	<dialogbuttonhbox border="5" spacing="5" ordering="kde">
28	    <flow/>
29	    <okbutton/>
30	    <cancelbutton/>
31	    <helpbutton/>
32	    <nobutton label="~Alternate"/>
33	    <resetbutton/>
34	</dialogbuttonhbox>
35	<fixedline text="MacOS"/>
36	<dialogbuttonhbox border="5" spacing="5" ordering="macos">
37	    <flow/>
38	    <okbutton/>
39	    <cancelbutton/>
40	    <helpbutton/>
41	    <nobutton label="~Alternate"/>
42	    <resetbutton/>
43	</dialogbuttonhbox>
44	<fixedline text="Windows"/>
45	<dialogbuttonhbox border="5" spacing="5" ordering="windows">
46	    <flow/>
47	    <okbutton/>
48	    <cancelbutton/>
49	    <helpbutton/>
50	    <nobutton label="~Alternate"/>
51	    <resetbutton/>
52	</dialogbuttonhbox>
53    </vbox>
54</modaldialog>
55