lazarus-ccr/components/systools/source/general/run/stnvcoll.pas
wp_xxyyzz 543cdf06d9 systools: Rearrange units and packages
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6159 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2018-01-30 16:17:37 +00:00

197 lines
4.7 KiB
ObjectPascal

// Upgraded to Delphi 2009: Sebastian Zierer
(* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is TurboPower SysTools
*
* The Initial Developer of the Original Code is
* TurboPower Software
*
* Portions created by the Initial Developer are Copyright (C) 1996-2002
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* ***** END LICENSE BLOCK ***** *)
{*********************************************************}
{* SysTools: StNVColl.pas 4.04 *}
{*********************************************************}
{* SysTools: non visual component for TStCollection *}
{*********************************************************}
{$IFDEF FPC}
{$mode DELPHI}
{$ENDIF}
//{$I StDefine.inc}
unit StNVColl;
interface
uses
{$IFNDEF FPC}
Windows,
{$ENDIF}
Classes,
StBase, StColl, StNVCont;
type
TStNVCollection = class(TStNVContainerBase)
{.Z+}
protected {private}
{property variables}
FContainer : TStCollection; {instance of the container}
FPageElements : Integer;
{property methods}
procedure SetPageElements(Value : Integer);
{internal methods}
procedure RecreateContainer;
protected
function GetOnCompare : TStCompareEvent;
override;
function GetOnDisposeData : TStDisposeDataEvent;
override;
function GetOnLoadData : TStLoadDataEvent;
override;
function GetOnStoreData : TStStoreDataEvent;
override;
procedure SetOnCompare(Value : TStCompareEvent);
override;
procedure SetOnDisposeData(Value : TStDisposeDataEvent);
override;
procedure SetOnLoadData(Value : TStLoadDataEvent);
override;
procedure SetOnStoreData(Value : TStStoreDataEvent);
override;
public
constructor Create(AOwner : TComponent);
override;
destructor Destroy;
override;
{.Z-}
property Container : TStCollection
read FContainer;
published
property PageElements : Integer
read FPageElements
write SetPageElements default 1000;
property OnCompare;
property OnDisposeData;
property OnLoadData;
property OnStoreData;
end;
implementation
{*** TStNVCollection ***}
constructor TStNVCollection.Create(AOwner : TComponent);
begin
inherited Create(AOwner);
{defaults}
FPageElements := 1000;
if Classes.GetClass(TStCollection.ClassName) = nil then
RegisterClass(TStCollection);
FContainer := TStCollection.Create(FPageElements);
end;
destructor TStNVCollection.Destroy;
begin
FContainer.Free;
FContainer := nil;
inherited Destroy;
end;
function TStNVCollection.GetOnCompare : TStCompareEvent;
begin
Result := FContainer.OnCompare;
end;
function TStNVCollection.GetOnDisposeData : TStDisposeDataEvent;
begin
Result := FContainer.OnDisposeData;
end;
function TStNVCollection.GetOnLoadData : TStLoadDataEvent;
begin
Result := FContainer.OnLoadData;
end;
function TStNVCollection.GetOnStoreData : TStStoreDataEvent;
begin
Result := FContainer.OnStoreData;
end;
procedure TStNVCollection.RecreateContainer;
var
HoldOnCompare : TStCompareEvent;
HoldOnDisposeData : TStDisposeDataEvent;
HoldOnLoadData : TStLoadDataEvent;
HoldOnStoreData : TStStoreDataEvent;
begin
HoldOnCompare := FContainer.OnCompare;
HoldOnDisposeData := FContainer.OnDisposeData;
HoldOnLoadData := FContainer.OnLoadData;
HoldOnStoreData := FContainer.OnStoreData;
FContainer.Free;
FContainer := TStCollection.Create(FPageElements);
FContainer.OnCompare := HoldOnCompare;
FContainer.OnDisposeData := HoldOnDisposeData;
FContainer.OnLoadData := HoldOnLoadData;
FContainer.OnStoreData := HoldOnStoreData;
end;
procedure TStNVCollection.SetOnCompare(Value : TStCompareEvent);
begin
FContainer.OnCompare := Value;
end;
procedure TStNVCollection.SetOnDisposeData(Value : TStDisposeDataEvent);
begin
FContainer.OnDisposeData := Value;
end;
procedure TStNVCollection.SetOnLoadData(Value : TStLoadDataEvent);
begin
FContainer.OnLoadData := Value;
end;
procedure TStNVCollection.SetOnStoreData(Value : TStStoreDataEvent);
begin
FContainer.OnStoreData := Value;
end;
procedure TStNVCollection.SetPageElements(Value : Integer);
begin
FPageElements := Value;
RecreateContainer;
end;
end.