mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-05 07:38:15 +02:00
43 lines
1.6 KiB
PHP
43 lines
1.6 KiB
PHP
{%MainUnit ../RubberBand.pas}
|
|
|
|
{******************************************************************************
|
|
TCustomRubberBand
|
|
******************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.modifiedLGPL, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
|
|
{ TCustomRubberBand }
|
|
|
|
function TCustomRubberBand.GetShape: TRubberBandShape;
|
|
begin
|
|
Result := FShape;
|
|
end;
|
|
|
|
procedure TCustomRubberBand.SetShape(const AValue: TRubberBandShape);
|
|
begin
|
|
if FShape = AValue then
|
|
Exit;
|
|
FShape := AValue;
|
|
if HandleAllocated then
|
|
TWsCustomRubberBandClass(WidgetsetClass).SetShape(Self, FShape);
|
|
end;
|
|
|
|
constructor TCustomRubberBand.Create(AOwner: TComponent);
|
|
begin
|
|
inherited Create(AOwner);
|
|
FShape := rbsLine;
|
|
end;
|
|
|