search & replace, find next, propose to restart from the doc beg/end if no match anymore

This commit is contained in:
Basile Burg 2019-06-10 21:18:10 +02:00
parent 76365ede58
commit d55932fbb3
1 changed files with 12 additions and 1 deletions

View File

@ -507,6 +507,10 @@ begin
end;
procedure TSearchWidget.actFindNextExecute(sender: TObject);
const
r: array[boolean] of string = ('beginning', 'end');
var
s: string;
begin
if fDoc.isNil then
exit;
@ -533,7 +537,14 @@ begin
fDoc.CaretX := fDoc.CaretX + 1;
end;
if fDoc.SearchReplace(fToFind, '', getOptions) = 0 then
dlgOkInfo('the expression cannot be found')
begin
s := format('the expression cannot be found, restart from the %s ?', [r[chkBack.Checked]]);
if dlgOkCancel(s) = mrOk then
begin
chkFromCur.Checked:=false;
actFindNextExecute(nil);
end;
end
else
begin
fHasSearched := true;