blob: 6c537cc08d140b23dc111175c6f862a73aae9431 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
can_minimize="false"
can_tear_off="false"
can_resize="false"
can_drag_on_left="false"
can_close="true"
height="150"
layout="topleft"
name="ban_duration"
title="Ban duration"
single_instance="true"
width="180">
<text
type="string"
length="1"
follows="left|top"
height="15"
layout="topleft"
left="15"
name="duration_textbox"
top="10"
width="75">
Ban duration:
</text>
<radio_group
draw_border="false"
enabled="true"
follows="left|top"
height="47"
left="20"
mouse_opaque="true"
name="ban_duration_radio"
tab_stop="true"
width="150">
<radio_item
type="string"
follows="left|top"
height="20"
width="200"
label="Always"
name="always_radio">
Always
</radio_item>
<radio_item
type="string"
follows="left|top"
height="20"
width="200"
label="Temporary"
name="temporary_radio">
Temporary
</radio_item>
</radio_group>
<spinner
allow_digits_only="true"
decimal_digits="0"
follows="left|top"
height="20"
increment="1"
max_val="8766"
min_val="1"
initial_val="1"
name="ban_hours"
top_delta="50"
left="40"
width="60"/>
<text
type="string"
length="1"
follows="left|top"
height="15"
left_delta="70"
name="hours_textbox"
top_delta="5"
width="70">
hours.
</text>
<button
follows="left|top"
height="23"
label="Ok"
left="15"
name="ok_btn"
top_delta="30"
width="75">
</button>
<button
follows="left|top"
height="23"
label="Cancel"
left_pad="0"
name="cancel_btn"
top_delta="0"
width="75">
</button>
</floater>
|