]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/templates.menu
-Small cosmetic change in the key options menu.
[divverent/nexuiz.git] / scmenu / templates.menu
1 // Property of Alientrap
2 //
3 // Templates
4
5 //////////////////////////////////////////////////////////////////////////////////
6 // Basic default templates (setting default properties)
7 //////////////////////////////////////////////////////////////////////////////////
8 Template Rect Rect
9 {
10         size            [InfiniteVector]
11         alpha           1.0
12         drawFlag        [DrawFlagNormal]
13         color           '1.0 1.0 1.0'
14 }
15 Template Label Label
16 {
17         color           [DefaultTextColor]
18         alpha           [DefaultTextAlpha]
19         drawFlag        [DefaultTextDrawFlag]
20         fontSize        [DefaultFontSize]
21 }
22 Template Picture Picture
23 {
24         color           [DefaultPicColor]
25         alpha           [DefaultPicAlpha]
26         drawFlag        [DefaultPicDrawFlag]
27 }
28 Template Button TextButton
29 {
30         fontSize        [DefaultFontSize]
31         color           [DefaultTextColor]
32         colorSelected   [DefaultSelTextColor]
33         colorPressed    [DefaultPreTextColor]
34         alphas_x        [DefaultTextAlpha]
35         alphas_y        [DefaultSelTextAlpha]
36         alphas_z        [DefaultPreTextAlpha]
37         drawFlags_x     [DefaultTextDrawFlag]
38         drawFlags_y     [DefaultSelTextDrawFlag]
39         drawFlags_z     [DefaultPreTextDrawFlag]
40         soundSelected   [DefaultSelectSound]
41         soundPressed    [DefaultPressSound]
42 }
43 Template Button PictureButton
44 {
45         color           [DefaultPicColor]
46         colorSelected   [DefaultSelPicColor]
47         colorPressed    [DefaultPrePicColor]
48         alphas_x        [DefaultPicAlpha]
49         alphas_y        [DefaultSelPicAlpha]
50         alphas_z        [DefaultPrePicAlpha]
51         drawFlags_x     [DefaultPicDrawFlag]
52         drawFlags_y     [DefaultSelPicDrawFlag]
53         drawFlags_z     [DefaultPrePicDrawFlag]
54         soundSelected   [DefaultSelectSound]
55         soundPressed    [DefaultPressSound]
56 }
57 Template Slider Slider
58 {
59         color           [DefaultPicColor]
60         //colorSelected [DefaultSelPicColor]
61         colorSelected   "0.9 0.9 1.0"
62         alphas_x        [DefaultPicAlpha]
63         alphas_y        [DefaultSelPicAlpha]
64         drawFlags_x     [DefaultPicDrawFlag]
65         drawFlags_y     [DefaultSelPicDrawFlag]
66         soundSelected   [DefaultSelectSound]
67         soundIncrease   [DefaultIncreaseSound]
68         soundDecrease   [DefaultDecreaseSound]
69         picture         [DefaultSliderBar]
70         pictureSlider   [DefaultSlider]
71         proportions     [DefaultProportions]
72         direction       [DefaultDirection]
73         size            '144 12'
74         sizeSlider      '12 12'
75 }
76 Template EditBox EditBox
77 {
78         fontSize        [DefaultFontSize]
79         color           [DefaultTextColor]
80         colorSelected   [DefaultTextColor]
81         colorPressed    [DefaultPreTextColor]
82         alphas_x        [DefaultTextAlpha]
83         alphas_y        [DefaultSelTextAlpha]
84         alphas_z        [DefaultPreTextAlpha]
85         drawFlags_x     [DefaultTextDrawFlag]
86         drawFlags_y     [DefaultSelTextDrawFlag]
87         drawFlags_z     [DefaultPreTextDrawFlag]
88         colorCursor     [DefaultCursorColor]
89         colorCursorFlash [DefaultCursorFlashColor]
90         alphasCursor_x  [DefaultTextAlpha]
91         alphasCursor_y  [DefaultSelTextAlpha]
92         drawFlagsCursor_x [DefaultTextDrawFlag]
93         drawFlagsCursor_y [DefaultSelTextDrawFlag]
94         sizeCursor      [DefaultCursorSize]
95         sizeCursorFlash [DefaultCursorFlashSize]
96         soundSelected   [DefaultSelectSound]
97         soundMove       [DefaultIncreaseSound]
98         soundKey        [DefaultDecreaseSound]
99 }
100 Template List List
101 {
102         fontSize        [DefaultFontSize]
103         color           [DefaultTextColor]
104         colorSelected   [DefaultSelTextColor]
105         colorPressed    [DefaultPreTextColor]
106         colorInactive   [DefaultInaTextColor]
107         alphas_x        [DefaultTextAlpha]
108         alphas_y        [DefaultSelTextAlpha]
109         alphas_z        [DefaultPreTextAlpha]
110         alphaInactive   [DefaultInaTextAlpha]
111         drawFlags_x     [DefaultTextDrawFlag]
112         drawFlags_y     [DefaultSelTextDrawFlag]
113         drawFlags_z     [DefaultPreTextDrawFlag]
114         drawFlagInactive [DefaultInaTextDrawFlag]
115         soundSelected   [DefaultSelectSound]
116         soundPressed    [DefaultPressSound]
117 }
118 DeriveTemplate TextButton ValueButton
119 {
120         type    "Item_ValueButton"
121 }
122 DeriveTemplate PictureButton PictureValueButton
123 {
124         type    "Item_ValueButton"
125 }
126 DeriveTemplate Label MultiLabel
127 {
128         type    "Item_MultiLabel"
129 }
130 DeriveTemplate TextButton SwitchButton
131 {
132         type    "Item_SwitchButton"
133 }
134 //////////////////////////////////////////////////////////////////////////////////
135 // Derived items
136 //////////////////////////////////////////////////////////////////////////////////
137 Template Arrangement Composition
138 {
139         flag            [FlagEmbedded]
140 }
141 //////////////////////////////////////////////////////////////////////////////////
142 // Specialized items
143 //////////////////////////////////////////////////////////////////////////////////
144 Template DataLink_ValueSwitch DataLink_OnOffSwitch
145 {
146         minValue        0.0
147         maxValue        1.0
148         descList        "'Off' 'On'"
149         link            "##up"
150 }
151 Template DataLink_Value DataLink_ZeroOneValue
152 {
153         minValue        0.0
154         maxValue        1.0
155         stepValue       0.05
156         link            "##up"
157 }
158 //////////////////////////////////////////////////////////////////////////////////
159 // Nexuiz specialized items
160 //////////////////////////////////////////////////////////////////////////////////
161 #define Nex_DefaultHorzDirection        '10 0 0'
162 #define Nex_DefaultVertDirection        '0 10 0'
163 Template Automation_Job Nex_Automation_Option_Slider
164 {
165         action Nex_Automation_Option_Slider
166 }
167 Template Automation_Job Nex_Automation_Option_EditBox
168 {
169         action Nex_Automation_Option_EditBox
170 }
171 Template Automation_Job Nex_Automation_Option_Switch
172 {
173         action Nex_Automation_Option_Switch
174 }
175 DeriveTemplate Composition Nex_Composition
176 {
177         direction       [Nex_DefaultHorzDirection]
178 }
179 DeriveTemplate Picture Nex_Line
180 {
181         picture "gfx/m_dot"
182         size    "200 10"
183 }
184 Item Custom Nex_Void
185 {
186         size    "200 12"
187         flag    [FlagNoSelect]
188 }
189
190 DeriveTemplate TextButton Nex_KeyButton
191 {
192         type    "Item_Nex_KeyButton"
193 }
194 DeriveTemplate MultiLabel Nex_Credits
195 {
196         type    "Item_Nex_Credits"
197 }
198 DeriveTemplate Label Nex_HostCache_StringField
199 {
200         type    "Item_Nex_HostCache_StringField"
201 }
202 DeriveTemplate Label Nex_HostCache_ValueField
203 {
204         type    "Item_Nex_HostCache_ValueField"
205 }
206 DeriveTemplate Label Nex_HostCache_Players
207 {
208         type    "Item_Nex_HostCache_Players"
209 }
210 DeriveTemplate PictureButton Nex_HostCache_Entry
211 {
212         normal          "$gfx/white"
213         drawFlags       [DrawFlagModulate]
214         type            "Item_Nex_HostCache_Entry"
215 }
216
217 DeriveTemplate Nex_Composition Nex_Option_Slider
218 {
219         DeriveTemplate Nex_Automation_Option_Slider Automation
220         {}
221         DeriveTemplate TextButton       Description
222         {}
223         DeriveTemplate Slider           Slider
224         {
225                 action  Nex_Action_TestOnChange
226         }
227         DeriveTemplate ValueButton      Value
228         {}
229 }
230 DeriveTemplate Composition Nex_Option_Switch
231 {
232         direction       [Nex_DefaultHorzDirection]
233
234         DeriveTemplate Nex_Automation_Option_Switch Automation
235         {}
236         DeriveTemplate TextButton       Description
237         {}
238         DeriveTemplate SwitchButton     Switch
239         {
240                 action  Nex_Action_TestOnChange
241         }
242 }