47 lines
1.6 KiB
C++
47 lines
1.6 KiB
C++
//---------------------------------------------------------------------------
|
|
#ifndef MainFormH
|
|
#define MainFormH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "CoolForm.hpp"
|
|
#include <ExtCtrls.hpp>
|
|
#include "ActivApp.hpp"
|
|
#include <Buttons.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm1 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TCoolForm *CoolForm1;
|
|
TActivApp *ActivApp1;
|
|
TButton *Button1;
|
|
TButton *Button2;
|
|
TButton *Button3;
|
|
TButton *Button4;
|
|
TButton *Button5;
|
|
TButton *Button6;
|
|
TButton *Button7;
|
|
TButton *Button8;
|
|
TButton *Button9;
|
|
TBitBtn *BitBtn1;
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
void __fastcall Button2Click(TObject *Sender);
|
|
void __fastcall Button3Click(TObject *Sender);
|
|
void __fastcall Button4Click(TObject *Sender);
|
|
void __fastcall Button5Click(TObject *Sender);
|
|
void __fastcall Button6Click(TObject *Sender);
|
|
void __fastcall Button7Click(TObject *Sender);
|
|
void __fastcall Button8Click(TObject *Sender);
|
|
void __fastcall Button9Click(TObject *Sender);
|
|
void __fastcall BitBtn1Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm1(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm1 *Form1;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|