-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuOptions.lfm
198 lines (198 loc) · 4.02 KB
/
uOptions.lfm
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
object fmOptions: TfmOptions
Left = 697
Height = 447
Top = 289
Width = 517
BorderStyle = bsDialog
Caption = 'fmOptions'
ClientHeight = 447
ClientWidth = 517
OnCreate = FormCreate
OnShow = FormShow
Position = poDesktopCenter
LCLVersion = '0.9.31'
object Panel: TPanel
Left = 20
Height = 365
Top = 16
Width = 477
Anchors = [akTop, akLeft, akRight, akBottom]
BevelOuter = bvNone
ClientHeight = 365
ClientWidth = 477
TabOrder = 0
object cbPathType: TComboBox
Left = 16
Height = 31
Top = 232
Width = 164
ItemHeight = 0
Sorted = True
Style = csDropDownList
TabOrder = 0
end
object cbPathColorType: TComboBox
Left = 212
Height = 31
Top = 232
Width = 200
ItemHeight = 0
Sorted = True
Style = csDropDownList
TabOrder = 1
end
object cbStampColorType: TComboBox
Left = 212
Height = 31
Top = 312
Width = 200
ItemHeight = 0
Sorted = True
Style = csDropDownList
TabOrder = 2
end
object edStarReciprocalRadius: TSpinEdit
Left = 212
Height = 27
Top = 24
Width = 100
MinValue = 1
TabOrder = 3
Value = 1
end
object edPathWidth: TSpinEdit
Left = 212
Height = 27
Top = 160
Width = 100
MinValue = 1
TabOrder = 4
Value = 1
end
object edOuterRadius: TSpinEdit
Left = 212
Height = 27
Top = 64
Width = 100
MinValue = 2
TabOrder = 5
Value = 2
end
object edStarSpikes: TSpinEdit
Left = 212
Height = 27
Top = 112
Width = 100
MinValue = 3
TabOrder = 6
Value = 3
end
object btBackgroundColor: TColorButton
Left = 16
Height = 25
Top = 320
Width = 164
BorderWidth = 2
ButtonColorSize = 16
ButtonColor = clBlack
end
object lbBackgroundColor: TLabel
Left = 17
Height = 18
Top = 288
Width = 131
Caption = 'lbBackgroundColor'
ParentColor = False
end
object lbStampColorType: TLabel
Left = 212
Height = 18
Top = 288
Width = 127
Caption = 'lbStampColorType'
FocusControl = cbStampColorType
ParentColor = False
end
object lbPathColorType: TLabel
Left = 212
Height = 18
Top = 208
Width = 114
Caption = 'lbPathColorType'
FocusControl = cbPathColorType
ParentColor = False
end
object lbPathType: TLabel
Left = 17
Height = 18
Top = 208
Width = 77
Caption = 'lbPathType'
FocusControl = cbPathType
ParentColor = False
end
object lbStarReciprocalRadius: TLabel
Left = 17
Height = 18
Top = 24
Width = 164
AutoSize = False
Caption = 'lbStarReciprocalRadius'
FocusControl = edStarReciprocalRadius
ParentColor = False
end
object lbOuterRadius: TLabel
Left = 16
Height = 18
Top = 73
Width = 164
AutoSize = False
Caption = 'lbOuterRadius'
FocusControl = edOuterRadius
ParentColor = False
end
object lbStarSpikes: TLabel
Left = 17
Height = 18
Top = 120
Width = 164
AutoSize = False
Caption = 'lbStarSpikes'
FocusControl = edStarSpikes
ParentColor = False
end
object lbPathWidth: TLabel
Left = 16
Height = 18
Top = 160
Width = 164
AutoSize = False
Caption = 'lbPathWidth'
FocusControl = edPathWidth
ParentColor = False
end
end
object btCancel: TButton
Left = 406
Height = 25
Top = 402
Width = 91
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'btCancel'
ModalResult = 2
OnClick = btCancelClick
TabOrder = 1
end
object btOK: TButton
Left = 293
Height = 25
Top = 402
Width = 91
Anchors = [akRight, akBottom]
Caption = 'btOK'
Default = True
ModalResult = 1
TabOrder = 2
end
end