]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/creategame/maplist.menu
various typos
[divverent/nexuiz.git] / scmenu / creategame / maplist.menu
1 // Property of Alientrap/AK
2 //
3 // creategame/maplist.menu
4 Item Window MapList
5 {
6         size '900 585'
7
8         Derive Label MapsLabel
9         {
10                 pos     '0 0'
11                 text    "Map List:"
12         }
13         Derive List Maps
14         {
15                 pos     '0 20'
16                 size    '425 500'
17
18                 target  "::Data::Server::Map::List"
19         }
20         Derive Label CycleLabel
21         {
22                 pos     '475 0'
23                 text    "Cycle List or some other name:"
24         }
25         Derive List Cycle
26         {
27                 pos     '475 20'
28                 size    '425 450'
29
30                 target  "::Data::Server::Map::Cycle"
31         }
32         Item Layout Panel
33         {
34                 pos     '475 470'
35                 size    '400 30'
36                 direction       [Nex_DefaultHorzDirection]
37                 flag            [FlagEmbedded]
38
39                 Derive TextButton Add
40                 {
41                         normal  "Add"
42
43                         action  Nex_Action_Cycle_Add
44                 }
45                 Derive TextButton Remove
46                 {
47                         normal  "Remove"
48
49                         action  Nex_Action_Cycle_Remove
50                 }
51                 Derive TextButton MoveUp
52                 {
53                         normal  "Move Up"
54
55                         action  Nex_Action_Cycle_MoveUp
56                 }
57                 Derive TextButton MoveDown
58                 {
59                         normal  "Move Down"
60
61                         action  Nex_Action_Cycle_MoveDown
62                 }
63                 Derive TextButton Clear
64                 {
65                         normal  "Clear"
66
67                         action  Nex_Action_Cycle_Clear
68                 }
69         }
70 }