blob: 0c6342ea15b430ae1a2872cee63bbe2920987ba4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
#include "ui/menudef.h"
{
\\ SERVER INFO POPUP MENU \\
#define W 400
#define H 300
#define BUTT_W 45
#define BUTT_H 35
#define BORDER 10
#define LIST_W (W-(2*BORDER))
#define LIST_DW (LIST_W-40)
#define LEFT_C 0.13
#define RIGHT_C 0.61
menuDef
{
name "serverinfo_popmenu"
visible MENU_FALSE
fullscreen MENU_FALSE
rect (320-(W/2)) (240-(H/2)) W H
focusColor 1 1 1 1
style WINDOW_STYLE_FILLED
border WINDOW_BORDER_NONE
popup
onClose { }
onOpen { uiScript ServerStatus }
onESC
{
close serverinfo_popmenu
}
itemDef
{
name window
rect 0 -65 400 400
style WINDOW_STYLE_FILLED
backcolor 0 0 0 0.8
visible MENU_TRUE
decoration
border WINDOW_BORDER_NONE
}
itemDef
{
name serverinfo
rect 0 -65 400 400
type ITEM_TYPE_LISTBOX
style WINDOW_STYLE_EMPTY
elementwidth 120
elementheight 16
textscale .25
border WINDOW_BORDER_NONE
elementtype LISTBOX_TEXT
feeder FEEDER_SERVERSTATUS
notselectable
visible MENU_TRUE
columns 4
0 ((2*LEFT_C)*LIST_DW) ALIGN_LEFT
(LEFT_C*LIST_DW) (LEFT_C*LIST_DW) ALIGN_LEFT
((2*LEFT_C)*LIST_DW) (LEFT_C*LIST_DW) ALIGN_LEFT
((1-RIGHT_C)*LIST_DW) (RIGHT_C*LIST_DW) ALIGN_LEFT
}
// BUTTON //
itemDef
{
name refresh
text "Refresh"
type ITEM_TYPE_BUTTON
textscale .3
style WINDOW_STYLE_FILLED
backcolor 0 0 0 .8
rect 70 345 100 15
textalign ALIGN_CENTER
textvalign VALIGN_CENTER
forecolor 0 0.8 1 1
visible MENU_TRUE
action
{
play "sound/misc/menu1.wav";
uiScript ServerStatus
}
}
itemDef
{
name close
text "Close"
type ITEM_TYPE_BUTTON
textscale .3
style WINDOW_STYLE_FILLED
backcolor 0 0 0 .8
rect 220 345 100 15
textalign ALIGN_CENTER
textvalign VALIGN_CENTER
forecolor 0 0.8 1 1
visible MENU_TRUE
action
{
play "sound/misc/menu1.wav";
close serverinfo_popmenu
}
}
}
}
|