]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/creategame/maplist.menu
removed the 'or something else' working title
[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                 action  Nex_Action_Cycle_Add
20         }
21         Derive Label CycleLabel
22         {
23                 pos     '475 0'
24                 text    "Cycle List:"
25         }
26         Derive List Cycle
27         {
28                 pos     '475 20'
29                 size    '425 450'
30
31                 target  "::Data::Server::Map::Cycle"
32                 action  Nex_Action_Cycle_Remove
33         }
34         Item Layout Panel
35         {
36                 pos     '475 470'
37                 size    '400 30'
38                 direction       [Nex_DefaultHorzDirection]
39                 flag            [FlagEmbedded]
40
41                 Derive TextButton Add
42                 {
43                         normal  "Add"
44
45                         action  Nex_Action_Cycle_Add
46                 }
47                 Derive TextButton Remove
48                 {
49                         normal  "Remove"
50
51                         action  Nex_Action_Cycle_Remove
52                 }
53                 Derive TextButton MoveUp
54                 {
55                         normal  "Move Up"
56
57                         action  Nex_Action_Cycle_MoveUp
58                 }
59                 Derive TextButton MoveDown
60                 {
61                         normal  "Move Down"
62
63                         action  Nex_Action_Cycle_MoveDown
64                 }
65                 Derive TextButton Clear
66                 {
67                         normal  "Clear"
68
69                         action  Nex_Action_Cycle_Clear
70                 }
71         }
72 }