-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrameReLog.cpp
84 lines (70 loc) · 2.2 KB
/
FrameReLog.cpp
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
77
78
79
80
81
82
83
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include <algorithm>
#include "FrameReLog.h"
using std::max;
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
//---------------------------------------------------------------------------
namespace ValidCtrl {
static void Test() {
new ::TfrmeReLog( nullptr );
}
}
//---------------------------------------------------------------------------
__fastcall TfrmeReLog::TfrmeReLog(TComponent* Owner)
: TFrame(Owner)
{
}
//---------------------------------------------------------------------------
void TfrmeReLog::SetMaxLogSize( int Val )
{
Val = max( Val, 1024 );
if ( Val < maxLogSize_ ) {
RichEdit1->Lines->BeginUpdate();
while ( RichEdit1->Text.Length() > maxLogSize_ ) {
RichEdit1->Lines->Delete( 0 );
}
}
maxLogSize_ = Val;
}
//---------------------------------------------------------------------------
void TfrmeReLog::LogMessage( String Text, TColor Color )
{
if ( RichEdit1->Text.Length() > maxLogSize_ ) {
RichEdit1->Lines->BeginUpdate();
while ( RichEdit1->Text.Length() > maxLogSize_ ) {
RichEdit1->Lines->Delete( 0 );
}
RichEdit1->Lines->EndUpdate();
}
RichEdit1->SetFocus();
RichEdit1->SelStart = RichEdit1->GetTextLen();
RichEdit1->SelAttributes->Color = Color;
RichEdit1->SelText = Text;
RichEdit1->Perform(
EM_SCROLLCARET,
static_cast<NativeUInt>( 0 ),
static_cast<NativeInt>( 0 )
);
}
//---------------------------------------------------------------------------
void TfrmeReLog::Clear()
{
RichEdit1->Clear();
}
//---------------------------------------------------------------------------
bool TfrmeReLog::IsEmpty() const
{
TGetTextLengthEx TextLen;
TextLen.flags = GTL_NUMCHARS;
TextLen.codepage = 1200; // Unicode
return !RichEdit1->Perform(
EM_GETTEXTLENGTHEX,
reinterpret_cast<NativeUInt>( &TextLen ),
static_cast<NativeInt>( 0 )
);
}
//---------------------------------------------------------------------------