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