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
|
//---------------------------------------------------------------------------
#ifndef startdlgH
#define startdlgH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ComCtrls.hpp>
#include <ExtCtrls.hpp>
#include "rtklib.h"
//---------------------------------------------------------------------------
class TStartDialog : public TForm
{
__published:
TButton *BtnOk;
TButton *BtnCancel;
TPanel *Panel1;
TEdit *TimeY1;
TUpDown *TimeY1UD;
TEdit *TimeH1;
TUpDown *TimeH1UD;
TLabel *Label2;
TLabel *Label1;
void __fastcall TimeY1UDChangingEx(TObject *Sender, bool &AllowChange,
short NewValue, TUpDownDirection Direction);
void __fastcall TimeH1UDChangingEx(TObject *Sender, bool &AllowChange,
short NewValue, TUpDownDirection Direction);
void __fastcall FormShow(TObject *Sender);
void __fastcall BtnOkClick(TObject *Sender);
private:
public:
gtime_t Time;
__fastcall TStartDialog(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TStartDialog *StartDialog;
//---------------------------------------------------------------------------
#endif
|