mirror of
https://bitbucket.org/Dennis07/lina-components.git
synced 2024-11-24 08:02:12 +02:00
7b82ce01c9
Signed-off-by: Dennis07 <den.goehlert@t-online.de>
57 lines
953 B
ObjectPascal
57 lines
953 B
ObjectPascal
unit uWebCtrls;
|
|
|
|
//////////////////////////////////////
|
|
/// Lina Web Controls Unit ///
|
|
/// **************************** ///
|
|
/// (c) 2014 Dennis Göhlert a.o. ///
|
|
//////////////////////////////////////
|
|
|
|
interface
|
|
|
|
uses
|
|
{ Standard-Units }
|
|
SysUtils, Classes,
|
|
{ Andere Package-Units }
|
|
uBase;
|
|
|
|
type
|
|
{ Hauptklassen }
|
|
TDownload = class(TComponent)
|
|
private
|
|
{ Private-Deklarationen }
|
|
public
|
|
{ Public-Deklarationen }
|
|
constructor Create(AOwner: TComponent); override;
|
|
destructor Destroy; override;
|
|
function GetProgressByte: Int64;
|
|
function GetProgressPercent: Byte;
|
|
published
|
|
{ Published-Deklarationen }
|
|
end;
|
|
|
|
implementation
|
|
|
|
constructor TDownload.Create(AOwner: TComponent);
|
|
begin
|
|
inherited;
|
|
//...
|
|
end;
|
|
|
|
destructor TDownload.Destroy;
|
|
begin
|
|
//...
|
|
inherited;
|
|
end;
|
|
|
|
function TDownload.GetProgressByte: Int64;
|
|
begin
|
|
//...
|
|
end;
|
|
|
|
function TDownload.GetProgressPercent: Byte;
|
|
begin
|
|
//...
|
|
end;
|
|
|
|
end.
|