LCL/TSpeedButton: Layout improvements when AutoSize = false

This commit is contained in:
wp_xyz 2024-09-10 13:07:57 +02:00
parent d869f6a082
commit 8f6a59c9a2

View File

@ -801,14 +801,23 @@ begin
case CurLayout of
blGlyphLeft:
if (Margin >= 0) and (Spacing >= 0) then
TextRect.Right := PaintRect.Right - Margin;
begin
TextRect.Right := PaintRect.Right;
if Alignment = taRightJustify then dec(TextRect.Right, Margin);
end;
blGlyphRight:
if (Margin >= 0) and (Spacing >= 0) then
TextRect.Right := PaintRect.Left + OffsetGlyph.X - Spacing;
blGlyphTop,
blGlyphBottom:
if Margin >= 0 then
begin
TextRect.Right := PaintRect.Right;
case Alignment of
taLeftJustify: inc(TextRect.Left, Margin);
taRightJustify: dec(TextRect.Right, Margin);
end;
end;
end;
TextFlags := DT_TOP or cAlignment[BidiFlipAlignment(FAlignment, UseRightToLeftAlignment)]; // or DT_NOCLIP;