mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
55500acdf9
git-subtree-dir: lib/loggerpro git-subtree-split: d1e0db6e93724e5fd825f0a8c02151d60450f98f
79 lines
1.6 KiB
ObjectPascal
79 lines
1.6 KiB
ObjectPascal
unit LoggerPro.VCLListBoxAppender;
|
|
{ <@abstract(The unit to include if you want to use the @link(TVCLListBoxAppender))
|
|
@author(David Cornelius) }
|
|
|
|
interface
|
|
|
|
uses
|
|
LoggerPro,
|
|
System.Classes,
|
|
Vcl.StdCtrls;
|
|
|
|
type
|
|
{ @abstract(Appends formatted @link(TLogItem) to a TListBox in a VCL application) }
|
|
TVCLListBoxAppender = class(TLoggerProAppenderBase)
|
|
private
|
|
FLB: TListBox;
|
|
FMaxLogLines: Word;
|
|
public
|
|
constructor Create(aLB: TListBox; aMaxLogLines: Word = 500; aLogFormat: string = DEFAULT_LOG_FORMAT); reintroduce;
|
|
procedure Setup; override;
|
|
procedure TearDown; override;
|
|
procedure WriteLog(const aLogItem: TLogItem); override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
System.SysUtils;
|
|
|
|
{ TVCLListBoxAppender }
|
|
|
|
constructor TVCLListBoxAppender.Create(aLB: TListBox; aMaxLogLines: Word; aLogFormat: string);
|
|
begin
|
|
inherited Create(aLogFormat);
|
|
FLB := aLB;
|
|
FMaxLogLines := aMaxLogLines;
|
|
end;
|
|
|
|
procedure TVCLListBoxAppender.Setup;
|
|
begin
|
|
inherited;
|
|
TThread.Synchronize(nil,
|
|
procedure
|
|
begin
|
|
FLB.Clear;
|
|
end);
|
|
end;
|
|
|
|
procedure TVCLListBoxAppender.TearDown;
|
|
begin
|
|
// do nothing
|
|
end;
|
|
|
|
procedure TVCLListBoxAppender.WriteLog(const aLogItem: TLogItem);
|
|
var
|
|
lText: string;
|
|
begin
|
|
lText := FormatLog(aLogItem);
|
|
|
|
TThread.Queue(nil,
|
|
procedure
|
|
var
|
|
Lines: integer;
|
|
begin
|
|
FLB.Items.BeginUpdate;
|
|
try
|
|
Lines := FLB.Items.Count;
|
|
if Lines > FMaxLogLines then
|
|
FLB.Items.Delete(0);
|
|
FLB.AddItem(lText, nil);
|
|
FLB.ItemIndex := FLB.Items.Count - 1;
|
|
finally
|
|
FLB.Items.EndUpdate;
|
|
end;
|
|
end);
|
|
end;
|
|
|
|
end.
|