mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-12 08:49:25 +02:00
59 lines
1.3 KiB
ObjectPascal
59 lines
1.3 KiB
ObjectPascal
{
|
|
/***************************************************************************
|
|
FormEditor.pp
|
|
-------------------
|
|
|
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
}
|
|
{$H+}
|
|
|
|
unit FormEditor;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
uses
|
|
classes, customformeditor,Controls, forms,buttons,sysutils,Graphics,Extctrls;
|
|
|
|
type
|
|
|
|
TFormEditor = class(TCustomFormEditor)
|
|
private
|
|
|
|
public
|
|
constructor Create;
|
|
destructor destroy; override;
|
|
end;
|
|
|
|
|
|
var
|
|
FormEditor1 : TFormEditor;
|
|
|
|
implementation
|
|
|
|
|
|
constructor TFormEditor.Create;
|
|
Begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TFormEditor.destroy;
|
|
Begin
|
|
inherited;
|
|
end;
|
|
|
|
end.
|