28 lines
977 B
C++
28 lines
977 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef TitleFrmH
|
|
#define TitleFrmH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TFrmTitle : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel* Label1;
|
|
TEdit* edTitle;
|
|
TButton* Button1;
|
|
TButton* Button2;
|
|
void __fastcall Button1Click(TObject* Sender);
|
|
void __fastcall Button2Click(TObject* Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TFrmTitle(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TFrmTitle* FrmTitle;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|