53 lines
1.8 KiB
C++
53 lines
1.8 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef capg_menuH
|
|
#define capg_menuH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <Buttons.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TMainForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
TLabel *Label1;
|
|
TBevel *Bevel1;
|
|
TLabel *Label2;
|
|
TLabel *Label3;
|
|
TLabel *Label4;
|
|
TLabel *Label5;
|
|
TLabel *Label6;
|
|
TBitBtn *BitBtn2;
|
|
TBitBtn *BitBtn3;
|
|
TBitBtn *BitBtn4;
|
|
TBitBtn *BitBtn5;
|
|
TPanel *Panel2;
|
|
TBitBtn *BitBtn1;
|
|
TBitBtn *BitBtn6;
|
|
TBitBtn *BitBtn7;
|
|
TBitBtn *BitBtn8;
|
|
TBitBtn *BitBtn9;
|
|
TBitBtn *BitBtn10;
|
|
void __fastcall BitBtn2Click(TObject *Sender);
|
|
void __fastcall BitBtn1Click(TObject *Sender);
|
|
void __fastcall BitBtn5Click(TObject *Sender);
|
|
void __fastcall BitBtn6Click(TObject *Sender);
|
|
void __fastcall BitBtn8Click(TObject *Sender);
|
|
void __fastcall BitBtn7Click(TObject *Sender);
|
|
void __fastcall BitBtn3Click(TObject *Sender);
|
|
void __fastcall BitBtn9Click(TObject *Sender);
|
|
void __fastcall BitBtn4Click(TObject *Sender);
|
|
void __fastcall BitBtn10Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TMainForm(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TMainForm *MainForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|