This repository was archived by the owner on Jan 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit4.dfm
More file actions
125 lines (125 loc) · 2.25 KB
/
Unit4.dfm
File metadata and controls
125 lines (125 loc) · 2.25 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
object OptionsForm: TOptionsForm
Left = 310
Top = 370
BorderStyle = bsToolWindow
Caption = 'Level Options'
ClientHeight = 183
ClientWidth = 206
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
OnClose = FormClose
OnDeactivate = FormDeactivate
OnKeyDown = FormKeyDown
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 14
Width = 35
Height = 13
Caption = 'Ground'
end
object Label2: TLabel
Left = 8
Top = 43
Width = 18
Height = 13
Caption = 'Sky'
end
object Label3: TLabel
Left = 8
Top = 107
Width = 22
Height = 13
Caption = 'LGR'
end
object BitBtn1: TBitBtn
Left = 16
Top = 154
Width = 82
Height = 25
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 4
NumGlyphs = 2
end
object ComboBox1: TComboBox
Left = 56
Top = 8
Width = 145
Height = 25
Style = csOwnerDrawFixed
ItemHeight = 19
ItemIndex = 0
MaxLength = 10
TabOrder = 0
Text = 'ground'
OnDrawItem = ComboBox1DrawItem
Items.Strings = (
'ground'
'sky'
'brick'
'stone1'
'stone2'
'stone3')
end
object ComboBox2: TComboBox
Left = 56
Top = 38
Width = 145
Height = 25
Style = csOwnerDrawFixed
ItemHeight = 19
ItemIndex = 1
MaxLength = 10
TabOrder = 1
Text = 'sky'
OnDrawItem = ComboBox1DrawItem
Items.Strings = (
'ground'
'sky'
'brick'
'stone1'
'stone2'
'stone3')
end
object LabeledEdit1: TLabeledEdit
Left = 8
Top = 82
Width = 193
Height = 21
EditLabel.Width = 57
EditLabel.Height = 13
EditLabel.Caption = 'Level Name'
MaxLength = 51
TabOrder = 2
Text = 'Unnamed'
end
object ComboBox3: TComboBox
Left = 8
Top = 124
Width = 145
Height = 21
Style = csDropDownList
ItemHeight = 13
TabOrder = 3
end
object BitBtn2: TBitBtn
Left = 112
Top = 154
Width = 82
Height = 25
Caption = 'Cancel'
ModalResult = 2
TabOrder = 5
end
end