-
Notifications
You must be signed in to change notification settings - Fork 4
/
rmabout.pas
55 lines (36 loc) · 945 Bytes
/
rmabout.pas
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
unit rmabout;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls,lclintf;
Const
ProgramName ='Raster Master v5.1 R118 Halloween Edition';
ProgramLicense = 'Released October 31 - 2024 under MIT License';
type
{ TAboutDialog }
TAboutDialog = class(TForm)
Image1: TImage;
ProgramLicenseLabel: TLabel;
ProgramNameLabel: TLabel;
Shape1: TShape;
Shape2: TShape;
StaticText1: TStaticText;
procedure InitName;
procedure StaticText1Click(Sender: TObject);
private
public
end;
var
AboutDialog: TAboutDialog;
implementation
{$R *.lfm}
procedure TAboutDialog.InitName;
begin
ProgramNameLabel.caption:=ProgramName;
ProgramLicenseLabel.caption:=ProgramLicense;
end;
procedure TAboutDialog.StaticText1Click(Sender: TObject);
begin
OpenUrl('http://www.youtube.com/channel/UCLak9dN2fgKU9keY2XEBRFQ?sub_confirmation=1');
end;
end.