]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/options/player.menu
Adding my current version of the scmenu to the nexuiz cvs.
[divverent/nexuiz.git] / scmenu / options / player.menu
1 // Property of Alientrap/AK
2 // options/player.menu
3 Item Window Player
4 {
5         size      '600 600'
6
7         Item Window Avatar
8         {
9                 size    '250 600'
10                 flag    [FlagEmbedded]
11
12                 Derive Picture Picture
13                 {
14                         size    '250 400'
15                         picture "gfx/m_white"
16                 }
17                 Derive MultiLabel Description
18                 {
19                         size    '250 200'
20                         pos     '0 400'
21                         wrap    20
22                 }
23                 Derive TextButton Prev
24                 {
25                         pos     '0 0'
26                         normal  "<<"
27
28                         action  Nex_Action_Avatar_Prev
29                 }
30                 Derive Label Name
31                 {
32                         pos             '24 0'
33                         size            '202 12'
34                         alignment       [AlignCenter]
35                 }
36                 Derive TextButton Next
37                 {
38                         pos     '226 0'
39                         normal  ">>"
40
41                         action  Nex_Action_Avatar_Next
42                 }
43                 Item Task_Job Job
44                 {
45                         init    Nex_Automation_UpdateAvatar
46                 }
47         }
48         Item Layout Settings
49         {
50                 pos             '250 0'
51                 origin          '175 0'
52                 size            '350 600'
53                 flag            [FlagEmbedded]
54                 alignment       [AlignFirst]
55                 direction       [Nex_DefaultVertDirection]
56
57                 Derive Nex_Composition Name
58                 {
59                         Derive TextButton Description
60                         {
61                                 normal  "Player name"
62                                 link    "EditBox"
63                         }
64                         Derive EditBox EditBox
65                         {
66                                 size    '156 20'
67                                 target  "Data::Player::Name::Text"
68                                 action  Nex_Action_TestOnChange
69                         }
70                 }
71         }
72 }