-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutoStartRectsUnit.dfm
164 lines (164 loc) · 3.61 KB
/
AutoStartRectsUnit.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
object AutoStartRectsForm: TAutoStartRectsForm
Left = 788
Top = 370
Width = 393
Height = 301
Caption = 'Start rectangles options'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poOwnerFormCenter
Scaled = False
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object SpTBXTitleBar1: TSpTBXTitleBar
Left = 0
Top = 0
Width = 385
Height = 274
Caption = 'Start rectangles options'
Active = False
FixedSize = True
Options.Minimize = False
Options.Maximize = False
object SpTBXGroupBox2: TSpTBXGroupBox
Left = 8
Top = 32
Width = 185
Height = 193
Caption = 'Starting positions'
TabOrder = 1
TBXStyleBackground = True
object PosTypeComboBox: TSpTBXComboBox
Left = 48
Top = 30
Width = 121
Height = 21
Style = csDropDownList
ItemHeight = 13
ItemIndex = 0
TabOrder = 0
Text = 'North vs. south'
OnChange = PosTypeComboBoxChange
Items.Strings = (
'North vs. south'
'West vs. east')
end
object SpTBXLabel3: TSpTBXLabel
Left = 8
Top = 32
Width = 27
Height = 13
Caption = 'Type:'
end
object SpTBXLabel4: TSpTBXLabel
Left = 8
Top = 96
Width = 36
Height = 13
Caption = 'Length:'
end
object SpTBXLabel1: TSpTBXLabel
Left = 8
Top = 138
Width = 52
Height = 13
Caption = 'Thickness:'
end
object GroupsComboBox: TSpTBXComboBox
Left = 88
Top = 58
Width = 81
Height = 21
Style = csDropDownList
ItemHeight = 13
ItemIndex = 0
TabOrder = 4
Text = '2 ally teams'
OnChange = GroupsComboBoxChange
Items.Strings = (
'2 ally teams'
'4 ally teams')
end
object SpTBXLabel2: TSpTBXLabel
Left = 8
Top = 60
Width = 67
Height = 13
Caption = 'No. of groups:'
end
object LengthTracker: TSpTBXTrackBar
Left = 80
Top = 96
Width = 97
Height = 25
Max = 100
Frequency = 10
Position = 100
TabOrder = 6
ThumbLength = 15
OnChange = LengthTrackerChange
end
object ThicknessTracker: TSpTBXTrackBar
Left = 80
Top = 136
Width = 97
Height = 25
Max = 100
Frequency = 10
Position = 20
TabOrder = 7
ThumbLength = 15
OnChange = ThicknessTrackerChange
end
end
object SpTBXPanel2: TSpTBXPanel
Left = 208
Top = 38
Width = 169
Height = 187
Caption = 'SpTBXPanel2'
TabOrder = 2
TBXStyleBackground = True
object PreviewImage: TImage
Left = 8
Top = 24
Width = 150
Height = 150
end
object SpTBXLabel5: TSpTBXLabel
Left = 8
Top = 8
Width = 41
Height = 13
Caption = 'Preview:'
end
end
object SpTBXButton1: TSpTBXButton
Left = 112
Top = 240
Width = 81
Height = 25
Caption = 'Apply'
TabOrder = 3
OnClick = SpTBXButton1Click
end
object CloseButton: TSpTBXButton
Left = 208
Top = 240
Width = 81
Height = 25
Caption = 'Close'
TabOrder = 4
OnClick = CloseButtonClick
Cancel = True
Default = True
end
end
end