mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 00:58:04 +02:00
LCL: Draw themed Toolbar separator. Issue #27329, patch from Derit Agustin.
git-svn-id: trunk@47539 -
This commit is contained in:
parent
0787f7aa1e
commit
bfa5d4b89b
@ -2008,7 +2008,7 @@ type
|
||||
procedure CMVisibleChanged(var Message: TLMessage); message CM_VISIBLECHANGED;
|
||||
procedure CMHitTest(var Message: TCMHitTest); message CM_HITTEST;
|
||||
protected const
|
||||
cDefSeparatorWidth = 10;
|
||||
cDefSeparatorWidth = 8;
|
||||
cDefDividerWidth = 5;
|
||||
protected
|
||||
FToolBar: TToolBar;
|
||||
|
@ -337,7 +337,11 @@ begin
|
||||
else
|
||||
if Style = tbsSeparator then
|
||||
begin
|
||||
DrawSeparator(Details, ButtonRect);
|
||||
if ThemeServices.ThemesEnabled then begin
|
||||
Details:=ThemeServices.GetElementDetails(ttbSeparatorNormal);
|
||||
ThemeServices.DrawElement(Canvas.Handle,Details,ClientRect)
|
||||
end else
|
||||
DrawSeparator(Details, ButtonRect);
|
||||
ButtonRect := Rect(0, 0, 0, 0); // nothing can be drawn on separator
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user