-rw-r--r-- | library/lightstyle.cpp | 30 | ||||
-rw-r--r-- | library/qpestyle.cpp | 8 |
2 files changed, 23 insertions, 15 deletions
diff --git a/library/lightstyle.cpp b/library/lightstyle.cpp index 3bd1623..c5073ca 100644 --- a/library/lightstyle.cpp +++ b/library/lightstyle.cpp @@ -568,5 +568,5 @@ void LightStyle::drawTab( QPainter *p, const QTabBar *tb, QTab *t, bool selected f.setBold( selected ); p->setFont( f ); -#endif +#endif QRect r( t->rect() ); if ( tb->shape() == QTabBar::RoundedAbove ) { @@ -594,5 +594,5 @@ void LightStyle::drawTab( QPainter *p, const QTabBar *tb, QTab *t, bool selected tb->colorGroup().brush( QColorGroup::Button )); //do shading; will not work for pixmap brushes - QColor bg = tb->colorGroup().button(); + QColor bg = tb->colorGroup().button(); // int h,s,v; // bg.hsv( &h, &s, &v ); @@ -607,5 +607,5 @@ void LightStyle::drawTab( QPainter *p, const QTabBar *tb, QTab *t, bool selected p->drawLine( x1, y, x2, y ); } - + } @@ -687,5 +687,5 @@ void LightStyle::drawTab(QPainter *p, const QTabBar *tabbar, QTab *tab, p->setClipRegion(tabr - trir); - p->setPen( NoPen ); + p->setPen( NoPen ); p->setBrush(g.brush(selected ? QColorGroup::Background : QColorGroup::Mid)); @@ -883,7 +883,7 @@ void LightStyle::drawScrollBarControls( QPainter* p, const QScrollBar* scrollbar scrollbar->height() : scrollbar->width()); - + int fudge = 3; //####disgusting hack - + if (scrollbar->orientation() == Horizontal) { subR.setRect(0, defaultFrameWidth(), @@ -969,11 +969,11 @@ void LightStyle::drawScrollBarControls( QPainter* p, const QScrollBar* scrollbar p->fillRect( sliderR.x(), sliderR.y(), 2, 2, g.brush( QColorGroup::Mid )); - p->fillRect( sliderR.x() + sliderR.width() - 2, + p->fillRect( sliderR.x() + sliderR.width() - 2, sliderR.y(), 2, 2, g.brush( QColorGroup::Mid )); - p->fillRect( sliderR.x() + sliderR.width() - 2, + p->fillRect( sliderR.x() + sliderR.width() - 2, sliderR.y() + sliderR.height() - 2, 2, 2, g.brush( QColorGroup::Mid )); - p->fillRect( sliderR.x(), + p->fillRect( sliderR.x(), sliderR.y() + sliderR.height() - 2, 2, 2, g.brush( QColorGroup::Mid )); @@ -1119,5 +1119,5 @@ int LightStyle::extraPopupMenuItemWidth( bool checkable, int maxpmw, QMenuItem* int LightStyle::popupMenuItemHeight( bool /*checkable*/, QMenuItem* mi, const QFontMetrics& fm ) { -#ifndef QT_NO_MENUDATA +#ifndef QT_NO_MENUDATA int h = 0; if ( mi->isSeparator() ) // separator height @@ -1129,5 +1129,5 @@ int LightStyle::popupMenuItemHeight( bool /*checkable*/, QMenuItem* mi, const QF if ( !mi->isSeparator() && mi->iconSet() != 0 ) { - h = QMAX( h, mi->iconSet()->pixmap( QIconSet::Small, QIconSet::Normal ).height() + 2*motifItemFrame ); + h = QMAX( h, mi->iconSet()->pixmap().height() + 2*motifItemFrame ); } if ( mi->custom() ) @@ -1141,5 +1141,5 @@ void LightStyle::drawPopupMenuItem( QPainter* p, bool checkable, int maxpmw, int bool act, bool enabled, int x, int y, int w, int h) { -#ifndef QT_NO_MENUDATA +#ifndef QT_NO_MENUDATA const QColorGroup & g = pal.active(); bool dis = !enabled; @@ -1183,5 +1183,9 @@ void LightStyle::drawPopupMenuItem( QPainter* p, bool checkable, int maxpmw, int if (act && !dis ) mode = QIconSet::Active; - QPixmap pixmap = mi->iconSet()->pixmap( QIconSet::Small, mode ); + QPixmap pixmap; + if ( mode == QIconSet::Disabled ) + pixmap = mi->iconSet()->pixmap( QIconSet::Automatic, mode ); + else + pixmap = mi->iconSet()->pixmap(); int pixw = pixmap.width(); int pixh = pixmap.height(); diff --git a/library/qpestyle.cpp b/library/qpestyle.cpp index 0566f6b..9503e02 100644 --- a/library/qpestyle.cpp +++ b/library/qpestyle.cpp @@ -1036,5 +1036,5 @@ int QPEStyle::popupMenuItemHeight( bool /*checkable*/, QMenuItem* mi, const QFon if ( !mi->isSeparator() && mi->iconSet() != 0 ) { - h = QMAX( h, mi->iconSet()->pixmap( QIconSet::Small, QIconSet::Normal ).height() + 2*motifItemFrame ); + h = QMAX( h, mi->iconSet()->pixmap().height() + 2*motifItemFrame ); } if ( mi->custom() ) @@ -1090,5 +1090,9 @@ void QPEStyle::drawPopupMenuItem( QPainter* p, bool checkable, int maxpmw, int t if (act && !dis ) mode = QIconSet::Active; - QPixmap pixmap = mi->iconSet()->pixmap( QIconSet::Small, mode ); + QPixmap pixmap; + if ( mode == QIconSet::Disabled ) + pixmap = mi->iconSet()->pixmap( QIconSet::Automatic, mode ); + else + pixmap = mi->iconSet()->pixmap(); int pixw = pixmap.width(); int pixh = pixmap.height(); |