summaryrefslogtreecommitdiff
path: root/gui/fpguiprogressbar.inc
diff options
context:
space:
mode:
authorFelipe Menteiro de Carvalho <sekelsenmat@users.sourceforge.net>2007-04-09 09:01:13 +0000
committerFelipe Menteiro de Carvalho <sekelsenmat@users.sourceforge.net>2007-04-09 09:01:13 +0000
commit5720b4c6f5fd3c3e55ea2f531b9a0d6cdce662fe (patch)
tree2bea5efc11bc27a19cf6eac4f5cc1ce65871e71e /gui/fpguiprogressbar.inc
parent805144cfb6139d282b256b77517b9ae233f4cf99 (diff)
downloadfpGUI-5720b4c6f5fd3c3e55ea2f531b9a0d6cdce662fe.tar.xz
Started appending F to classes on fpgui, to make its namespace more unique
Diffstat (limited to 'gui/fpguiprogressbar.inc')
-rw-r--r--gui/fpguiprogressbar.inc18
1 files changed, 9 insertions, 9 deletions
diff --git a/gui/fpguiprogressbar.inc b/gui/fpguiprogressbar.inc
index 19a4de34..3bdc91f3 100644
--- a/gui/fpguiprogressbar.inc
+++ b/gui/fpguiprogressbar.inc
@@ -24,7 +24,7 @@
{ TCustomProgressBar }
- TCustomProgressBar = class(TCustomPanel)
+ TFCustomProgressBar = class(TFCustomPanel)
private
FFillColor: TColor;
FMax: integer;
@@ -48,7 +48,7 @@
end;
- TProgressBar = class(TCustomProgressBar)
+ TFProgressBar = class(TFCustomProgressBar)
published
property CanExpandWidth;
property CanExpandHeight;
@@ -67,14 +67,14 @@
{$IFDEF read_implementation}
-procedure TCustomProgressBar.SetFillColor(const AValue: TColor);
+procedure TFCustomProgressBar.SetFillColor(const AValue: TColor);
begin
if FFillColor = AValue then exit;
FFillColor := AValue;
Redraw;
end;
-procedure TCustomProgressBar.SetMax(const AValue: integer);
+procedure TFCustomProgressBar.SetMax(const AValue: integer);
begin
if FMax = AValue then exit;
FMax := AValue;
@@ -83,7 +83,7 @@ begin
Redraw;
end;
-procedure TCustomProgressBar.SetMin(const AValue: integer);
+procedure TFCustomProgressBar.SetMin(const AValue: integer);
begin
if FMin = AValue then exit;
FMin := AValue;
@@ -92,7 +92,7 @@ begin
Redraw;
end;
-procedure TCustomProgressBar.SetPosition(const AValue: integer);
+procedure TFCustomProgressBar.SetPosition(const AValue: integer);
begin
if FPosition = AValue then
exit; //==>
@@ -103,7 +103,7 @@ begin
end;
end;
-procedure TCustomProgressBar.SetShowPercentage(const AValue: Boolean);
+procedure TFCustomProgressBar.SetShowPercentage(const AValue: Boolean);
begin
if FShowPercentage = AValue then
Exit; //==>
@@ -111,7 +111,7 @@ begin
Redraw;
end;
-procedure TCustomProgressBar.Paint(Canvas: TFCanvas);
+procedure TFCustomProgressBar.Paint(Canvas: TFCanvas);
var
Pt: TPoint;
r: TRect;
@@ -143,7 +143,7 @@ begin
end;
end;
-constructor TCustomProgressBar.Create(const pText: string; pOwner: TComponent);
+constructor TFCustomProgressBar.Create(const pText: string; pOwner: TComponent);
begin
inherited Create(pText, pOwner);
FCanExpandHeight := False;