mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 09:18:02 +02:00
66 lines
1.6 KiB
ObjectPascal
66 lines
1.6 KiB
ObjectPascal
{
|
|
/***************************************************************************
|
|
replacedlgunit.pas
|
|
------------------
|
|
|
|
***************************************************************************/
|
|
|
|
*****************************************************************************
|
|
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.
|
|
*****************************************************************************
|
|
|
|
Note:
|
|
Only the .lfm file is used by the LCL (dialogs.pp).
|
|
This unit is itself is not compiled into the LCL.
|
|
This form is used to design the .lfm file.
|
|
|
|
The source code is a copy of ../lcl/include/finddialog.inc.
|
|
}
|
|
unit ReplaceDlgUnit;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
|
Buttons, FindDlgUnit, ExtCtrls;
|
|
|
|
type
|
|
|
|
TReplaceDialog = class;
|
|
|
|
{ TReplaceDialogForm }
|
|
|
|
TReplaceDialogForm = class(TForm)
|
|
PromptOnReplaceCheckBox: TCheckBox;
|
|
EntireScopeCheckBox: TCheckBox;
|
|
FindMoreButton: TButton;
|
|
ReplaceButton: TButton;
|
|
ReplaceAllButton: TButton;
|
|
CancelButton: TButton;
|
|
HelpButton: TButton;
|
|
WholeWordsOnlyCheckBox: TCheckBox;
|
|
CaseSensitiveCheckBox: TCheckBox;
|
|
EditFind: TEdit;
|
|
EditReplace: TEdit;
|
|
TextLabel: TLabel;
|
|
ReplaceLabel: TLabel;
|
|
DirectionRadioGroup: TRadioGroup;
|
|
private
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
{ TReplaceDialogForm }
|
|
|
|
end.
|
|
|