
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2312 8e941d3f-bd1b-0410-a28a-d453659cc2b4
41 lines
606 B
ObjectPascal
41 lines
606 B
ObjectPascal
unit ReplacePrompt;
|
|
|
|
{$include lazhexeditor.inc}
|
|
|
|
interface
|
|
|
|
uses
|
|
{$IFDEF FPC}
|
|
LCLType, LCLIntf, LResources,
|
|
{$ELSE}
|
|
Windows, Messages,
|
|
{$ENDIF}
|
|
SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls;
|
|
|
|
type
|
|
TReplacePromptForm = class(TForm)
|
|
LBText: TLabel;
|
|
BUYes: TButton;
|
|
BuNo: TButton;
|
|
BUAll: TButton;
|
|
BUCancel: TButton;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
ReplacePromptForm: TReplacePromptForm;
|
|
|
|
implementation
|
|
|
|
{$IFDEF FPC}
|
|
initialization
|
|
{$i replaceprompt.lrs}
|
|
{$ELSE}
|
|
{$R *.dfm}
|
|
{$ENDIF}
|
|
end.
|