mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 20:38:08 +02:00
TaskDialog: fix typo in variable/propertyname (collaps -> collapse), as pointed out by Maxim.
This commit is contained in:
parent
29240dfd2b
commit
91052758c8
@ -627,7 +627,7 @@ type
|
||||
FButton: TTaskDialogButtonItem;
|
||||
FButtons: TTaskDialogButtons;
|
||||
FCaption: TTranslateString;
|
||||
FCollapsButtonCaption: TTranslateString;
|
||||
FCollapseButtonCaption: TTranslateString;
|
||||
FCommonButtons: TTaskDialogCommonButtons;
|
||||
FDefaultButton: TTaskDialogCommonButton;
|
||||
FExpandButtonCaption: TTranslateString;
|
||||
@ -694,7 +694,7 @@ type
|
||||
property Buttons: TTaskDialogButtons read FButtons write SetButtons;
|
||||
property Caption: TTranslateString read FCaption write FCaption;
|
||||
property CommonButtons: TTaskDialogCommonButtons read FCommonButtons write FCommonButtons default [tcbOk, tcbCancel];
|
||||
property CollapsButtonCaption: TTranslateString read FCollapsButtonCaption write FCollapsButtonCaption;
|
||||
property CollapseButtonCaption: TTranslateString read FCollapseButtonCaption write FCollapseButtonCaption;
|
||||
property DefaultButton: TTaskDialogCommonButton read FDefaultButton write FDefaultButton default tcbOk;
|
||||
property ExpandButtonCaption: TTranslateString read FExpandButtonCaption write FExpandButtonCaption;
|
||||
property ExpandedText: TTranslateString read FExpandedText write FExpandedText;
|
||||
@ -734,7 +734,7 @@ type
|
||||
property Buttons;
|
||||
property Caption;
|
||||
property CommonButtons;
|
||||
property CollapsButtonCaption;
|
||||
property CollapseButtonCaption;
|
||||
property DefaultButton;
|
||||
property ExpandButtonCaption;
|
||||
property ExpandedText;
|
||||
|
@ -1864,7 +1864,7 @@ var
|
||||
end;
|
||||
ExpandedInformation := Utf8ToUtf16(ADlg.ExpandedText);
|
||||
CollapsedControlText := Utf8ToUtf16(ADlg.ExpandButtonCaption);
|
||||
ExpandedControlText := Utf8ToUtf16(ADlg.CollapsButtonCaption);
|
||||
ExpandedControlText := Utf8ToUtf16(ADlg.CollapseButtonCaption);
|
||||
|
||||
Footer := Utf8ToUtf16(ADlg.FooterText);
|
||||
|
||||
|
@ -39,7 +39,7 @@ type
|
||||
|
||||
//CustomButtons, Radios: TStringList;
|
||||
DialogCaption, DlgTitle, DlgText,
|
||||
ExpandButtonCaption, CollapsButtonCaption, ExpandedText, FooterText,
|
||||
ExpandButtonCaption, CollapseButtonCaption, ExpandedText, FooterText,
|
||||
VerificationText: String;
|
||||
CommonButtons: TTaskDialogCommonButtons;
|
||||
|
||||
@ -53,7 +53,7 @@ type
|
||||
QueryEdit: TEdit;
|
||||
/// the Task Dialog optional checkbox
|
||||
VerifyCheckBox: TCheckBox;
|
||||
/// the Expand/Collaps button
|
||||
/// the Expand/Collapse button
|
||||
ExpandBtn: TButton;
|
||||
|
||||
procedure GetDefaultButtons(out aButtonDef, aRadioDef: TModalResult);
|
||||
@ -74,7 +74,7 @@ type
|
||||
procedure SetupTimer;
|
||||
procedure ResetTimer;
|
||||
procedure ExpandDialog;
|
||||
procedure CollapsDialog;
|
||||
procedure CollapseDialog;
|
||||
|
||||
procedure DoDialogConstructed;
|
||||
procedure DoDialogCreated;
|
||||
@ -343,7 +343,7 @@ begin
|
||||
DlgTitle := FDlg.Title;
|
||||
DlgText := FDlg.Text;
|
||||
ExpandButtonCaption := FDlg.ExpandButtonCaption;
|
||||
CollapsButtonCaption := FDlg.CollapsButtonCaption;
|
||||
CollapseButtonCaption := FDlg.CollapseButtonCaption;
|
||||
ExpandedText := FDlg.ExpandedText;
|
||||
FooterText := FDlg.FooterText;
|
||||
VerificationText := FDlg.VerificationText;
|
||||
@ -612,18 +612,18 @@ begin
|
||||
CurrTabOrder := Panel.TabOrder;
|
||||
if (ExpandButtonCaption = '') then
|
||||
begin
|
||||
if (CollapsButtonCaption = '') then
|
||||
if (CollapseButtonCaption = '') then
|
||||
begin
|
||||
//ToDo: make this a resourcestring in LCLStrConsts unit
|
||||
ExpandButtonCaption := 'Show details';
|
||||
CollapsButtonCaption := 'Hide details';
|
||||
CollapseButtonCaption := 'Hide details';
|
||||
end
|
||||
else
|
||||
ExpandButtonCaption := CollapsButtonCaption;
|
||||
ExpandButtonCaption := CollapseButtonCaption;
|
||||
end;
|
||||
if (CollapsButtonCaption = '') then
|
||||
CollapsButtonCaption := ExpandButtonCaption;
|
||||
WB := Max(Canvas.TextWidth(ExpandButtonCaption), Canvas.TextWidth(CollapsButtonCaption)) +32;//52;
|
||||
if (CollapseButtonCaption = '') then
|
||||
CollapseButtonCaption := ExpandButtonCaption;
|
||||
WB := Max(Canvas.TextWidth(ExpandButtonCaption), Canvas.TextWidth(CollapseButtonCaption)) +32;//52;
|
||||
if (ALeft+WB > XB) then
|
||||
begin
|
||||
inc(ATop,32);
|
||||
@ -640,7 +640,7 @@ begin
|
||||
if not (tfExpandedByDefault in FDlg.Flags) then
|
||||
ExpandBtn.Caption := ExpandButtonCaption
|
||||
else
|
||||
ExpandBtn.Caption := CollapsButtonCaption;
|
||||
ExpandBtn.Caption := CollapseButtonCaption;
|
||||
ExpandBtn.ModalResult := mrNone;
|
||||
ExpandBtn.TabOrder := CurrTabOrder;
|
||||
ExpandBtn.OnClick := @OnExpandButtonClicked;
|
||||
@ -779,7 +779,7 @@ begin
|
||||
if not FExpanded then
|
||||
ExpandDialog
|
||||
else
|
||||
CollapsDialog;
|
||||
CollapseDialog;
|
||||
FExpanded := not FExpanded;
|
||||
{$PUSH}
|
||||
{$ObjectChecks OFF}
|
||||
@ -847,10 +847,10 @@ begin
|
||||
//ToDo: actually expand the dialog
|
||||
end;
|
||||
|
||||
procedure TLCLTaskDialog.CollapsDialog;
|
||||
procedure TLCLTaskDialog.CollapseDialog;
|
||||
begin
|
||||
ExpandBtn.Caption := CollapsButtonCaption;
|
||||
//ToDo: actually collaps the dialog
|
||||
ExpandBtn.Caption := CollapseButtonCaption;
|
||||
//ToDo: actually collapse the dialog
|
||||
end;
|
||||
|
||||
procedure TLCLTaskDialog.DoDialogConstructed;
|
||||
|
Loading…
Reference in New Issue
Block a user