LCL: fix TControlScrollBar needs update if owner's handle changes. Issue #40794 introduced in 4891f1f0e1

This commit is contained in:
Martin 2025-02-13 01:49:57 +01:00
parent ac5f2c1c49
commit be89c477d9
3 changed files with 11 additions and 2 deletions

View File

@ -180,6 +180,7 @@ type
function AutoScrollEnabled: Boolean; virtual;
procedure CalculateAutoRanges; virtual;
procedure CreateWnd; override;
procedure DestroyWnd; override;
function GetClientScrollOffset: TPoint; override;
function GetLogicalClientRect: TRect; override;// logical size of client area
procedure DoOnResize; override;

View File

@ -142,6 +142,8 @@ begin
DebugLn('[TCustomMemo.FinalizeWnd] END ',DbgSName(Self),' ',FLines.ClassName,' FLines.Count=',dbgs(FLines.Count));
{$endif}
end;
if FHorzScrollBar <> nil then FHorzScrollBar.InvalidateScrollInfo;
if FVertScrollBar <> nil then FVertScrollBar.InvalidateScrollInfo;
inherited FinalizeWnd;
end;

View File

@ -35,6 +35,13 @@ begin
end;
end;
procedure TScrollingWinControl.DestroyWnd;
begin
inherited DestroyWnd;
if FHorzScrollBar <> nil then FHorzScrollBar.InvalidateScrollInfo;
if FVertScrollBar <> nil then FVertScrollBar.InvalidateScrollInfo;
end;
function TScrollingWinControl.GetClientScrollOffset: TPoint;
begin
if (HorzScrollBar <> nil) and (VertScrollBar <> nil) then
@ -75,8 +82,7 @@ begin
//debugln(['TScrollingWinControl.DoOnResize ',DbgSName(Self),' ',dbgs(BoundsRect),' ',dbgs(ClientRect),' ',dbgs(GetLogicalClientRect)]);
end;
procedure TScrollingWinControl.GetPreferredSizeClientFrame(out aWidth,
aHeight: integer);
procedure TScrollingWinControl.GetPreferredSizeClientFrame(out aWidth, aHeight: Integer);
// return frame width independent of scrollbars (i.e. as if scrollbars not shown)
begin
if AutoScroll and (VertScrollBar<>nil) then