summaryrefslogtreecommitdiff
path: root/KPFormSimpleCode.h
diff options
context:
space:
mode:
authorEric Anderson <ejona86@gmail.com>2009-05-01 17:14:46 -0500
committerEric Anderson <ejona86@gmail.com>2009-05-01 17:14:46 -0500
commit663d9336324110648ffdea7c7092a004353419b5 (patch)
treed35eccc38a36859bc317796a2058497ed9d8c382 /KPFormSimpleCode.h
downloadkpl-663d9336324110648ffdea7c7092a004353419b5.tar.gz
kpl-663d9336324110648ffdea7c7092a004353419b5.zip
Initial commit of source from zwzsg
Diffstat (limited to 'KPFormSimpleCode.h')
-rw-r--r--KPFormSimpleCode.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/KPFormSimpleCode.h b/KPFormSimpleCode.h
new file mode 100644
index 0000000..0cbd5ea
--- /dev/null
+++ b/KPFormSimpleCode.h
@@ -0,0 +1,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