1<?xml version="1.0" encoding="UTF-8"?> 2 3<dialog xmlns="http://openoffice.org/2007/layout" 4 xmlns:cnt="http://openoffice.org/2007/layout/container" 5 title="Interactable Containers" optimumsize="true" 6 has_border="true" sizeable="true" moveable="true"> 7 <hsplitter> 8 <scroller> 9 <vbox> 10 <pushbutton label="Some Label" /> 11 <edit has_border="true" text="Some Text" /> 12 <listbox has_border="true" string-item-list="Item One:Item Two:Item Three:Item Four:Item Five:Item Six:Item Seven" /> 13 <combobox has_border="true" string-item-list="Item One:Item Two:Item Three" /> 14 <pushbutton label="Some Label" /> 15 <pushbutton label="Some Label" /> 16 <pushbutton label="Some Label" /> 17 <pushbutton label="Some Label" /> 18 <pushbutton label="Some Label" /> 19 <pushbutton label="Some Label" /> 20 <pushbutton label="Some Label" /> 21 <pushbutton label="Some Label" /> 22 <pushbutton label="Some Label" /> 23 <pushbutton label="Some Label" /> 24 <pushbutton label="Some Label" /> 25 <pushbutton label="Some Label" /> 26 </vbox> 27 </scroller> 28 <vsplitter> 29 <pushbutton label="Corner" /> 30 <tabcontrol> 31 <table columns="3" cnt:title="Page 1"> 32 <pushbutton cnt:x-expand="false" cnt:row-span="2" label="1,1" /> 33 <pushbutton cnt:y-expand="false" label="1,2" /> 34 <pushbutton cnt:y-expand="false" label="1,3" /> 35 <pushbutton cnt:col-span="2" label="2,1" /> 36 </table> 37 <vbox cnt:title="Page 2"> 38 <pushbutton label="1" /> 39 <pushbutton label="2" /> 40 <pushbutton label="3" /> 41 <pushbutton label="4" /> 42 </vbox> 43 <pushbutton label="Content 3" cnt:title="Page 3" /> 44 <pushbutton label="Content 4" cnt:title="Page 4" /> 45 <pushbutton label="Content 5" cnt:title="Page 5" /> 46 </tabcontrol> 47 </vscroll> 48 </hsplitter> 49</dialog> 50