-
Notifications
You must be signed in to change notification settings - Fork 0
/
castle_baloon.pas
76 lines (62 loc) · 1.36 KB
/
castle_baloon.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
76
unit castle_baloon;
interface
uses
Windows,
Messages,
SysUtils,
Variants,
Classes,
Graphics,
Controls,
Forms,
Dialogs,
StdCtrls,
ExtCtrls;
type
TfrmBaloon = class(TForm)
Timer: TTimer;
lText: TMemo;
procedure Image2Click(Sender: TObject);
procedure TimerTimer(Sender: TObject);
procedure FormPaint(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure CreateParams(var Params: TCreateParams); override;
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
uses castle_interface;
{$R *.dfm}
procedure TfrmBaloon.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
with Params do
begin
ExStyle := ExStyle or WS_EX_APPWINDOW;
end;
end;
procedure TfrmBaloon.Image2Click(Sender: TObject);
begin
close;
end;
procedure TfrmBaloon.TimerTimer(Sender: TObject);
begin
Close;
end;
procedure TfrmBaloon.FormPaint(Sender: TObject);
begin
Canvas.Rectangle(0, 0, Width, Height);
end;
procedure TfrmBaloon.FormCreate(Sender: TObject);
begin
Timer.Interval := Config.Value_Int['BaloonTimer'];
Timer.Enabled := True;
end;
procedure TfrmBaloon.FormClose(Sender: TObject; var Action: TCloseAction);
begin
Action := caFree;
end;
end.