mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 16:37:54 +02:00
Merged revision(s) 59031 #daee51d966, 59048-59050 #a62fcc7e69-#a62fcc7e69, 59083 #406ae30f3b from trunk:
TFindDialog: fix setting Top/Left. Issue #0033528. ........ TFindDialog: slight improvement on r59031 #daee51d966. ........ TFindDialog: use Position := poMainFormCenter in CalcPosition instead of trying to calculate that by ourselves. Patch by Serge Anvarov. ........ TFindDialog: save FFindForm position upon close. ........ TFindDialog/TReplaceDialog: show dialog poScreenCenter in IDE; fix erratic behaviour of TReplaceDialog in IDE (wrong parent). Issue #0034297. ........ git-svn-id: branches/fixes_1_8@59122 -
This commit is contained in:
parent
a62dfe4241
commit
8ec9a4e5d4
@ -81,7 +81,7 @@ begin
|
|||||||
BorderIcons := [biSystemMenu, biHelp];
|
BorderIcons := [biSystemMenu, biHelp];
|
||||||
Caption := 'Find';
|
Caption := 'Find';
|
||||||
//OnCreate := @FormCreate;
|
//OnCreate := @FormCreate;
|
||||||
Position := poMainFormCenter;
|
//Position := poMainFormCenter;
|
||||||
|
|
||||||
LCLVersion := '1.3';
|
LCLVersion := '1.3';
|
||||||
|
|
||||||
@ -407,6 +407,8 @@ end;
|
|||||||
procedure TFindDialog.DoCloseForm(Sender: TObject; var CloseAction: TCloseAction);
|
procedure TFindDialog.DoCloseForm(Sender: TObject; var CloseAction: TCloseAction);
|
||||||
begin
|
begin
|
||||||
if csDesigning in ComponentState then exit;
|
if csDesigning in ComponentState then exit;
|
||||||
|
FFormTop := FFindForm.Top;
|
||||||
|
FFormLeft := FFindForm.Left;
|
||||||
if Assigned(OnClose) then OnClose(Self);
|
if Assigned(OnClose) then OnClose(Self);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -498,10 +500,9 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
function TFindDialog.CreateForm: TForm;
|
function TFindDialog.CreateForm: TForm;
|
||||||
Var
|
|
||||||
StrTmp : String;
|
|
||||||
begin
|
begin
|
||||||
// do not use Self as Owner, otherwise as desgntime this will not work
|
// do not use Self as Owner, otherwise as desgntime this will not work
|
||||||
|
//debugln(['TFindDialog.CreateForm: Left=',Left,', Top=',Top,', Position=',dbgs(position),', FFormLeft=',FFormLeft,', FFormTop=',FFormTop]);
|
||||||
Result := TFindDialogForm.CreateNew(nil,Options);
|
Result := TFindDialogForm.CreateNew(nil,Options);
|
||||||
with TFindDialogForm(Result) do
|
with TFindDialogForm(Result) do
|
||||||
begin
|
begin
|
||||||
@ -520,9 +521,9 @@ begin
|
|||||||
HelpButton.OnClick := @HelpClick;
|
HelpButton.OnClick := @HelpClick;
|
||||||
CancelButton.OnClick := @CancelClick;
|
CancelButton.OnClick := @CancelClick;
|
||||||
PopupMode := pmAuto;
|
PopupMode := pmAuto;
|
||||||
// Init local property with defaut value
|
// Init local property with default value
|
||||||
FFormTop := top;
|
Result.Top := FFormTop;
|
||||||
FFormLeft := Left;
|
Result.Left := FFormLeft;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -576,15 +577,19 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TFindDialog.CalcPosition(aForm:Tform);
|
procedure TFindDialog.CalcPosition(aForm:Tform);
|
||||||
Var
|
|
||||||
MfBound : Trect;
|
|
||||||
|
|
||||||
begin
|
begin
|
||||||
MfBound := Application.MainForm.BoundsRect;
|
//debugln(['TFindDialog.CalcPosition: Left=',Left,', Top=',Top,', Position=',dbgs(position),', FFormLeft=',FFormLeft,', FFormTop=',FFormTop]);
|
||||||
FFormTop := MfBound.Top + (((MfBound.Bottom - MfBound.Top) - aForm.Height) Div 2);
|
if (csDesigning in ComponentState) then
|
||||||
FFormLeft := MfBound.Left + (((MfBound.Right - MfBound.Left) - aForm.Width) Div 2);
|
begin
|
||||||
aForm.Top := FFormTop;
|
aForm.Position := poScreenCenter;
|
||||||
aForm.Left := FFormLeft;
|
Exit;
|
||||||
|
end;
|
||||||
|
if (FFormLeft < 0) and (FFormTop < 0) then
|
||||||
|
begin
|
||||||
|
aForm.Position := poMainFormCenter;
|
||||||
|
FFormTop := aForm.Top;
|
||||||
|
FFormLeft := aForm.Left;
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
@ -592,6 +597,8 @@ constructor TFindDialog.Create(AOwner: TComponent);
|
|||||||
begin
|
begin
|
||||||
inherited Create(AOwner);
|
inherited Create(AOwner);
|
||||||
FOptions:=[frDown];
|
FOptions:=[frDown];
|
||||||
|
FFormLeft := -1;
|
||||||
|
FFormTop := -1;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
destructor TFindDialog.Destroy;
|
destructor TFindDialog.Destroy;
|
||||||
|
@ -73,7 +73,7 @@ begin
|
|||||||
AutoSize := True;
|
AutoSize := True;
|
||||||
BorderIcons := [biSystemMenu, biHelp];
|
BorderIcons := [biSystemMenu, biHelp];
|
||||||
Caption := 'Replace Text';
|
Caption := 'Replace Text';
|
||||||
Position := poMainFormCenter;
|
//Position := poMainFormCenter;
|
||||||
LCLVersion := '1.3';
|
LCLVersion := '1.3';
|
||||||
|
|
||||||
TextLabel := TLabel.Create(Self);
|
TextLabel := TLabel.Create(Self);
|
||||||
@ -516,7 +516,7 @@ end;
|
|||||||
|
|
||||||
function TReplaceDialog.CreateForm: TForm;
|
function TReplaceDialog.CreateForm: TForm;
|
||||||
begin
|
begin
|
||||||
Result := TReplaceDialogForm.CreateNew(Self,Options);
|
Result := TReplaceDialogForm.CreateNew(nil,Options);
|
||||||
with TReplaceDialogForm(Result) do
|
with TReplaceDialogForm(Result) do
|
||||||
begin
|
begin
|
||||||
FindMoreButton.Caption := rsFindMore;
|
FindMoreButton.Caption := rsFindMore;
|
||||||
@ -541,6 +541,9 @@ begin
|
|||||||
CancelButton.OnClick := @CancelClick;
|
CancelButton.OnClick := @CancelClick;
|
||||||
HelpButton.OnClick := @HelpClick;
|
HelpButton.OnClick := @HelpClick;
|
||||||
PopupMode := pmAuto;
|
PopupMode := pmAuto;
|
||||||
|
// Init local property with default value
|
||||||
|
Result.Top := FFormTop;
|
||||||
|
Result.Left := FFormLeft;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user