mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
27 lines
956 B
C++
27 lines
956 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
|