lazarus/lcl/include/rubberband.inc
paul 297ed60657 lcl:
- add rubberband component
- add qt rubberband implementation

git-svn-id: trunk@11954 -
2007-09-07 16:39:27 +00:00

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;