summaryrefslogtreecommitdiff
authoralwin <alwin>2005-03-07 09:42:21 (UTC)
committer alwin <alwin>2005-03-07 09:42:21 (UTC)
commitd6fc7417f752867c14a0b6555c32f2d768736fe8 (patch) (side-by-side diff)
tree29b1780ed157b799cbcf8133f846b74da248e8e5
parentf312f32d624c6198c63890e141e8658bc492cf37 (diff)
downloadopie-d6fc7417f752867c14a0b6555c32f2d768736fe8.zip
opie-d6fc7417f752867c14a0b6555c32f2d768736fe8.tar.gz
opie-d6fc7417f752867c14a0b6555c32f2d768736fe8.tar.bz2
applied patch from Paul Eggleton
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/styles/phase/phasestyle.cpp2
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
@@ -131,97 +131,97 @@ PhaseStyle::~PhaseStyle() {
void PhaseStyle::drawCheckMark ( QPainter * p, int x, int y, int w,
int h, const QColorGroup & g,
bool , bool) {
p->setPen(g.text());
p->drawPixmap(x+w/2-4, y+h/2-4, bcheck);
}
void PhaseStyle::drawArrow(QPainter *painter, Qt::ArrowType type, bool down,
int x, int y, int w, int h, const QColorGroup &group,
bool enabled , const QBrush * ) {
switch( type ) {
case UpArrow:
if (enabled)
painter->setPen(down ? group.midlight() : group.dark());
else painter->setPen(group.mid());
painter->drawPixmap(x+w/2-3, y+h/2-3, uarrow);
break;
case DownArrow:
if (enabled) painter->setPen(down ? group.midlight() : group.dark());
else painter->setPen(group.mid());
painter->drawPixmap(x+w/2-3, y+h/2-3, darrow);
break;
case LeftArrow:
if (enabled) painter->setPen(down ? group.midlight() : group.dark());
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) {
painter->setPen(group.dark());
painter->drawRect(x+1, y+1, w-2, h-2);
painter->setPen(group.midlight());
painter->drawLine(x+1, y2, x2, y2);
painter->drawLine(x2, y+1, x2, y2-1);
painter->setPen(group.mid());
painter->drawLine(x, y, x, y2-1);
painter->drawLine(x+1, y, x2-1, y);
painter->setPen(group.background());
painter->drawPoint(x, y2);
painter->drawPoint(x2, y);
} else {
painter->setPen(group.dark());
painter->drawRect(x, y, w, h);
painter->setPen(group.midlight());
painter->drawLine(x+1, y+1, x2-2, y+1);
painter->drawLine(x+1, y+2, x+1, y2-2);
painter->setPen(group.mid());
painter->drawLine(x+2, y2-1, x2-1, y2-1);
painter->drawLine(x2-1, y+2, x2-1, y2-2);
painter->setPen(group.background());
painter->drawPoint(x+1, y2-1);
painter->drawPoint(x2-1, y+1);
}