1<?xml version="1.0" encoding="UTF-8"?>
2<!--***********************************************************
3 *
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements.  See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership.  The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License.  You may obtain a copy of the License at
11 *
12 *   http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied.  See the License for the
18 * specific language governing permissions and limitations
19 * under the License.
20 *
21 ***********************************************************-->
22
23<dialog xmlns="http://openoffice.org/2007/layout"
24             xmlns:cnt="http://openoffice.org/2007/layout/container"
25             title="Interactable Containers" optimumsize="true"
26             has_border="true" sizeable="true" moveable="true">
27	<hsplitter>
28			<scroller>
29				<vbox>
30					<pushbutton label="Some Label" />
31					<edit has_border="true" text="Some Text" />
32					<listbox has_border="true" string-item-list="Item One:Item Two:Item Three:Item Four:Item Five:Item Six:Item Seven" />
33					<combobox has_border="true" string-item-list="Item One:Item Two:Item Three" />
34					<pushbutton label="Some Label" />
35					<pushbutton label="Some Label" />
36					<pushbutton label="Some Label" />
37					<pushbutton label="Some Label" />
38					<pushbutton label="Some Label" />
39					<pushbutton label="Some Label" />
40					<pushbutton label="Some Label" />
41					<pushbutton label="Some Label" />
42					<pushbutton label="Some Label" />
43					<pushbutton label="Some Label" />
44					<pushbutton label="Some Label" />
45					<pushbutton label="Some Label" />
46				</vbox>
47			</scroller>
48		<vsplitter>
49			<pushbutton label="Corner" />
50			<tabcontrol>
51				<table columns="3" cnt:title="Page 1">
52					<pushbutton cnt:x-expand="false" cnt:row-span="2" label="1,1" />
53					<pushbutton cnt:y-expand="false" label="1,2" />
54					<pushbutton cnt:y-expand="false" label="1,3" />
55					<pushbutton cnt:col-span="2" label="2,1" />
56				</table>
57				<vbox cnt:title="Page 2">
58					<pushbutton label="1" />
59					<pushbutton label="2" />
60					<pushbutton label="3" />
61					<pushbutton label="4" />
62				</vbox>
63				<pushbutton label="Content 3" cnt:title="Page 3" />
64				<pushbutton label="Content 4" cnt:title="Page 4" />
65				<pushbutton label="Content 5" cnt:title="Page 5" />
66			</tabcontrol>
67		</vscroll>
68	</hsplitter>
69</dialog>
70