source: trunk/Forms/FormNewGame.lfm

Last change on this file was 73, checked in by chronos, 8 months ago
  • Modified: Removed U prefix from unit names.
File size: 4.9 KB
Line 
1object FormNewGame: TFormNewGame
2 Left = 479
3 Height = 650
4 Top = 392
5 Width = 1015
6 Caption = 'New game'
7 ClientHeight = 650
8 ClientWidth = 1015
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnShow = FormShow
13 LCLVersion = '2.0.12.0'
14 object ButtonStart: TButton
15 Left = 888
16 Height = 37
17 Top = 600
18 Width = 113
19 Anchors = [akRight, akBottom]
20 Caption = 'Start'
21 ModalResult = 1
22 ParentFont = False
23 TabOrder = 0
24 end
25 object ButtonCancel: TButton
26 Left = 756
27 Height = 37
28 Top = 600
29 Width = 113
30 Anchors = [akRight, akBottom]
31 Caption = 'Cancel'
32 ModalResult = 2
33 ParentFont = False
34 TabOrder = 1
35 end
36 object Label1: TLabel
37 Left = 12
38 Height = 25
39 Top = 10
40 Width = 59
41 Caption = 'Players:'
42 ParentColor = False
43 ParentFont = False
44 end
45 object ListView1: TListView
46 Left = 12
47 Height = 552
48 Top = 36
49 Width = 442
50 Anchors = [akTop, akLeft, akBottom]
51 Checkboxes = True
52 Columns = <
53 item
54 Caption = 'Name'
55 Width = 226
56 end
57 item
58 Caption = 'Color'
59 Width = 74
60 end
61 item
62 Caption = 'Controls'
63 Width = 227
64 end>
65 OwnerData = True
66 ParentFont = False
67 ReadOnly = True
68 RowSelect = True
69 TabOrder = 2
70 ViewStyle = vsReport
71 OnChange = ListView1Change
72 OnCustomDrawSubItem = ListView1CustomDrawSubItem
73 OnData = ListView1Data
74 OnSelectItem = ListView1SelectItem
75 end
76 object ColorButton1: TColorButton
77 Left = 761
78 Height = 37
79 Top = 134
80 Width = 113
81 BorderWidth = 2
82 ButtonColorSize = 16
83 ButtonColor = clBlack
84 OnColorChanged = ColorButton1ColorChanged
85 ParentFont = False
86 end
87 object Label2: TLabel
88 Left = 600
89 Height = 25
90 Top = 139
91 Width = 62
92 Caption = 'Color 1:'
93 ParentColor = False
94 ParentFont = False
95 end
96 object GroupBox1: TGroupBox
97 Left = 588
98 Height = 292
99 Top = 250
100 Width = 408
101 Caption = 'Control keys'
102 ClientHeight = 262
103 ClientWidth = 404
104 ParentFont = False
105 TabOrder = 3
106 object EditUp: TEdit
107 Left = 130
108 Height = 33
109 Top = 2
110 Width = 120
111 OnChange = EditUpChange
112 OnKeyDown = EditUpKeyDown
113 ParentFont = False
114 TabOrder = 0
115 end
116 object Label3: TLabel
117 Left = 10
118 Height = 25
119 Top = 14
120 Width = 27
121 Caption = 'Up:'
122 ParentColor = False
123 ParentFont = False
124 end
125 object Label4: TLabel
126 Left = 10
127 Height = 25
128 Top = 62
129 Width = 51
130 Caption = 'Down:'
131 ParentColor = False
132 ParentFont = False
133 end
134 object EditDown: TEdit
135 Left = 130
136 Height = 33
137 Top = 48
138 Width = 120
139 OnChange = EditDownChange
140 OnKeyDown = EditDownKeyDown
141 ParentFont = False
142 TabOrder = 1
143 end
144 object Label5: TLabel
145 Left = 10
146 Height = 25
147 Top = 110
148 Width = 33
149 Caption = 'Left:'
150 ParentColor = False
151 ParentFont = False
152 end
153 object EditLeft: TEdit
154 Left = 130
155 Height = 33
156 Top = 98
157 Width = 120
158 OnChange = EditLeftChange
159 OnKeyDown = EditLeftKeyDown
160 ParentFont = False
161 TabOrder = 2
162 end
163 object Label6: TLabel
164 Left = 10
165 Height = 25
166 Top = 158
167 Width = 46
168 Caption = 'Right:'
169 ParentColor = False
170 ParentFont = False
171 end
172 object EditRight: TEdit
173 Left = 130
174 Height = 33
175 Top = 146
176 Width = 120
177 OnChange = EditRightChange
178 OnKeyDown = EditRightKeyDown
179 ParentFont = False
180 TabOrder = 3
181 end
182 object Label7: TLabel
183 Left = 10
184 Height = 25
185 Top = 206
186 Width = 52
187 Caption = 'Shoot:'
188 ParentColor = False
189 ParentFont = False
190 end
191 object EditShoot: TEdit
192 Left = 130
193 Height = 33
194 Top = 194
195 Width = 120
196 OnChange = EditShootChange
197 OnKeyDown = EditShootKeyDown
198 ParentFont = False
199 TabOrder = 4
200 end
201 end
202 object EditName: TEdit
203 Left = 720
204 Height = 33
205 Top = 36
206 Width = 264
207 OnChange = EditNameChange
208 ParentFont = False
209 TabOrder = 4
210 end
211 object Label8: TLabel
212 Left = 600
213 Height = 25
214 Top = 48
215 Width = 51
216 Caption = 'Name:'
217 ParentColor = False
218 ParentFont = False
219 end
220 object Label9: TLabel
221 Left = 600
222 Height = 25
223 Top = 174
224 Width = 62
225 Caption = 'Color 2:'
226 ParentColor = False
227 ParentFont = False
228 end
229 object ColorButton2: TColorButton
230 Left = 761
231 Height = 37
232 Top = 174
233 Width = 113
234 BorderWidth = 2
235 ButtonColorSize = 16
236 ButtonColor = clBlack
237 OnColorChanged = ColorButton2ColorChanged
238 ParentFont = False
239 end
240 object CheckBoxEnabled: TCheckBox
241 Left = 605
242 Height = 29
243 Top = 96
244 Width = 93
245 Caption = 'Enabled'
246 OnChange = CheckBoxEnabledChange
247 ParentFont = False
248 TabOrder = 5
249 end
250end
Note: See TracBrowser for help on using the repository browser.