]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/options/player.menu
This was certainly the wrong solution to a problem I dont see.
[divverent/nexuiz.git] / scmenu / options / player.menu
1 // Property of Alientrap/AK
2 // options/player.menu
3 Item Window Player
4 {
5         size      '700 600'
6
7         Item Window Avatar
8         {
9                 size    '300 600'
10                 flag    [FlagEmbedded]
11
12                 Derive Picture Picture
13                 {
14                         size    '300 400'
15                         picture "gfx/m_white"
16                 }
17                 Derive Rect Overlay
18                 {
19                         size            '300 15'
20                         drawFlag        [DrawFlagAdditive]
21                         alpha           0.4
22                 }
23                 Derive MultiLabel Description
24                 {
25                         size    '300 200'
26                         pos     '0 400'
27                         wrap    20
28                 }
29                 Derive TextButton Prev
30                 {
31                         pos     '0 0'
32                         normal  "<<"
33
34                         action  Nex_Action_Avatar_Prev
35                 }
36                 Derive Label Name
37                 {
38                         pos             '24 0'
39                         size            '252 12'
40                         alignment       [AlignCenter]
41                 }
42                 Derive TextButton Next
43                 {
44                         pos     '256 0'
45                         normal  ">>"
46
47                         action  Nex_Action_Avatar_Next
48                 }
49                 Item Task_Job Job
50                 {
51                         init    Nex_Automation_UpdateAvatar
52                 }
53         }
54         Item Layout Settings
55         {
56                 pos             '300 0'
57                 origin          '200 0'
58                 size            '400 600'
59                 flag            [FlagEmbedded]
60                 alignment       [AlignFirst]
61                 direction       [Nex_DefaultVertDirection]
62
63                 Derive Nex_Composition Name
64                 {
65                         Derive TextButton Description
66                         {
67                                 normal  "Player name"
68                                 link    "EditBox"
69                         }
70                         Derive EditBox EditBox
71                         {
72                                 size    '182 20'
73                                 target  "Data::Player::Name::Text"
74                         }
75                 }
76                 Derive Nex_Void Seperator1
77                 {}
78                 Derive PictureButton Apply
79                 {
80                         normal          "$gfx/m_apply"
81
82                         action  Nex_Action_Player_Apply
83                 }
84         }
85 }