xref: /AOO41X/main/toolkit/workben/layout/editor-normal.xml (revision 1455e513e06d29f0697b752c8d53101957b5a400)
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<!-- Would be cool to have others Editor layouts (e.g. Glade-like with
24     a window for each function). -->
25
26<dialog xmlns="http://openoffice.org/2007/layout"
27        xmlns:cnt="http://openoffice.org/2007/layout/container"
28        id="dialog" title="Layout Editor" sizeable="true" >
29    <vbox>
30        <hbox>
31            <min-size min-width="120" cnt:expand="false">
32                <vbox>
33                    <fixedtext label="Layout:" cnt:expand="false" />
34                    <hbox>
35                        <listbox id="layout-tree" has_border="true" />
36                        <vbox cnt:expand="false">
37                            <pushbutton id="layout-up-button" cnt:expand="false" />
38                            <pushbutton id="layout-down-button" cnt:expand="false" />
39                            <fixedtext cnt:expand="true" />
40                            <pushbutton id="layout-remove-button" cnt:expand="false" />
41                        </vbox>
42                    </hbox>
43                </vbox>
44            </min-size>
45            <min-size min-width="120">
46                <vbox>
47                    <fixedtext label="Preview:" cnt:expand="false" />
48                    <vbox border="50">
49                        <bin id="preview-box" />
50                    </vbox>
51                </vbox>
52            </min-size>
53            <min-size min-width="120" cnt:expand="false">
54                <vbox>
55                    <fixedtext label="Properties:" cnt:expand="false" />
56                    <table id="properties-box" columns="3" />
57                </vbox>
58            </min-size>
59        </hbox>
60        <hfixedline cnt:expand="false" />
61        <vbox cnt:expand="false">
62            <fixedtext label="Create widgets:" cnt:expand="false" />
63            <flow id="create-widget" homogeneous="true" spacing="2" />
64            <fixedtext label="Create containers:" cnt:expand="false" />
65            <flow id="create-container" homogeneous="true" spacing="2" />
66        </vbox>
67        <hbox cnt:expand="false">
68            <vbox><fixedline /><fixedline /><fixedline /><fixedline /></vbox>
69<!--            <pushbutton id="import-button" label="Import..." cnt:expand="false"/>-->
70            <pushbutton id="export-button" label="Export (stdout)" cnt:expand="false"/>
71        </hbox>
72    </vbox>
73</dialog>
74