-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutunit.pas
More file actions
103 lines (82 loc) · 2.33 KB
/
aboutunit.pas
File metadata and controls
103 lines (82 loc) · 2.33 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
96
97
98
99
100
101
102
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;
function GetAppVersionString(IncludeBuildInfo:Boolean=True; MinorDigits:Byte=2;
IncludePosRelease:Boolean=False; IncludeAnyRelease:Boolean=False): String;
var
AboutForm: TAboutForm;
implementation
uses FileInfo;
function GetAppVersionString(IncludeBuildInfo:Boolean=True; MinorDigits:Byte=2;
IncludePosRelease:Boolean=False; IncludeAnyRelease:Boolean=False): String;
var VersionInfo: TVersionInfo;
begin
Result:= '';
try
VersionInfo:= TVersionInfo.Create;
VersionInfo.Load(HINSTANCE);
Result:= IntToStr(VersionInfo.FixedInfo.FileVersion[0]) + '.' +
Format('%0.*d',[MinorDigits,VersionInfo.FixedInfo.FileVersion[1]]);
if (IncludeAnyRelease or (IncludePosRelease and (VersionInfo.FixedInfo.FileVersion[2]<>0))) then
Result:= Result + '.' + IntToStr(VersionInfo.FixedInfo.FileVersion[2]);
if IncludeBuildInfo then
Result:= Result + '.' + IntToStr(VersionInfo.FixedInfo.FileVersion[3]);
finally
if assigned(VersionInfo) then
VersionInfo.Free;
end;
end; {getappversionstring}
{ TAboutForm }
procedure TAboutForm.FormCreate(Sender: TObject);
var FontName :string;
begin
Caption := 'Opposing Fields version ' + GetAppVersionString(True,2,True,True);
{$IF Defined(LINUX)}
FontName := 'Liberation Mono';
{$ELSEIF Defined(WINDOWS)}
FontName := 'Courier New';
{$ELSE}
FontName := 'Courier';
{$ENDIF}
try
mAbout.Font.Name := FontName;
mAbout.Lines.LoadFromFile('readme.txt');
except
on E:Exception do
mAbout.Lines.Text := 'Sorry readme not available';
end;
try
mLicence.Font.Name := FontName;
mLicence.Lines.LoadFromFile('licence.txt');
except
on E:Exception do
mLicence.Lines.Text := 'Sorry licence not available';
end;
try
mCredits.Font.Name := FontName;
mCredits.Lines.LoadFromFile('credits.txt');
except
on E:Exception do
mCredits.Lines.Text := 'Sorry credits not available';
end;
end;
initialization
{$I aboutunit.lrs}
end.