]> icculus.org git repositories - divverent/nexuiz.git/blob - data/menu/creategame/management.menu
give menu source its own directory
[divverent/nexuiz.git] / data / menu / creategame / management.menu
1 // Property of Alientrap/AK
2 //
3 // creategame/management.menu
4 Item Layout Management
5 {
6         size            '900 585'
7         flag            [FlagEmbedded]
8         alignment       [AlignCenter]
9         direction       '0 20'
10         origin          '450 0'
11
12         Item Arrangement ConfigType
13         {
14                 flag            [FlagEmbedded]
15                 direction       '20 0'
16
17                 Derive TextButton WeaponConfigs
18                 {
19                         normal  "Weapons"
20                         action  Nex_Action_Management_TypeWeapon
21                 }
22                 Derive TextButton GameConfigs
23                 {
24                         normal  "Game"
25                         action  Nex_Action_Management_TypeGame
26                 }
27                 Derive TextButton Maplists
28                 {
29                         normal  "Maplists"
30                         action  Nex_Action_Management_TypeMapList
31                 }
32         }
33
34         Item Task_Job SyncCategory
35         {
36                 update  Nex_Update_Management_SyncData
37         }
38
39         Derive List FileList
40         {
41                 size    '300 340'
42                 target  "::Data::Management::FileList::Weapon"
43
44                 action  Nex_Action_CopyToFilename
45         }
46
47         Item Arrangement Filename
48         {
49                 flag            [FlagEmbedded]
50                 direction       [Nex_DefaultHorzDirection]
51
52                 Derive TextButton Label
53                 {
54                         normal  "Config Name :"
55                         link    "##next"
56                 }
57                 Derive EditBox Name
58                 {
59                         //size  '260 11'
60                         target  "::Data::Management::Filename::Text"
61
62                         action  Nex_Action_TestOnChange
63                         select  Nex_Action_TestOnSelect
64                 }
65         }
66
67         Item Arrangement Controls
68         {
69                 flag            [FlagEmbedded]
70                 direction       [Nex_DefaultHorzDirection]
71
72                 Derive TextButton Save
73                 {
74                         normal  "Save"
75                         action  Nex_Action_Management_Save
76                 }
77
78                 Derive TextButton Load
79                 {
80                         normal  "Load"
81                         action  Nex_Action_Management_Load
82                 }
83
84                 Derive TextButton Refresh
85                 {
86                         normal  "Refresh"
87                         action  Nex_Action_Management_Refresh
88                 }
89         }
90 }