-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcreate.dfm
297 lines (297 loc) · 5.87 KB
/
create.dfm
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
object FormNew: TFormNew
Left = 777
Top = 109
BorderStyle = bsDialog
Caption = 'Create Game'
ClientHeight = 461
ClientWidth = 236
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
OnKeyPress = FormKeyPress
PixelsPerInch = 96
TextHeight = 13
object BevelGame: TBevel
Left = 5
Top = 10
Width = 226
Height = 6
Shape = bsTopLine
end
object LabelKind: TLabel
Left = 10
Top = 50
Width = 54
Height = 13
Caption = 'Game &kind:'
FocusControl = cbKind
end
object LabelName: TLabel
Left = 10
Top = 25
Width = 54
Height = 13
Caption = 'Your &name:'
FocusControl = EditName
end
object LabelIP: TLabel
Left = 10
Top = 95
Width = 47
Height = 13
Caption = 'Server &IP:'
FocusControl = EditIP
end
object BevelClient: TBevel
Left = 5
Top = 80
Width = 226
Height = 6
Shape = bsTopLine
end
object BevelButton: TBevel
Left = 5
Top = 420
Width = 226
Height = 6
Shape = bsTopLine
end
object LabelClient: TLabel
Left = 10
Top = 74
Width = 46
Height = 13
Caption = ' As client '
end
object LabelGame: TLabel
Left = 10
Top = 4
Width = 57
Height = 13
Caption = ' Game type '
end
object LabelPlayer2: TLabel
Left = 10
Top = 170
Width = 64
Height = 13
Caption = 'Player &2 type:'
FocusControl = cbPlayer2
end
object LabelPlayer3: TLabel
Left = 10
Top = 195
Width = 64
Height = 13
Caption = 'Player &3 type:'
FocusControl = cbPlayer3
end
object LabelPlayer4: TLabel
Left = 10
Top = 220
Width = 64
Height = 13
Caption = 'Player &4 type:'
FocusControl = cbPlayer4
end
object BevelServer: TBevel
Left = 5
Top = 155
Width = 226
Height = 6
Shape = bsTopLine
end
object LabelServer: TLabel
Left = 10
Top = 149
Width = 50
Height = 13
Caption = ' As server '
end
object BevelMsg: TBevel
Left = 5
Top = 280
Width = 226
Height = 6
Shape = bsTopLine
end
object LabelMsg: TLabel
Left = 10
Top = 274
Width = 96
Height = 13
Caption = ' Network messages '
end
object cbKind: TComboBox
Left = 90
Top = 45
Width = 141
Height = 21
Style = csDropDownList
ItemHeight = 13
ItemIndex = 0
TabOrder = 1
Text = 'Alone against computer'
OnSelect = cbKindSelect
Items.Strings = (
'Alone against computer'
'Multiplayer as server'
'Multiplayer as client')
end
object EditName: TEdit
Left = 90
Top = 20
Width = 141
Height = 21
TabOrder = 0
end
object ButtonStart: TButton
Left = 155
Top = 430
Width = 76
Height = 26
Caption = '&Start Game'
Default = True
ModalResult = 1
TabOrder = 10
OnClick = ButtonStartClick
end
object ButtonCancel: TButton
Left = 80
Top = 430
Width = 71
Height = 26
Caption = 'Cancel'
ModalResult = 2
TabOrder = 11
OnClick = ButtonCancelClick
end
object EditIP: TEdit
Left = 90
Top = 90
Width = 141
Height = 21
Enabled = False
TabOrder = 2
end
object MemoMsg: TMemo
Left = 5
Top = 290
Width = 226
Height = 71
TabStop = False
Enabled = False
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 12
end
object cbPlayer4: TComboBox
Left = 90
Top = 215
Width = 141
Height = 21
Style = csDropDownList
Enabled = False
ItemHeight = 13
ItemIndex = 0
TabOrder = 6
Text = 'Network player'
Items.Strings = (
'Network player'
'Computer player')
end
object cbPlayer3: TComboBox
Left = 90
Top = 190
Width = 141
Height = 21
Style = csDropDownList
Enabled = False
ItemHeight = 13
ItemIndex = 0
TabOrder = 5
Text = 'Network player'
Items.Strings = (
'Network player'
'Computer player')
end
object cbPlayer2: TComboBox
Left = 90
Top = 165
Width = 141
Height = 21
Style = csDropDownList
Enabled = False
ItemHeight = 13
ItemIndex = 0
TabOrder = 4
Text = 'Network player'
Items.Strings = (
'Network player'
'Computer player')
end
object ButtonServer: TButton
Left = 165
Top = 245
Width = 66
Height = 21
Caption = '&Create'
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 7
OnClick = ButtonServerClick
end
object ButtonClient: TButton
Left = 165
Top = 120
Width = 66
Height = 21
Caption = '&Join'
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 3
OnClick = ButtonClientClick
end
object EditMsg: TEdit
Left = 5
Top = 365
Width = 226
Height = 21
TabOrder = 8
OnEnter = EditMsgEnter
OnExit = EditMsgExit
end
object ButtonMsg: TButton
Left = 165
Top = 390
Width = 66
Height = 21
Caption = '&Send'
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 9
OnClick = ButtonMsgClick
end
end