]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/options.menu
-Moved Weapon and Server to Create Game (now known as Game Settings and
[divverent/nexuiz.git] / scmenu / options.menu
1 // Property of Alientrap/AK
2 // Options menu
3
4 Item Window Options
5 {
6         Derive Picture Table1
7         {
8                 picture "gfx/table1"
9                 pos     '150 0'
10                 size    '700 600'
11         }
12 Item Layout Options
13 {
14         direction '20 0'
15
16         Item Arrangement Menu
17         {
18                 direction '0 10'
19
20                 Derive TextButton Player
21                 {
22                         normal          "Player"
23
24                         init            Nex_Action_JumpToPage
25                         target          "Panel::Player"
26                 }
27                 Derive TextButton Controls
28                 {
29                         normal          "Controls"
30
31                         init            Nex_Action_JumpToPage
32                         target          "Panel::KeyControl"
33                 }
34                 Derive TextButton Audio
35                 {
36                         normal          "Audio"
37
38                         init            Nex_Action_JumpToPage
39                         target          "Panel::Sound"
40                 }
41                 Derive TextButton Video
42                 {
43                         normal          "Video"
44
45                         init            Nex_Action_JumpToPage
46                         target          "Panel::Video"
47                 }
48                 Derive TextButton ColorControl
49                 {
50                         normal          "Color Control"
51
52                         init            Nex_Action_JumpToPage
53                         target          "Panel::ColorControl"
54                 }
55                 Derive TextButton Effects
56                 {
57                         normal          "Effects"
58
59                         init            Nex_Action_JumpToPage
60                         target          "Panel::Effects"
61                 }
62                 Derive TextButton Input
63                 {
64                         normal          "Input"
65
66                         init            Nex_Action_JumpToPage
67                         target          "Panel::Input"
68                 }
69         }
70         Item EventWindow Panel
71         {
72                 size    '700 800'
73                 reinit  Nex_Action_MakeFirstVisible
74
75                 #include "menu/options/sound.menu"
76                 #include "menu/options/video.menu"
77                 #include "menu/options/key.menu"
78                 #include "menu/options/player.menu"
79                 #include "menu/options/color.menu"
80                 #include "menu/options/effects.menu"
81                 #include "menu/options/input.menu"
82         }
83 }
84 }