-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuAbout.pas
More file actions
executable file
·95 lines (80 loc) · 2.46 KB
/
Copy pathuAbout.pas
File metadata and controls
executable file
·95 lines (80 loc) · 2.46 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
//
// Copyright 2016 Gabriel P. Silva and José Antonio S. Borges
//
// This file is part of simulator SimuS.
//
// SimuS is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// SimuS is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with SimuS. If not, see <http://www.gnu.org/licenses/>.
//
// Este arquivo é parte do programa simulador SimuS.
//
// SimuS é um software livre; você pode redistribuí-lo e/ou
// modificá-lo dentro dos termos da Licença Pública Geral GNU como
// publicada pela Fundação do Software Livre (FSF); na versão 3 da
// Licença, ou (na sua opinião) qualquer versão.
//
// Este programa é distribuído na esperança de que possa ser útil,
// mas SEM NENHUMA GARANTIA; sem uma garantia implícita de ADEQUAÇÃO
// a qualquer MERCADO ou APLICAÇÃO EM PARTICULAR. Veja a
// Licença Pública Geral GNU para maiores detalhes.
//
// Você deve ter recebido uma cópia da Licença Pública Geral GNU junto
// com este programa, se não, veja em <http://www.gnu.org/licenses/>.
//
unit uAbout;
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
interface
uses
{$IFnDEF FPC}
Windows,
{$ELSE}
LCLIntf, LCLType,
{$ENDIF}
SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls, LCLTranslator, DefaultTranslator;
type
{ TAboutBox }
TAboutBox = class(TForm)
Panel1: TPanel;
ProductName: TLabel;
Version: TLabel;
Copyright: TLabel;
Comments: TLabel;
OKButton: TButton;
Label2: TLabel;
Image1: TImage;
procedure OKButtonClick(Sender: TObject);
procedure VersionClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$IFnDEF FPC}
{$R *.dfm}
{$ELSE}
{$R *.lfm}
{$ENDIF}
procedure TAboutBox.OKButtonClick(Sender: TObject);
begin
close;
end;
procedure TAboutBox.VersionClick(Sender: TObject);
begin
end;
end.