mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 23:59:10 +02:00
LCL: TFindOption: frHideEntireScope, feature 19619
git-svn-id: trunk@31357 -
This commit is contained in:
parent
347515afc3
commit
bf3766ff9c
@ -367,7 +367,7 @@ type
|
|||||||
TFindOption = (frDown, frFindNext, frHideMatchCase, frHideWholeWord,
|
TFindOption = (frDown, frFindNext, frHideMatchCase, frHideWholeWord,
|
||||||
frHideUpDown, frMatchCase, frDisableMatchCase, frDisableUpDown,
|
frHideUpDown, frMatchCase, frDisableMatchCase, frDisableUpDown,
|
||||||
frDisableWholeWord, frReplace, frReplaceAll, frWholeWord, frShowHelp,
|
frDisableWholeWord, frReplace, frReplaceAll, frWholeWord, frShowHelp,
|
||||||
frEntireScope);
|
frEntireScope, frHideEntireScope);
|
||||||
TFindOptions = set of TFindOption;
|
TFindOptions = set of TFindOption;
|
||||||
|
|
||||||
TFindDialog = class(TCommonDialog)
|
TFindDialog = class(TCommonDialog)
|
||||||
|
@ -210,6 +210,7 @@ begin
|
|||||||
Dlg.CaseSensitiveCheckBox.Visible:=not (frHideMatchCase in Options);
|
Dlg.CaseSensitiveCheckBox.Visible:=not (frHideMatchCase in Options);
|
||||||
Dlg.DirectionRadioGroup.Visible:=not (frHideUpDown in Options);
|
Dlg.DirectionRadioGroup.Visible:=not (frHideUpDown in Options);
|
||||||
Dlg.HelpButton.Visible:=(frShowHelp in Options);
|
Dlg.HelpButton.Visible:=(frShowHelp in Options);
|
||||||
|
Dlg.EntireScopeCheckBox.Visible := not (frHideEntireScope in Options);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TFindDialog.GetFormValues;
|
procedure TFindDialog.GetFormValues;
|
||||||
|
@ -116,6 +116,7 @@ begin
|
|||||||
dlg.CaseSensitiveCheckBox.Visible:=not (frHideMatchCase in Options);
|
dlg.CaseSensitiveCheckBox.Visible:=not (frHideMatchCase in Options);
|
||||||
dlg.DirectionRadioGroup.Visible:=not (frHideUpDown in Options);
|
dlg.DirectionRadioGroup.Visible:=not (frHideUpDown in Options);
|
||||||
dlg.HelpButton.Visible:=(frShowHelp in Options);
|
dlg.HelpButton.Visible:=(frShowHelp in Options);
|
||||||
|
Dlg.EntireScopeCheckBox.Visible := not (frHideEntireScope in Options);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TReplaceDialog.GetFormValues;
|
procedure TReplaceDialog.GetFormValues;
|
||||||
|
Loading…
Reference in New Issue
Block a user