mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 18:58:12 +02:00
76 lines
2.3 KiB
ObjectPascal
76 lines
2.3 KiB
ObjectPascal
{
|
|
*****************************************************************************
|
|
* WSDesigner.pp *
|
|
* ------------ *
|
|
* *
|
|
* *
|
|
*****************************************************************************
|
|
|
|
*****************************************************************************
|
|
This file is part of the Lazarus Component Library (LCL)
|
|
|
|
See the file COPYING.modifiedLGPL.txt, included in this distribution,
|
|
for details about the license.
|
|
*****************************************************************************
|
|
}
|
|
unit WSDesigner;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$I lcl_defines.inc}
|
|
|
|
interface
|
|
////////////////////////////////////////////////////
|
|
// I M P O R T A N T
|
|
////////////////////////////////////////////////////
|
|
// 1) Only class methods allowed
|
|
// 2) Class methods have to be published and virtual
|
|
// 3) To get as little as posible circles, the uses
|
|
// clause should contain only those LCL units
|
|
// needed for registration. WSxxx units are OK
|
|
// 4) To improve speed, register only classes in the
|
|
// initialization section which actually
|
|
// implement something
|
|
// 5) To enable your XXX widgetset units, look at
|
|
// the uses clause of the XXXintf.pp
|
|
////////////////////////////////////////////////////
|
|
uses
|
|
Classes, RubberBand,
|
|
WsControls, WSFactory;
|
|
|
|
type
|
|
{ TWsCustomRubberBand }
|
|
|
|
TWsCustomRubberBand = class(TWsWinControl)
|
|
published
|
|
class procedure SetShape(ARubberBand: TCustomRubberBand; AShape: TRubberBandShape); virtual; overload;
|
|
end;
|
|
TWsCustomRubberBandClass = class of TWsCustomRubberBand;
|
|
|
|
{ WidgetSetRegistration }
|
|
|
|
procedure RegisterCustomRubberBand;
|
|
|
|
implementation
|
|
|
|
{ TWsCustomRubberBand }
|
|
|
|
class procedure TWsCustomRubberBand.SetShape(ARubberBand: TCustomRubberBand;
|
|
AShape: TRubberBandShape);
|
|
begin
|
|
end;
|
|
|
|
{ WidgetSetRegistration }
|
|
|
|
procedure RegisterCustomRubberBand;
|
|
const
|
|
Done: Boolean = False;
|
|
begin
|
|
if Done then exit;
|
|
WSRegisterCustomRubberBand;
|
|
// if not WSRegisterCustomRubberBand then
|
|
// RegisterWSComponent(TCustomRubberBand, TWSCustomRubberBand);
|
|
Done := True;
|
|
end;
|
|
|
|
end.
|