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