-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaboutunit.pas
More file actions
87 lines (69 loc) · 1.59 KB
/
aboutunit.pas
File metadata and controls
87 lines (69 loc) · 1.59 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
unit aboutunit;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
ComCtrls, StdCtrls;
type
{ TAboutForm }
TAboutForm = class(TForm)
mAbout: TMemo;
mLicence: TMemo;
mCredits: TMemo;
PageControl: TPageControl;
TabSheet1: TTabSheet;
TabSheet2: TTabSheet;
TabSheet3: TTabSheet;
procedure FormCreate(Sender: TObject);
private
public
end;
var
AboutForm: TAboutForm;
implementation
{ TAboutForm }
procedure TAboutForm.FormCreate(Sender: TObject);
begin
try
{$IF Defined(LINUX)}
mAbout.Font.Name := 'Monospace';
{$ELSEIF Defined(WINDOWS)}
mAbout.Font.Name := 'Courier New';
{$ELSE}
mAbout.Font.Name := 'Courier';
{$ENDIF}
mAbout.Lines.LoadFromFile('readme.txt');
except
on E:Exception do
mAbout.Lines.Text := 'Sorry readme not available';
end;
try
{$IF Defined(LINUX)}
mLicence.Font.Name := 'Monospace';
{$ELSEIF Defined(WINDOWS)}
mLicence.Font.Name := 'Courier New';
{$ELSE}
mLicence.Font.Name := 'Courier';
{$ENDIF}
mLicence.Lines.LoadFromFile('licence.txt');
except
on E:Exception do
mLicence.Lines.Text := 'Sorry licence not available';
end;
try
{$IF Defined(LINUX)}
mCredits.Font.Name := 'Monospace';
{$ELSEIF Defined(WINDOWS)}
mCredits.Font.Name := 'Courier New';
{$ELSE}
mCredits.Font.Name := 'Courier';
{$ENDIF}
mCredits.Lines.LoadFromFile('credits.txt');
except
on E:Exception do
mCredits.Lines.Text := 'Sorry credits not available';
end;
end;
initialization
{$I aboutunit.lrs}
end.