mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:17:52 +02:00
LCL/PairSplitter: Fix Position parameter and panel widths being out of sync under some circumstances (https://forum.lazarus.freepascal.org/index.php/topic,46726.msg333773.html#msg333773).
git-svn-id: trunk@61909 -
This commit is contained in:
parent
b1e4249c0e
commit
028edb1573
@ -264,8 +264,11 @@ end;
|
||||
|
||||
procedure TCustomPairSplitter.SetPosition(const AValue: integer);
|
||||
begin
|
||||
if FPosition = AValue then
|
||||
if (FPosition = AValue) and
|
||||
(TWSCustomPairSplitterClass(WidgetSetClass).GetPosition(Self) = FPosition)
|
||||
then
|
||||
Exit;
|
||||
|
||||
FPosition := AValue;
|
||||
if FPosition < 0 then
|
||||
FPosition := 0;
|
||||
|
@ -53,6 +53,7 @@ type
|
||||
published
|
||||
class function AddSide(ASplitter: TCustomPairSplitter; ASide: TPairSplitterSide; Side: integer): Boolean; virtual;
|
||||
class function RemoveSide(ASplitter: TCustomPairSplitter; ASide: TPairSplitterSide; Side: integer): Boolean; virtual;
|
||||
class function GetPosition(ASplitter: TCustomPairSplitter): Integer; virtual;
|
||||
class function SetPosition(ASplitter: TCustomPairSplitter; var NewPosition: integer): Boolean; virtual;
|
||||
|
||||
// special cursor handling
|
||||
@ -133,6 +134,18 @@ begin
|
||||
Result := False;
|
||||
end;
|
||||
|
||||
class function TWSCustomPairSplitter.GetPosition(ASplitter: TCustomPairSplitter): Integer;
|
||||
begin
|
||||
if WSCheckHandleAllocated(ASplitter, 'GetPosition') then
|
||||
begin
|
||||
if ASplitter.SplitterType = pstHorizontal then
|
||||
Result := ASplitter.Sides[0].Width
|
||||
else
|
||||
Result := ASplitter.Sides[0].Height;
|
||||
end else
|
||||
Result := ASplitter.Position;
|
||||
end;
|
||||
|
||||
class function TWSCustomPairSplitter.SetPosition(
|
||||
ASplitter: TCustomPairSplitter; var NewPosition: integer): Boolean;
|
||||
var
|
||||
|
Loading…
Reference in New Issue
Block a user