]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/quit.menu
Change 'cd volume' to 'music volume'
[divverent/nexuiz.git] / scmenu / quit.menu
1 // Property of Alientrap
2 //
3 // Quit window
4 Item Window QuitWnd
5 {
6         pos     '300 300'
7         size    '400 80'
8         flag    [FlagHidden]
9
10         Derive Rect Background
11         {
12                 color           '0.1 0.1 0.1'
13                 drawFlag        [DrawFlagModulate]
14                 flag            [FlagSealOffMouse]
15
16                 Derive Rect Layer
17                 {
18                         color           '0.3 0.3 0.3'
19                         drawFlag        [DrawFlagAdditive]
20                 }
21         }
22         Item Layout Layout
23         {
24                 origin          '200 0'
25                 direction       '0.0 10'
26                 flag            [FlagEmbedded]
27                 alignment       [AlignCenter]
28
29                 Item FloatingArea Title
30                 {
31                         size            '400 13'
32                         target          "##up up"
33                         Derive Rect Background
34                         {
35                                 color           '0.5 0.5 0.5'
36                         }
37                         Derive TextButton Caption
38                         {
39                                 size            '400 11'
40                                 alignment       [AlignCenter]
41                                 normal          "Quit Window"
42                                 link            "##up"
43                         }
44                 }
45                 Derive Label Text
46                 {
47                         text            "Do you really want to quit?"
48                 }
49                 Item Arrangement Buttons
50                 {
51                         direction       '40 0'
52                         key             Nex_Quit_Key
53
54                         Derive TextButton Yes
55                         {
56                                 normal  "Yes"
57                                 action  Nex_Quit_Yes
58                         }
59                         Derive TextButton No
60                         {
61                                 normal  "No"
62                                 action  Nex_Quit_No
63                         }
64                 }
65         }
66 }