comparison clients/editor/gui/filebrowser.xml @ 255:51cc05d862f2

Merged editor_rewrite branch to trunk. This contains changes that may break compatibility against existing clients. For a list of changes that may affect your client, see: http://wiki.fifengine.de/Changes_to_pychan_and_FIFE_in_editor_rewrite_branch
author cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
date Mon, 08 Jun 2009 16:00:02 +0000
parents 28532ae6f9f6
children
comparison
equal deleted inserted replaced
254:10b5f7f36dd4 255:51cc05d862f2
1 <Window title="File Browser"> 1 <Panel title="File Browser">
2 <HBox> 2 <HBox hexpand="1" vexpand="1">
3 <VBox> 3 <VBox hexpand="1">
4 <Label name="dirLabel" text="Directories:"/> 4 <Label name="dirLabel" text="Directories:"/>
5 <ScrollArea size="200,300"> 5 <ScrollArea min_size="200,300">
6 <ListBox name="dirList"/> 6 <ListBox name="dirList"/>
7 </ScrollArea> 7 </ScrollArea>
8 </VBox> 8 </VBox>
9 <VBox name="fileColumn"> 9 <VBox name="fileColumn" hexpand="1">
10 <Label name="fileLabel" text="Files:"/> 10 <Label name="fileLabel" text="Files:"/>
11 <ScrollArea size="200,300"> 11 <ScrollArea min_size="200,300">
12 <ListBox name="fileList"/> 12 <ListBox name="fileList"/>
13 </ScrollArea> 13 </ScrollArea>
14 </VBox> 14 </VBox>
15 <VBox> 15 <VBox hexpand="1">
16 <Button name="selectButton" text="Select"/> 16 <Button name="selectButton" text="Select"/>
17 <Spacer /> 17 <Spacer />
18 <Button name="closeButton" text="Close"/> 18 <Button name="closeButton" text="Close"/>
19 </VBox> 19 </VBox>
20 </HBox> 20 </HBox>
21 </Window> 21 </Panel>