-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGPSKalmanForm.h
40 lines (38 loc) · 1.33 KB
/
GPSKalmanForm.h
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
//---------------------------------------------------------------------------
#ifndef GPSKalmanFormH
#define GPSKalmanFormH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ComCtrls.hpp>
#include "GPXData.h"
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TGPSKalmanFilter : public TForm
{
__published: // IDE-managed Components
TProgressBar *ProgressBar;
TButton *m_Ok;
TButton *m_Cancel;
TLabel *Label3;
TEdit *RValue;
TCheckBox *SaveSpeed;
TPanel *Panel1;
TCheckBox *SaveAlt;
void __fastcall m_OkClick(TObject *Sender);
void __fastcall ValueKeyPress(TObject *Sender, char &Key);
private:
PGPXTrack m_pCurrentTrack;
PGPXTrack m_pFilteredTrack;
void __fastcall SetPCurrentTrack(PGPXTrack value);
PGPXTrack __fastcall GetPCurrentTrack(); // User declarations
public: // User declarations
__fastcall TGPSKalmanFilter(TComponent* Owner);
__property PGPXTrack PCurrentTrack = { read=GetPCurrentTrack, write=SetPCurrentTrack };
};
//---------------------------------------------------------------------------
extern PACKAGE TGPSKalmanFilter *GPSKalmanFilter;
//---------------------------------------------------------------------------
#endif