git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@31 05c56307-c608-d34a-929d-697000501d7a
39 lines
1.4 KiB
C++
39 lines
1.4 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef UnboundModeDemoFastestSweepersH
|
|
#define UnboundModeDemoFastestSweepersH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "cxButtons.hpp"
|
|
#include "cxLookAndFeelPainters.hpp"
|
|
//---------------------------------------------------------------------------
|
|
class TUnboundModeDemoFastestSweepersForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel *lbBeginner;
|
|
TLabel *lbIntermediate;
|
|
TLabel *lbExpert;
|
|
TLabel *lbExpertTime;
|
|
TLabel *lbIntermediateTime;
|
|
TLabel *lbBeginnerTime;
|
|
TLabel *ibExpertName;
|
|
TLabel *lbIntermediateName;
|
|
TLabel *lbBeginnerName;
|
|
TcxButton *bntOK;
|
|
TcxButton *btnResetScores;
|
|
void __fastcall FormCreate(TObject *Sender);
|
|
void __fastcall btnResetScoresClick(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TUnboundModeDemoFastestSweepersForm(TComponent* Owner);
|
|
bool FastestTimesResetted;
|
|
int __fastcall ShowModal();
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TUnboundModeDemoFastestSweepersForm *UnboundModeDemoFastestSweepersForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|