mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 05:38:25 +02:00
LCL: Remove earlier stupid code made by myself.
git-svn-id: trunk@47929 -
This commit is contained in:
parent
f5a39a509c
commit
09da89b659
@ -853,7 +853,7 @@ type
|
||||
protected
|
||||
class procedure WSRegisterClass; override;
|
||||
procedure WMNCHitTest(var Message: TLMessage); message LM_NCHITTEST;
|
||||
procedure ActivateSub(InvalidateNeeded: Boolean);
|
||||
procedure ActivateSub;
|
||||
procedure DoShowWindow; override;
|
||||
procedure UpdateRegion;
|
||||
procedure SetColor(Value: TColor); override;
|
||||
|
@ -202,15 +202,13 @@ begin
|
||||
Result.CY := 25;
|
||||
end;
|
||||
|
||||
procedure THintWindow.ActivateSub(InvalidateNeeded: Boolean);
|
||||
procedure THintWindow.ActivateSub;
|
||||
begin
|
||||
SetBounds(FHintRect.Left, FHintRect.Top,
|
||||
FHintRect.Right - FHintRect.Left, FHintRect.Bottom - FHintRect.Top);
|
||||
Visible := True;
|
||||
FAutoHideTimer.Enabled := False;
|
||||
FAutoHideTimer.Enabled := FAutoHide;
|
||||
if InvalidateNeeded then
|
||||
Invalidate;
|
||||
end;
|
||||
|
||||
procedure THintWindow.ActivateHint(const AHint: String);
|
||||
@ -223,7 +221,7 @@ begin
|
||||
if Caption<>AHint then
|
||||
Invalidate;
|
||||
Caption := AHint;
|
||||
ActivateSub(Visible and (Caption <> AHint));
|
||||
ActivateSub;
|
||||
finally
|
||||
FActivating := False;
|
||||
end;
|
||||
@ -356,7 +354,8 @@ begin
|
||||
FActivating := True;
|
||||
try
|
||||
Assert(ControlCount > 0, 'THintWindowRendered.ActivateRendered: ControlCount = 0');
|
||||
ActivateSub(True);
|
||||
ActivateSub;
|
||||
Invalidate;
|
||||
finally
|
||||
FActivating := False;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user