summaryrefslogtreecommitdiff
path: root/KPFormSimpleCode.h
blob: 0cbd5ead4180aeac8cec009030574c70b5055b96 (plain)
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
//---------------------------------------------------------------------------

#ifndef KPFormSimpleCodeH
#define KPFormSimpleCodeH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Buttons.hpp>
#include <Graphics.hpp>
//---------------------------------------------------------------------------
class TKPLWindowSimple : public TForm
{
__published:	// IDE-managed Components
    TBitBtn *BBOk;
    TBitBtn *BBCancel;
    TImage *Img0Spec;
    TImage *Img1Easy;
    TImage *Img4VeryHard;
    TImage *Img3Hard;
    TImage *Img2Medium;
    TRadioButton *RB0Spec;
    TRadioButton *RB1Easy;
    TRadioButton *RB2Medium;
    TRadioButton *RB3Hard;
    TRadioButton *RB4VeryHard;
    void __fastcall BBOkClick(TObject *Sender);
    void __fastcall BBCancelClick(TObject *Sender);
private:	// User declarations
public:		// User declarations
    __fastcall TKPLWindowSimple(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TKPLWindowSimple *KPLWindowSimple;
//---------------------------------------------------------------------------
#endif