-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogViewFrame.pas
71 lines (53 loc) · 1.2 KB
/
LogViewFrame.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
unit LogViewFrame;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, DemoInterfaces, Vcl.StdCtrls;
type
TLogFrame = class(TFrame, ILogger, IClipboardProvider)
LogMemo: TMemo;
private
{ Private declarations }
protected
procedure Log(const level: TLogLevel; const value: string);
function CanCopy: Boolean;
function CanCut: Boolean;
function CanPaste: Boolean;
procedure Copy;
procedure Cut;
procedure Paste;
public
{ Public declarations }
end;
implementation
{$R *.dfm}
{ TLogFrame }
function TLogFrame.CanCopy: Boolean;
begin
result := LogMemo.SelLength > 0;
end;
function TLogFrame.CanCut: Boolean;
begin
result := false;
end;
function TLogFrame.CanPaste: Boolean;
begin
result := false;
end;
procedure TLogFrame.Copy;
begin
LogMemo.CopyToClipboard;
end;
procedure TLogFrame.Cut;
begin
//
end;
procedure TLogFrame.Log(const level: TLogLevel; const value: string);
const prefixes : array[TLogLevel] of string = ('DBG', 'INF', 'WRN', 'ERR');
begin
LogMemo.Lines.Add(prefixes[level] + ' : ' + value);
end;
procedure TLogFrame.Paste;
begin
end;
end.