-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.h
36 lines (36 loc) · 1.07 KB
/
about.h
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
//----------------------------------------------------------------------------
#ifndef aboutH
#define aboutH
//----------------------------------------------------------------------------
#include <vcl\System.hpp>
#include <vcl\Windows.hpp>
#include <vcl\SysUtils.hpp>
#include <vcl\Classes.hpp>
#include <vcl\Graphics.hpp>
#include <vcl\Forms.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Buttons.hpp>
#include <vcl\ExtCtrls.hpp>
#include <jpeg.hpp>
//----------------------------------------------------------------------------
class Tfrm_about : public TForm
{
__published:
TPanel *Panel1;
TLabel *ProductName;
TLabel *Version;
TLabel *Copyright;
TLabel *Comments;
TButton *OKButton;
TImage *Image1;
TImage *Image2;
TLabel *Label1;
private:
public:
virtual __fastcall Tfrm_about(TComponent* AOwner);
};
//----------------------------------------------------------------------------
extern PACKAGE Tfrm_about *frm_about;
//----------------------------------------------------------------------------
#endif