author | zecke <zecke> | 2004-08-28 21:12:49 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-08-28 21:12:49 (UTC) |
commit | 2bc77ab7c6dd7310f95e70d46f4bfc55a84f32cf (patch) (side-by-side diff) | |
tree | fc0730cc591fa106c03b7e9ab525a97a34e1fc3b | |
parent | 2fa06314f2779b77de9c07c4f9fbd8cb5af8f215 (diff) | |
download | opie-2bc77ab7c6dd7310f95e70d46f4bfc55a84f32cf.zip opie-2bc77ab7c6dd7310f95e70d46f4bfc55a84f32cf.tar.gz opie-2bc77ab7c6dd7310f95e70d46f4bfc55a84f32cf.tar.bz2 |
Use the bitmap found on the scrollbar as combobox
indicator.
A push effect is missing for that though
-rw-r--r-- | noncore/styles/phase/phasestyle.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/noncore/styles/phase/phasestyle.cpp b/noncore/styles/phase/phasestyle.cpp index fb6411c..139505f 100644 --- a/noncore/styles/phase/phasestyle.cpp +++ b/noncore/styles/phase/phasestyle.cpp @@ -727,29 +727,28 @@ QRect PhaseStyle::comboButtonRect ( int x, int y, int w, int h ) { } void PhaseStyle::drawComboButton( QPainter * p, int x, int y, int w, int h, const QColorGroup & g, bool sunken, bool editable, bool, const QBrush *) { drawButton(p, x, y, w, h, g, sunken, &g.brush(QColorGroup::Button )); + for ( int n = 0; n < 2; ++n ) + kColorBitmaps(p, g, w-16+(6*n), y+(h/2)-2, + 0, &doodad_mid, &doodad_light, 0, 0, 0 ); - bool odd = (h % 2); - drawPanel(p, w-15 , y+(h/2)-3, 10, (odd ? 7 : 6 ), - g, true , 1, sunken ? &g.brush(QColorGroup::Midlight) - : &g.brush(QColorGroup::Mid) ); if (editable ) { const int x2 = x+w-1; const int y2 = y+h-1; p->setPen(g.dark()); p->drawLine(x2+1, y, x2+1, y2); p->setPen(g.midlight()); p->drawLine(x2+2, y, x2+2, y2-1); p->setPen(g.button()); p->drawPoint(x2+2, y2); } p->setPen(g.buttonText() ); |