AnchorDocking: Ensure splitters are in the parents clientrect.

Workaround for:
- Splitters at the far right/bottom use "splitter left side"=99.99% which move the splitter out, if the main window shrinks
- Issue #41178
This commit is contained in:
Martin 2024-11-20 13:44:33 +01:00
parent 107d8dbeae
commit 2031d9ec48

View File

@ -243,6 +243,7 @@ type
property DockParentClientSize: TSize read FDockParentClientSize;
procedure UpdateDockBounds;
property AsyncUpdateDockBounds: boolean read FAsyncUpdateDockBounds write SetAsyncUpdateDockBounds;
procedure ConstrainBounds(var ALeft, ATop, AWidth, AHeight: integer);
procedure SetBounds(ALeft, ATop, AWidth, AHeight: integer); override; // any normal movement sets the DockBounds
procedure SetBoundsPercentually;
procedure SetBoundsKeepDockBounds(ALeft, ATop, AWidth, AHeight: integer); // movement for scaling keeps the DockBounds
@ -7974,6 +7975,24 @@ begin
UpdatePercentPosition;
end;
procedure TAnchorDockSplitter.ConstrainBounds(var ALeft, ATop, AWidth, AHeight: integer);
begin
if Parent = nil then
exit;
if not (akRight in Anchors) then begin
if ALeft + AWidth > Parent.ClientWidth then
ALeft := Parent.ClientWidth - AWidth;
if ALeft < 0 then
ALeft := 0;
end;
if not (akBottom in Anchors) then begin
if ATop + AHeight > Parent.ClientHeight then
ATop := Parent.ClientHeight - AHeight;
if ATop < 0 then
ATop := 0;
end;
end;
procedure TAnchorDockSplitter.UpdatePercentPosition;
begin
case ResizeAnchor of
@ -8004,6 +8023,7 @@ procedure TAnchorDockSplitter.SetBounds(ALeft, ATop, AWidth, AHeight: integer);
begin
DisableAutoSizing{$IFDEF DebugDisableAutoSizing}('TAnchorDockSplitter.SetBounds'){$ENDIF};
try
ConstrainBounds(ALeft, ATop, AWidth, AHeight);
inherited SetBounds(ALeft, ATop, AWidth, AHeight);
UpdateDockBounds;
finally
@ -8013,6 +8033,7 @@ end;
procedure TAnchorDockSplitter.SetBoundsKeepDockBounds(ALeft, ATop, AWidth, AHeight: integer);
begin
ConstrainBounds(ALeft, ATop, AWidth, AHeight);
inherited SetBounds(ALeft,ATop,AWidth,AHeight);
end;