-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdlgAutoBuild_Batch.pas
More file actions
43 lines (36 loc) · 927 Bytes
/
dlgAutoBuild_Batch.pas
File metadata and controls
43 lines (36 loc) · 927 Bytes
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
unit dlgAutoBuild_Batch;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Samples.Spin,
Vcl.ExtCtrls, Vcl.Imaging.jpeg;
type
TAutoBuildPref = class(TForm)
Panel1: TPanel;
Label1: TLabel;
Image1: TImage;
Panel2: TPanel;
btnCancel: TButton;
btnOk: TButton;
Panel3: TPanel;
Label7: TLabel;
Label8: TLabel;
lblSeedDepth1: TLabel;
prefHeatAlgorithm: TRadioGroup;
prefUseDefRaceTime: TCheckBox;
prefRaceTimeTopPercent: TSpinEdit;
prefExcludeOutsideLanes: TCheckBox;
prefSeperateGender: TCheckBox;
prefGroupBy: TRadioGroup;
rgpSeedMethod: TRadioGroup;
spnSeedDepth: TSpinEdit;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AutoBuildPref: TAutoBuildPref;
implementation
{$R *.dfm}
end.