-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddNotificationFormUnit.dfm
More file actions
105 lines (105 loc) · 2.29 KB
/
AddNotificationFormUnit.dfm
File metadata and controls
105 lines (105 loc) · 2.29 KB
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
object AddNotificationForm: TAddNotificationForm
Left = 1056
Top = 236
BorderStyle = bsDialog
Caption = 'Add notification'
ClientHeight = 236
ClientWidth = 305
Color = clBtnFace
Constraints.MaxHeight = 1000
Constraints.MaxWidth = 1680
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poOwnerFormCenter
Scaled = False
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object SpTBXTitleBar1: TSpTBXTitleBar
Left = 0
Top = 0
Width = 305
Height = 236
Caption = 'Add notification'
Active = False
FixedSize = True
Options.Minimize = False
Options.Maximize = False
object NotifsComboBox: TSpTBXComboBox
Left = 24
Top = 64
Width = 257
Height = 21
Style = csDropDownList
ItemHeight = 13
TabOrder = 1
OnChange = NotifsComboBoxChange
Items.Strings = (
'<player> joins <channel>'
'Player joins battle user is participating in'
'Player joins battle user is hosting'
'<player> changes his status to in-battle'
'Battle opens using specified mod')
end
object Edit1: TSpTBXEdit
Left = 88
Top = 112
Width = 121
Height = 21
TabOrder = 2
Text = 'Player'
end
object Edit2: TSpTBXEdit
Left = 88
Top = 136
Width = 121
Height = 21
TabOrder = 3
Text = '#main'
end
object AddButton: TSpTBXButton
Left = 64
Top = 192
Width = 75
Height = 25
Caption = 'Add'
TabOrder = 4
OnClick = AddButtonClick
end
object CancelButton: TSpTBXButton
Left = 168
Top = 192
Width = 75
Height = 25
Caption = 'Cancel'
TabOrder = 5
OnClick = CancelButtonClick
Cancel = True
end
object SpTBXLabel1: TSpTBXLabel
Left = 16
Top = 40
Width = 79
Height = 13
Caption = 'Notification type:'
end
object FieldLabel1: TSpTBXLabel
Left = 24
Top = 112
Width = 32
Height = 13
Caption = 'Player:'
end
object FieldLabel2: TSpTBXLabel
Left = 24
Top = 136
Width = 42
Height = 13
Caption = 'Channel:'
end
end
end