-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathunit1.lfm
124 lines (124 loc) · 2.18 KB
/
unit1.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
object Form1: TForm1
Left = 515
Height = 268
Top = 216
Width = 201
BorderStyle = bsDialog
Caption = 'TPConfig V1.2'
ClientHeight = 268
ClientWidth = 201
OnCreate = FormCreate
LCLVersion = '2.0.2.0'
object speedGroup: TGroupBox
Left = 8
Height = 56
Top = 48
Width = 185
Caption = 'Speed'
ClientHeight = 39
ClientWidth = 181
TabOrder = 0
object speedBar: TTrackBar
Left = 0
Height = 36
Top = 0
Width = 176
Max = 255
Position = 0
TabOrder = 0
end
end
object senseGroup: TGroupBox
Left = 8
Height = 56
Top = 104
Width = 185
Caption = 'Sensitivity'
ClientHeight = 39
ClientWidth = 181
TabOrder = 1
object senseBar: TTrackBar
Left = 0
Height = 36
Top = 0
Width = 176
Max = 255
Position = 0
TabOrder = 0
end
end
object quit: TButton
Left = 8
Height = 25
Top = 240
Width = 88
Caption = 'Quit'
OnClick = quitClick
TabOrder = 2
end
object apply: TButton
Left = 104
Height = 25
Top = 240
Width = 89
Caption = 'Apply'
OnClick = applyClick
TabOrder = 3
end
object pathGroup: TGroupBox
Left = 8
Height = 49
Top = 0
Width = 185
Caption = 'Path'
ClientHeight = 32
ClientWidth = 181
TabOrder = 4
object pathbox: TEdit
Left = 8
Height = 25
Top = 0
Width = 128
Enabled = False
ParentShowHint = False
TabOrder = 0
end
object pathset: TButton
Left = 144
Height = 25
Top = 0
Width = 31
Caption = 'Set'
Enabled = False
OnClick = pathsetClick
TabOrder = 1
end
end
object driftGroup: TGroupBox
Left = 8
Height = 56
Top = 160
Width = 185
Caption = 'Drift Time'
ClientHeight = 39
ClientWidth = 181
TabOrder = 5
object driftBar: TTrackBar
Left = 0
Height = 36
Top = 0
Width = 176
Max = 255
Position = 0
TabOrder = 0
end
end
object setbox: TCheckBox
Left = 8
Height = 22
Top = 216
Width = 180
Caption = 'Enable "Press to Select"'
TabOrder = 6
end
end