summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-08-31 17:48:26 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-08-31 17:48:26 +0000
commit70c19649c1db54392a1abc00a5c81daec7edecb9 (patch)
tree543e46770260439c4b8ba3d23914d42aa7fcacac
parent27f4e6b2935f700a9b2dc74877154d8367776217 (diff)
downloadfpGUI-70c19649c1db54392a1abc00a5c81daec7edecb9.tar.xz
* Renamed the Hint Shadow class te be inline with the naming convension of fpGUI.
-rw-r--r--src/gui/gui_hint.pas21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/gui/gui_hint.pas b/src/gui/gui_hint.pas
index 09db8db5..0918b97d 100644
--- a/src/gui/gui_hint.pas
+++ b/src/gui/gui_hint.pas
@@ -70,6 +70,7 @@ type
TfpgHintWindowClass = class of TfpgHintWindow;
+
var
HintWindowClass: TfpgHintWindowClass = TfpgHintWindow;
@@ -78,14 +79,14 @@ var
implementation
type
- TF_Shadow = class(TfpgForm)
+ TfpgHintShadow = class(TfpgForm)
public
constructor Create(AOwner: TComponent); override;
end;
var
- F_Shadow: TF_Shadow;
+ uShadowForm: TfpgHintShadow;
{ TfpgHintWindow }
@@ -98,8 +99,8 @@ end;
procedure TfpgHintWindow.FormHide(Sender: TObject);
begin
T_Chrono.Enabled := False;
- if Assigned(F_Shadow) then
- F_Shadow.Hide;
+ if Assigned(uShadowForm) then
+ uShadowForm.Hide;
end;
function TfpgHintWindow.GetText: TfpgString;
@@ -155,8 +156,8 @@ end;
procedure TfpgHintWindow.SetShadowColor(AValue: Tfpgcolor);
begin
- if F_Shadow.BackgroundColor <> AValue then
- F_Shadow.BackgroundColor := AValue;
+ if uShadowForm.BackgroundColor <> AValue then
+ uShadowForm.BackgroundColor := AValue;
end;
procedure TfpgHintWindow.HandleShow;
@@ -164,8 +165,8 @@ begin
// This is so the Shadow Window is below the Hint Window.
if Shadow > 0 then
begin
- F_Shadow.SetPosition(Left+Shadow, Top+Shadow, Width, Height);
- F_Shadow.Show;
+ uShadowForm.SetPosition(Left+Shadow, Top+Shadow, Width, Height);
+ uShadowForm.Show;
end;
inherited HandleShow;
end;
@@ -188,7 +189,7 @@ begin
L_Hint.OnClick := @T_ChronoFini;
T_Chrono := TfpgTimer.Create(FTime);
T_Chrono.OnTimer := @T_ChronoFini;
- F_Shadow:= TF_Shadow.Create(nil);
+ uShadowForm:= TfpgHintShadow.Create(nil);
OnShow := @FormShow;
OnHide := @FormHide;
end;
@@ -199,7 +200,7 @@ begin
L_Hint.SetPosition(Border, Border, Width - (Border * 2), Height - (Border * 2));
end;
-constructor TF_Shadow.Create(AOwner: TComponent);
+constructor TfpgHintShadow.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Name := 'F_Shadow';