forked from alexgoussev/TrackProcessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HP.dfm
105 lines (105 loc) · 2.01 KB
/
HP.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
object HPForm: THPForm
Left = 465
Top = 227
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Hodrick-Prescott Filter'
ClientHeight = 197
ClientWidth = 314
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 8
Top = 8
Width = 217
Height = 161
BevelOuter = bvLowered
TabOrder = 0
object Label1: TLabel
Left = 8
Top = 16
Width = 69
Height = 13
Caption = 'Smooth factor:'
end
object GroupBox1: TGroupBox
Left = 8
Top = 48
Width = 201
Height = 97
Caption = ' Apply Filter to: '
TabOrder = 0
object m_pCoordinates: TCheckBox
Left = 8
Top = 24
Width = 97
Height = 17
Caption = 'Coordinates'
Checked = True
State = cbChecked
TabOrder = 0
end
object m_pAltitude: TCheckBox
Left = 8
Top = 48
Width = 97
Height = 17
Caption = 'Altitude'
TabOrder = 1
end
object m_pSpeed: TCheckBox
Left = 8
Top = 72
Width = 121
Height = 17
Caption = 'Speed'
TabOrder = 2
end
end
object m_pLambda: TEdit
Left = 144
Top = 14
Width = 65
Height = 21
TabOrder = 1
Text = '500'
OnKeyPress = OnLambdaKeyPress
end
end
object Button1: TButton
Left = 232
Top = 8
Width = 75
Height = 25
Caption = 'Start'
Default = True
ModalResult = 1
TabOrder = 1
OnClick = Button1Click
end
object Button2: TButton
Left = 232
Top = 40
Width = 75
Height = 25
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 2
end
object ProgressBar: TProgressBar
Left = 8
Top = 176
Width = 297
Height = 16
TabOrder = 3
end
end