diff options
author | André Nusser <andre.nusser@googlemail.com> | 2017-04-16 17:55:44 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2017-04-16 17:55:44 +0200 |
commit | 5156131e09669de6f9c2343ebe7dd1bf24bb024b (patch) | |
tree | 52c5cd5f350d57f3e959853048657144e850c971 /plugingui/frame.cc | |
parent | b4ad2a3b4eb808081fccef26482508db552a914e (diff) |
Improve the frame look to make it more 3D-ish.
Diffstat (limited to 'plugingui/frame.cc')
-rw-r--r-- | plugingui/frame.cc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/plugingui/frame.cc b/plugingui/frame.cc index ea2bfe3..d0e7dff 100644 --- a/plugingui/frame.cc +++ b/plugingui/frame.cc @@ -61,8 +61,13 @@ void FrameWidget::repaintEvent(RepaintEvent* repaintEvent) p.drawFilledRectangle(1, 1, width() - 2, bar_height); // frame - p.setColour(frame_colour); - p.drawRectangle(0, 0, width() - 1, height() - 1); + p.setColour(frame_colour_top); + p.drawLine(0, 0, width() - 1, 0); + p.setColour(frame_colour_bottom); + p.drawLine(0, height() - 1, width() - 1, height() - 1); + p.setColour(frame_colour_side); + p.drawLine(0, 0, 0, height() - 1); + p.drawLine(width() - 1, 0, width() - 1, height() - 1); // background p.setColour(background_colour); |