-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit3.h
More file actions
39 lines (38 loc) · 1.24 KB
/
Unit3.h
File metadata and controls
39 lines (38 loc) · 1.24 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
//---------------------------------------------------------------------------
#ifndef Unit3H
#define Unit3H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <Vcl.Imaging.pngimage.hpp>
//---------------------------------------------------------------------------
class TAboutForm : public TForm
{
__published: // IDE-managed Components
TLabel *AuthorTitle;
TLabel *WebsiteTitle;
TLabel *ProjectTitle;
TLabel *AuthorLabel;
TLabel *AlexellLink;
TLabel *VersionTitle;
TLabel *VersionLabel;
TLabel *MSSLink;
TImage *MSSLogo;
TButton *CloseButton;
TPanel *Hr;
TLabel *GitHubLink;
void __fastcall AlexellLinkClick(TObject *Sender);
void __fastcall MSSLinkClick(TObject *Sender);
void __fastcall CloseButtonClick(TObject *Sender);
void __fastcall GitHubLinkClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TAboutForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TAboutForm *AboutForm;
//---------------------------------------------------------------------------
#endif