-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCASform.dfm
208 lines (208 loc) · 3.74 KB
/
CASform.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
object frmCAS: TfrmCAS
Left = 230
Top = 167
BorderIcons = []
BorderStyle = bsToolWindow
Caption = 'Create A Scene'
ClientHeight = 526
ClientWidth = 165
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
FormStyle = fsStayOnTop
OldCreateOrder = False
OnCreate = FormCreate
OnDestroy = FormDestroy
OnMouseDown = FormMouseDown
OnMouseMove = FormMouseMove
OnMouseUp = FormMouseUp
OnPaint = FormPaint
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 151
Width = 24
Height = 13
Caption = 'Mass'
end
object Label2: TLabel
Left = 8
Top = 178
Width = 26
Height = 13
Caption = 'State'
end
object Label3: TLabel
Left = 8
Top = 205
Width = 35
Height = 13
Caption = 'Bouncy'
end
object Label4: TLabel
Left = 8
Top = 429
Width = 35
Height = 13
Caption = 'Frames'
end
object Label5: TLabel
Left = 8
Top = 235
Width = 75
Height = 13
Caption = 'Force on object'
end
object Label6: TLabel
Left = 8
Top = 448
Width = 87
Height = 13
Caption = 'Preview animation'
end
object Label7: TLabel
Left = 8
Top = 373
Width = 76
Height = 13
Caption = 'Collision options'
end
object progress: TProgressBar
Left = 3
Top = 427
Width = 161
Height = 17
Step = 1
TabOrder = 5
Visible = False
end
object cmdClose: TButton
Left = 3
Top = 497
Width = 75
Height = 25
Caption = '&Accept'
Enabled = False
ModalResult = 1
TabOrder = 0
OnClick = cmdCloseClick
end
object cmdCreate: TButton
Left = 86
Top = 423
Width = 75
Height = 25
Caption = 'Create!'
TabOrder = 1
OnClick = cmdCreateClick
end
object m_lstObjects: TListView
Left = 3
Top = 8
Width = 158
Height = 137
Columns = <>
ReadOnly = True
TabOrder = 2
ViewStyle = vsList
OnSelectItem = m_lstObjectsSelectItem
end
object m_strMass: TEdit
Left = 48
Top = 148
Width = 51
Height = 21
TabOrder = 3
Text = '1'
OnChange = m_strMassChange
end
object cboState: TComboBox
Left = 49
Top = 175
Width = 108
Height = 21
Style = csDropDownList
ItemHeight = 13
ItemIndex = 2
TabOrder = 4
Text = 'Moving'
OnSelect = cboStateSelect
Items.Strings = (
'Static'
'Sleeping'
'Moving'
'Static-ghost')
end
object trkBouncy: TTrackBar
Left = 49
Top = 202
Width = 108
Height = 28
Max = 100
TabOrder = 6
TickStyle = tsNone
OnChange = trkBouncyChange
end
object m_strFrameCount: TEdit
Left = 48
Top = 426
Width = 35
Height = 21
TabOrder = 7
Text = '500'
end
object cmdCancel: TButton
Left = 86
Top = 496
Width = 75
Height = 25
Cancel = True
Caption = '&Cancel'
ModalResult = 2
TabOrder = 8
OnClick = cmdCancelClick
end
object trkPreview: TTrackBar
Left = 7
Top = 466
Width = 150
Height = 26
Enabled = False
Max = 100
PageSize = 10
TabOrder = 9
TickStyle = tsNone
OnChange = trkPreviewChange
end
object lstCollisions: TComboBox
Left = 3
Top = 392
Width = 134
Height = 21
Style = csDropDownList
ItemHeight = 13
ItemIndex = 0
TabOrder = 10
Text = 'Left wall'
OnChange = lstCollisionsChange
Items.Strings = (
'Left wall'
'Right wall'
'Top wall'
'Bottom wall'
'Stick self-collisions')
end
object chkCollision: TCheckBox
Left = 143
Top = 394
Width = 17
Height = 17
TabOrder = 11
OnClick = chkCollisionClick
end
end