-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.h
More file actions
46 lines (45 loc) · 1.51 KB
/
About.h
File metadata and controls
46 lines (45 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//---------------------------------------------------------------------------
#ifndef AboutH
#define AboutH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Buttons.hpp>
#include <Graphics.hpp>
//---------------------------------------------------------------------------
class TAbout_Box : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
TGroupBox *GroupBox1;
TBitBtn *BitBtn1;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
TLabel *Label5;
TLabel *Label6;
TLabel *Label7;
TLabel *Label8;
TLabel *Label9;
TPanel *Panel2;
TPanel *Panel3;
TPanel *Panel4;
TPanel *Panel5;
void __fastcall About_CloseClick(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
void __fastcall Label3Click(TObject *Sender);
void __fastcall Label8Click(TObject *Sender);
void __fastcall Label5Click(TObject *Sender);
void __fastcall BitBtn1KeyPress(TObject *Sender, char &Key);
private: // User declarations
public: // User declarations
__fastcall TAbout_Box(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TAbout_Box *About_Box;
//---------------------------------------------------------------------------
#endif