-
Notifications
You must be signed in to change notification settings - Fork 1
/
unit2.pas
75 lines (48 loc) · 1.51 KB
/
unit2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
unit unit2;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
ExtCtrls, Menus, Buttons;
type
{ TAboutForm }
TAboutForm = class(TForm)
Image1: TImage;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
procedure FormCreate(Sender: TObject);
procedure Image1Click(Sender: TObject);
procedure Label1Click(Sender: TObject);
procedure Label2Click(Sender: TObject);
procedure Label3Click(Sender: TObject);
private
public
end;
var
AboutForm: TAboutForm;
implementation
{$R *.lfm}
{ TAboutForm }
procedure TAboutForm.Label1Click(Sender: TObject);
begin
end;
procedure TAboutForm.FormCreate(Sender: TObject);
begin
Label2.Caption:='Every child is an artist. The problem is how to remain an artist once we grow up.'+
LineEnding+'-Pablo Picasso.'+LineEnding;
Image1.Picture.LoadFromFile(Application.Location+'graphics\Logo-2.png');
Label2.Caption:=Label2.Caption+'Picasso is a photo viewer application designed to work fast on windows PC' + LineEnding+ 'with a very minimalistic design. It is an opensource project on github'+LineEnding+
'http://github.com/ohidurbappy/picasso'+LineEnding+
'http://www.facebook.com/ohidurbappy';
end;
procedure TAboutForm.Image1Click(Sender: TObject);
begin
end;
procedure TAboutForm.Label2Click(Sender: TObject);
begin
end;
procedure TAboutForm.Label3Click(Sender: TObject);
begin
end;
end.