mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-02 12:13:11 +02:00
99 lines
3.4 KiB
ObjectPascal
99 lines
3.4 KiB
ObjectPascal
{ $Id$}
|
|
{
|
|
*****************************************************************************
|
|
* WSEditBtn.pp *
|
|
* ------------ *
|
|
* *
|
|
* *
|
|
*****************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.LCL, 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. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
unit WSEditBtn;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
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
|
|
////////////////////////////////////////////////////
|
|
// To get as little as posible circles,
|
|
// uncomment only when needed for registration
|
|
////////////////////////////////////////////////////
|
|
// EditBtn,
|
|
////////////////////////////////////////////////////
|
|
WSLCLClasses, WSStdCtrls;
|
|
|
|
type
|
|
{ TWSCustomEditButton }
|
|
|
|
TWSCustomEditButton = class(TWSEdit)
|
|
end;
|
|
|
|
{ TWSEditButton }
|
|
|
|
TWSEditButton = class(TWSCustomEditButton)
|
|
end;
|
|
|
|
{ TWSFileNameEdit }
|
|
|
|
TWSFileNameEdit = class(TWSCustomEditButton)
|
|
end;
|
|
|
|
{ TWSDirectoryEdit }
|
|
|
|
TWSDirectoryEdit = class(TWSCustomEditButton)
|
|
end;
|
|
|
|
{ TWSDateEdit }
|
|
|
|
TWSDateEdit = class(TWSCustomEditButton)
|
|
end;
|
|
|
|
{ TWSCalcEdit }
|
|
|
|
TWSCalcEdit = class(TWSCustomEditButton)
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
initialization
|
|
|
|
////////////////////////////////////////////////////
|
|
// To improve speed, register only classes
|
|
// which actually implement something
|
|
////////////////////////////////////////////////////
|
|
// RegisterWSComponent(TCustomEditButton, TWSCustomEditButton);
|
|
// RegisterWSComponent(TEditButton, TWSEditButton);
|
|
// RegisterWSComponent(TFileNameEdit, TWSFileNameEdit);
|
|
// RegisterWSComponent(TDirectoryEdit, TWSDirectoryEdit);
|
|
// RegisterWSComponent(TDateEdit, TWSDateEdit);
|
|
// RegisterWSComponent(TCalcEdit, TWSCalcEdit);
|
|
////////////////////////////////////////////////////
|
|
end.
|