forked from alexgoussev/TrackProcessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DriftFilter.h
43 lines (39 loc) · 1.22 KB
/
DriftFilter.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
41
//---------------------------------------------------------------------------
#ifndef DriftFilterH
#define DriftFilterH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include "Drift.h"
#include <ComCtrls.hpp>
//---------------------------------------------------------------------------
class TDriftForm : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
TLabeledEdit *Aperture;
TLabeledEdit *Thereshould;
TComboBox *Strength;
TLabel *Label1;
TLabel *Action;
TButton *Go;
TButton *Exit;
TProgressBar *ProgressBar;
void __fastcall GoClick(TObject *Sender);
private: // User declarations
public:
PGPXTrack m_pCurrentTrack; // User declarations
__fastcall TDriftForm(TComponent* Owner);
void __fastcall OnPoint(TMessage & msg);
protected:
BEGIN_MESSAGE_MAP
VCL_MESSAGE_HANDLER(DRIFTFILTER_POINT, TMessage, OnPoint)
END_MESSAGE_MAP(TForm)
};
//---------------------------------------------------------------------------
extern PACKAGE TDriftForm *DriftForm;
//---------------------------------------------------------------------------
#endif