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