lazarus/designer/abstracteditor.pp
lazarus 09c2284956 Added a few files for the formeditor
Shane

git-svn-id: trunk@41 -
2000-11-19 00:19:18 +00:00

45 lines
1.3 KiB
ObjectPascal

{
/***************************************************************************
AbstractEditor.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. *
* *
***************************************************************************/
}
unit AbstractEditor;
{$mode objfpc}
interface
uses
classes, Controls, forms,buttons,sysutils, Graphics,Extctrls;
type
TAbstractEditor = class
public
Function BufferModified : Boolean; virtual; abstract;
Function LinesInBuffer : Longint; virtual; abstract;
Function Filename : String; virtual; abstract;
Procedure Copy; virtual; abstract;
Procedure Cut; virtual; abstract;
Procedure Paste; virtual; abstract;
end;
implementation
end.