LCL: removed not implemented methods TCustomImageList GetIcon and GetImages

git-svn-id: trunk@14019 -
This commit is contained in:
mattias 2008-02-07 18:42:06 +00:00
parent 79666bf74b
commit b72236c15c
2 changed files with 0 additions and 33 deletions

View File

@ -143,7 +143,6 @@ type
procedure SetWidth(const Value: Integer);
protected
procedure CheckIndex(AIndex: Integer; AForInsert: Boolean = False);
procedure GetImages(Index: Integer; const Image, Mask: TBitmap);
function GetReferenceHandle: THandle; override;
procedure Initialize; virtual;
procedure DefineProperties(Filer: TFiler); override;
@ -184,7 +183,6 @@ type
var ImageRect: TRect);
{$endif}
function GetHotSpot: TPoint; virtual;
procedure GetIcon(Index: Integer; Image: TIcon);
procedure Insert(AIndex: Integer; AImage, AMask: TBitmap);
procedure InsertIcon(Index: Integer; Image: TIcon);

View File

@ -611,37 +611,6 @@ begin
Result := Point(0, 0);
end;
{------------------------------------------------------------------------------
Method: TCustomImageList.GetIcon
Params: Index: the index of the requested image
Image: an icon as a container for the bitmap
Returns: Nothing
Fetches the index'th image into an icon.
------------------------------------------------------------------------------}
procedure TCustomImageList.GetIcon(Index: Integer; Image: TIcon);
begin
if (Index < 0) or (Index >= FCount)
then raise EInvalidOperation.Create(SInvalidIndex);
//No Icon Support yet
end;
{------------------------------------------------------------------------------
Method: TCustomImageList.GetImages
Params: Index: the index of the requested image
Image: a bitmap as a container for the bitmap
Mask: a bitmap as a container for the mask
Returns: Nothing
Fetches the index'th image and mask into a bitmap.
------------------------------------------------------------------------------}
procedure TCustomImageList.GetImages(Index: Integer; const Image, Mask: TBitmap);
begin
{$note implement}
end;
{------------------------------------------------------------------------------
Method: TCustomImageList.Initialize
Params: None