]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/creategame/maplist.menu
-Added maplist.menu
[divverent/nexuiz.git] / scmenu / creategame / maplist.menu
1 // Property of Alientrap/AK
2 //
3 // creategame/maplist.menu
4 Item Window MapList
5 {
6         size '850 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    '400 500'
17
18                 init    Nex_Action_MapList_Init
19         }
20         Derive Label CycleLabel
21         {
22                 pos     '450 0'
23                 text    "Cycle List or some other name:"
24         }
25         Derive List Cycle
26         {
27                 pos     '450 20'
28                 size    '400 450'
29         }
30         Item Layout Panel
31         {
32                 pos     '450 470'
33                 size    '400 30'
34                 direction       [Nex_DefaultHorzDirection]
35                 flag            [FlagEmbedded]
36
37                 Derive TextButton Add
38                 {
39                         normal "Add"
40                 }
41                 Derive TextButton Remove
42                 {
43                         normal "Remove"
44                 }
45                 Derive TextButton MoveUp
46                 {
47                         normal "Move Up"
48                 }
49                 Derive TextButton MoveDown
50                 {
51                         normal "Move Down"
52                 }
53         }
54 }