mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-31 21:52:48 +02:00
148 lines
4.1 KiB
PHP
148 lines
4.1 KiB
PHP
// included by forms.pp
|
|
|
|
{ THintWindow
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.LCL, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
{
|
|
use:
|
|
HintWindow := THintWindow.Create(nil);
|
|
Rect := HintWindow.CalcHintRect(0,'This is the hint',nil);
|
|
HintWindow.ActivateHint(Rect,'This is the hint');
|
|
|
|
}
|
|
|
|
constructor THintWindow.Create(AOwner: TComponent);
|
|
var
|
|
TheTimer: TCustomTimer;
|
|
begin
|
|
inherited Create(AOwner);
|
|
fCompStyle := csHintWindow;
|
|
Parent := nil;
|
|
Color := clInfoBk;
|
|
Canvas.Font := Screen.HintFont;
|
|
Caption := 'THintWindow';
|
|
SetBounds(1,1,25,25);
|
|
FHideInterval := 3000;
|
|
TheTimer := TCustomTimer.Create(self);
|
|
FAutoHideTimer := TheTimer;
|
|
TheTimer.Interval := HideInterval;
|
|
TheTimer.Enabled := False;
|
|
TheTimer.OnTimer := @AutoHideHint;
|
|
end;
|
|
|
|
destructor THintWindow.Destroy;
|
|
begin
|
|
fAutoHideTimer.Free;
|
|
fAutoHideTimer:=nil;
|
|
inherited Destroy;
|
|
end;
|
|
|
|
Procedure THintWindow.SetHideInterval(Value : Integer);
|
|
Begin
|
|
FHideInterval := Value;
|
|
if FAutoHideTimer<>nil then
|
|
TCustomTimer(FAutoHideTimer).Interval := FHideInterval;
|
|
end;
|
|
|
|
Procedure THintWindow.SetAutoHide(Value : Boolean);
|
|
Begin
|
|
FAutoHide := Value;
|
|
if not (value) and (FAutoHideTimer<>nil) then
|
|
TCustomTimer(FAutoHideTimer).Enabled := False;
|
|
end;
|
|
|
|
|
|
Procedure THintWindow.AutoHideHint(Sender : TObject);
|
|
Begin
|
|
if FAutoHideTimer<>nil then
|
|
TCustomTimer(FAutoHideTimer).Enabled := False;
|
|
if Visible then
|
|
Visible := False;//Hide;
|
|
End;
|
|
|
|
procedure THintWindow.Paint;
|
|
var
|
|
Rect: TRect;
|
|
TS : TTextStyle;
|
|
//DefaultDraw: Boolean;
|
|
begin
|
|
Rect := ClientRect;
|
|
Canvas.Brush.Color := Color;
|
|
Canvas.Brush.Style := bsSolid;
|
|
Canvas.Pen.Width := 1;
|
|
DrawEdge(Canvas.Handle, Rect, BDR_RAISEDOUTER, BF_RECT);
|
|
with TS do
|
|
begin
|
|
Alignment := taCenter;
|
|
Layout := tlCenter;
|
|
SingleLine := false;
|
|
Clipping := true;
|
|
ExpandTabs := true;
|
|
ShowPrefix := false;
|
|
WordBreak := true;
|
|
Opaque := true;
|
|
SystemFont := false;
|
|
end;
|
|
Canvas.TextRect(Rect, 0, 0, Caption, TS);
|
|
end;
|
|
|
|
procedure THintWindow.ActivateHint(ARect: TRect; const AHint: String);
|
|
begin
|
|
if FActivating then exit;
|
|
FActivating := True;
|
|
try
|
|
Caption := AHint;
|
|
if ARect.Bottom > Screen.Height then
|
|
begin
|
|
ARect.Top := Screen.Height - (ARect.Bottom - ARect.Top);
|
|
ARect.Bottom := Screen.Height;
|
|
end;
|
|
if ARect.Right > Screen.Width then
|
|
begin
|
|
ARect.Left := Screen.Width - (ARect.Right - ARect.Left);
|
|
ARect.Right := Screen.Width;
|
|
end;
|
|
if ARect.Left < 0 then ARect.Left := 0;
|
|
if ARect.Top < 0 then ARect.Top := 0;
|
|
SetBounds(ARect.Left, ARect.Top,
|
|
ARect.Right - ARect.Left, ARect.Bottom - ARect.Top);
|
|
Visible := True;
|
|
TCustomTimer(FAutoHideTimer).Enabled := False;
|
|
TCustomTimer(FAutoHideTimer).Enabled := FAutoHide;
|
|
finally
|
|
FActivating := False;
|
|
end;
|
|
end;
|
|
|
|
function THintWindow.CalcHintRect(MaxWidth: Integer; const AHint: String;
|
|
AData: Pointer): TRect;
|
|
begin
|
|
Result := Rect(0,0, MaxWidth, ClientHeight);
|
|
if AHint='' then exit;
|
|
SelectObject(Canvas.Handle, Canvas.Font.Handle);
|
|
DrawText(Canvas.Handle, PChar(AHint), Length(AHint), Result, DT_CalcRect or
|
|
DT_NOPREFIX);
|
|
InflateRect(Result, 2, 2);
|
|
Inc(Result.Right, 3);
|
|
end;
|
|
|
|
procedure THintWindow.ReleaseHandle;
|
|
begin
|
|
DestroyHandle;
|
|
end;
|
|
|
|
// included by forms.pp
|
|
|