author | alwin <alwin> | 2005-03-07 09:42:21 (UTC) |
---|---|---|
committer | alwin <alwin> | 2005-03-07 09:42:21 (UTC) |
commit | d6fc7417f752867c14a0b6555c32f2d768736fe8 (patch) (side-by-side diff) | |
tree | 29b1780ed157b799cbcf8133f846b74da248e8e5 | |
parent | f312f32d624c6198c63890e141e8658bc492cf37 (diff) | |
download | opie-d6fc7417f752867c14a0b6555c32f2d768736fe8.zip opie-d6fc7417f752867c14a0b6555c32f2d768736fe8.tar.gz opie-d6fc7417f752867c14a0b6555c32f2d768736fe8.tar.bz2 |
applied patch from Paul Eggleton
-rw-r--r-- | noncore/styles/phase/phasestyle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/styles/phase/phasestyle.cpp b/noncore/styles/phase/phasestyle.cpp index 906ccee..746354e 100644 --- a/noncore/styles/phase/phasestyle.cpp +++ b/noncore/styles/phase/phasestyle.cpp @@ -155,49 +155,49 @@ void PhaseStyle::drawArrow(QPainter *painter, Qt::ArrowType type, bool down, else painter->setPen(group.mid()); painter->drawPixmap(x+w/2-3, y+h/2-3, larrow); break; case RightArrow: if (enabled) painter->setPen(down ? group.midlight() : group.dark()); else painter->setPen(group.mid()); painter->drawPixmap(x+w/2-3, y+h/2-3, rarrow); break; } } void PhaseStyle::drawPushButton(QPushButton *btn, QPainter *painter) { QRect r = btn->rect(); int x = r.x(); int y = r.y(); int h = r.height(); int w = r.width(); bool depress = btn->isOn() || btn->isDown(); QColorGroup group = btn->colorGroup(); QBrush brush(group.button() ); // int bd = pixelMetric(PM_ButtonDefaultIndicator, widget) + 1; static int bd = 2; if (btn->isDefault() && !depress) { - drawPanel(painter, x, y, h, w, group, + drawPanel(painter, x, y, w, h, group, &group.brush(QColorGroup::Mid), true); drawBevelButton(painter, x+bd, y+bd, w-bd*2, h-bd*2, group, false, &brush ); } else { drawButton(painter, x, y, w, h, group, depress, &brush ); } if (btn->hasFocus() ) { // draw focus QColor col; drawFocusRect(painter, r, group, &col, false ); } } void PhaseStyle::drawPanel(QPainter* painter, int x, int y, int w, int h, const QColorGroup& group, bool sunken, int , const QBrush* fill) { int x2 = x + w - 1; int y2 = y + h - 1; painter->save(); if (sunken) { |