From 33b68e1420b99f03dbcd2241ed1fe29a5c17e48a Mon Sep 17 00:00:00 2001 From: Jens Bache-Wiig <jens.bache-wiig@nokia.com> Date: Fri, 29 May 2009 15:31:05 +0200 Subject: [PATCH] Fixes: Prettify the block highlighting Details: I softened it ut to make it significantly less distracting. --- src/plugins/texteditor/basetexteditor.cpp | 41 +++++++++++------------ 1 file changed, 20 insertions(+), 21 deletions(-) diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp index 19590a5946e..97f541aff30 100644 --- a/src/plugins/texteditor/basetexteditor.cpp +++ b/src/plugins/texteditor/basetexteditor.cpp @@ -2255,29 +2255,28 @@ void BaseTextEditor::slotUpdateExtraAreaWidth() static void drawRectBox(QPainter *painter, const QRect &rect, bool start, bool end, const QPalette &pal) { + painter->save(); painter->setRenderHint(QPainter::Antialiasing, false); - const QColor c = pal.highlight().color(); - - QLinearGradient grad(rect.topRight(), rect.topLeft()); - grad.setColorAt(0, c.lighter(110)); - grad.setColorAt(1, c); - - painter->fillRect(rect, grad); - - QColor white = Qt::white; - white.setAlpha(128); - QColor black = Qt::black; - black.setAlpha(32); - - painter->setPen(white); - painter->drawLine(rect.topLeft(), rect.bottomLeft()); - if (start) - painter->drawLine(rect.topLeft(), rect.topRight()); - - painter->setPen(black); + QColor c = pal.highlight().color(); + c.setAlpha(36); + QLinearGradient grad(rect.topLeft(), rect.topRight()); + grad.setColorAt(0, c.darker(130)); + grad.setColorAt(1, c.lighter(150)); + QColor outline = c.darker(110); + outline.setAlpha(100); + painter->setPen(outline); + QRect r = rect.adjusted(0, 0, 0, -1); + painter->setBrush(grad); + painter->save(); + painter->setClipRect(rect.adjusted(0, 0, -1, 0)); + if (!start) + r.adjust(0,-3, 0 ,0); + if (!end) + r.adjust(0, 0, 0, 3); + painter->drawRoundedRect(r, 3, 3); + painter->restore(); painter->drawLine(rect.topRight(), rect.bottomRight()); - if (end) - painter->drawLine(rect.bottomLeft(), rect.bottomRight()); + painter->restore(); } void BaseTextEditor::extraAreaPaintEvent(QPaintEvent *e) -- GitLab