Qt5: use cocoa theme to draw toolbuttons

This commit is contained in:
zeljan1 2022-09-16 17:39:32 +02:00
parent 88e9c521d7
commit 0e040a0d77

View File

@ -1129,15 +1129,26 @@ begin
TP_DROPDOWNBUTTON,
TP_SPLITBUTTON: // there is another positibility to draw TP_SPLITBUTTON by CC_ToolButton
begin
{$IFDEF DARWIN}
Result.DrawVariant := qdvComplexControl;
Result.ComplexControl := QStyleCC_ToolButton;
Result.SubControls := QStyleSC_ToolButton;
Result.Features := QStyleOptionToolButtonNone;
{$ELSE}
Result.DrawVariant := qdvPrimitive;
Result.PrimitiveElement := QStylePE_PanelButtonTool;
{$ENDIF}
end;
TP_SPLITBUTTONDROPDOWN:
begin
Result.DrawVariant := qdvComplexControl;
Result.ComplexControl := QStyleCC_ToolButton;
Result.SubControls := QStyleSC_None;
{$IFDEF DARWIN}
Result.Features := QStyleOptionToolButtonHasMenu;
{$ELSE}
Result.Features := QStyleOptionToolButtonMenuButtonPopup;
{$ENDIF}
end;
TP_SEPARATOR,
TP_SEPARATORVERT: