LCL: TFindOption: frHideEntireScope, feature 19619

git-svn-id: trunk@31357 -
This commit is contained in:
mattias 2011-06-24 10:54:51 +00:00
parent 347515afc3
commit bf3766ff9c
3 changed files with 3 additions and 1 deletions

View File

@ -367,7 +367,7 @@ type
TFindOption = (frDown, frFindNext, frHideMatchCase, frHideWholeWord,
frHideUpDown, frMatchCase, frDisableMatchCase, frDisableUpDown,
frDisableWholeWord, frReplace, frReplaceAll, frWholeWord, frShowHelp,
frEntireScope);
frEntireScope, frHideEntireScope);
TFindOptions = set of TFindOption;
TFindDialog = class(TCommonDialog)

View File

@ -210,6 +210,7 @@ begin
Dlg.CaseSensitiveCheckBox.Visible:=not (frHideMatchCase in Options);
Dlg.DirectionRadioGroup.Visible:=not (frHideUpDown in Options);
Dlg.HelpButton.Visible:=(frShowHelp in Options);
Dlg.EntireScopeCheckBox.Visible := not (frHideEntireScope in Options);
end;
procedure TFindDialog.GetFormValues;

View File

@ -116,6 +116,7 @@ begin
dlg.CaseSensitiveCheckBox.Visible:=not (frHideMatchCase in Options);
dlg.DirectionRadioGroup.Visible:=not (frHideUpDown in Options);
dlg.HelpButton.Visible:=(frShowHelp in Options);
Dlg.EntireScopeCheckBox.Visible := not (frHideEntireScope in Options);
end;
procedure TReplaceDialog.GetFormValues;