comparison orpg/templates/default_gui.xml @ 0:4385a7d0efd1 grumpy-goblin

Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
author sirebral
date Tue, 14 Jul 2009 16:41:58 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4385a7d0efd1
1 <!--
2 Window Container Options
3 <tab>
4 <splitter pos="?" type="v or h" >
5 <dialog width="?" height="?" posx="?" posy="?" stayontop="1 or 0" >
6
7 OpenRPG Window Tags
8 <map enable="1" />
9 <chat enable="1" />
10 <tree enable="1" />
11 <player enable="1" />
12 -->
13
14 <!--
15
16 STANDARD LAYOUT
17 -->
18 <orpg_gui width="1" height="1" posx="10" posy="10" >
19 <splitter pos="300" type="v" >
20 <splitter pos="400" type="h" >
21 <tree enable="1" name="Tree" />
22 <player enable="1" name="Player"/>
23 </splitter>
24 <splitter pos="300" type="h" >
25 <map enable="1" name="Map" />
26 <chat enable="1" name="Chat" />
27 </splitter>
28 </splitter>
29 </orpg_gui>
30
31
32
33 <!--
34
35 Tree and Player list in Tab. Chat and Map in a splitter
36
37
38
39 <orpg_gui width="1" height="1" posx="1" posy="1" >
40 <splitter pos="300" type="v" >
41 <tab pos="400" type="h" >
42 <tree enable="1" name="Tree" />
43 <player enable="1" name="Player"/>
44 </tab>
45 <splitter pos="300" type="h" >
46 <map enable="1" name="Map" />
47 <chat enable="1" name="Chat" />
48 </splitter>
49 </splitter>
50 </orpg_gui>
51
52 -->
53
54
55 <!--
56
57 Tree Map, Chat in splitters. Player list in dialog.
58
59 <orpg_gui width="1" height="1" posx="1" posy="1" >
60 <splitter pos="300" type="v" >
61 <tree enable="1" name="Tree" />
62 <splitter pos="300" type="h" >
63 <map enable="1" name="Map" />
64 <chat enable="1" name="Chat" />
65 </splitter>
66 </splitter>
67 <dialog width="200" height="200" posx="10" posy="10" stayontop="1" >
68 <player enable="1" name="Player"/>
69 </dialog>
70 </orpg_gui>
71
72 -->
73
74 <!--
75
76 Map main window. Tree, players, and chat in dialogs.
77
78 <orpg_gui width="1" height="1" posx="1" posy="1" >
79 <map enable="1" name="Map" />
80 <dialog width="250" height="400" posx="10" posy="10" stayontop="1" >
81 <tree enable="1" name="Tree" />
82 </dialog>
83 <dialog width="250" height="200" posx="10" posy="350" stayontop="1" >
84 <player enable="1" name="Player"/>
85 </dialog>
86 <dialog width="600" height="250" posx="200" posy="10" stayontop="1" >
87 <chat enable="1" name="Chat" />
88 </dialog>
89 </orpg_gui>
90
91 -->
92