1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-19 15:29:42 +01:00

* Let's hope centering the text works better.

This commit is contained in:
Christian Muehlhaeuser 2012-01-19 12:29:24 +01:00
parent de5df30941
commit 3e7b2b72cf

View File

@ -190,7 +190,7 @@ SourceDelegate::paintCollection( QPainter* painter, const QStyleOptionViewItem&
desc = tr( "Online" );
painter->setFont( normal );
textRect = option.rect.adjusted( iconRect.width() + 8, option.rect.height() - ( painter->fontMetrics().height() + 7 ), -figWidth - 24, -6 );
textRect = option.rect.adjusted( iconRect.width() + 8, option.rect.height() / 2, -figWidth - 24, -6 );
bool privacyOn = TomahawkSettings::instance()->privateListeningMode() == TomahawkSettings::FullyPrivate;
if ( !colItem->source().isNull() && colItem->source()->isLocal() && privacyOn )
@ -199,7 +199,7 @@ SourceDelegate::paintCollection( QPainter* painter, const QStyleOptionViewItem&
pmRect.setTop( pmRect.bottom() - painter->fontMetrics().height() + 3 );
pmRect.setRight( pmRect.left() + pmRect.height() );
ActionCollection::instance()->getAction( "togglePrivacy" )->icon().paint( painter, pmRect );
textRect.adjust( pmRect.width() + 3, 2, 0, 0 );
textRect.adjust( pmRect.width() + 3, 1, 0, 0 );
}
if ( isPlaying || ( !colItem->source().isNull() && colItem->source()->isLocal() ) )
{
@ -228,7 +228,7 @@ SourceDelegate::paintCollection( QPainter* painter, const QStyleOptionViewItem&
pmRect.setTop( pmRect.bottom() - painter->fontMetrics().height() + 3 );
pmRect.setRight( pmRect.left() + pmRect.height() );
painter->drawPixmap( pmRect, listenAlongPixmap.scaledToHeight( pmRect.height(), Qt::SmoothTransformation ) );
textRect.adjust( pmRect.width() + 3, 2, 0, 0 );
textRect.adjust( pmRect.width() + 3, 1, 0, 0 );
}
if ( !realtimeListeningAlongPixmap.isNull() )
@ -237,13 +237,13 @@ SourceDelegate::paintCollection( QPainter* painter, const QStyleOptionViewItem&
pmRect.setTop( pmRect.bottom() - painter->fontMetrics().height() + 3 );
pmRect.setRight( pmRect.left() + pmRect.height() );
painter->drawPixmap( pmRect, realtimeListeningAlongPixmap.scaledToHeight( pmRect.height(), Qt::SmoothTransformation ) );
textRect.adjust( pmRect.width() + 3, 2, 0, 0 );
textRect.adjust( pmRect.width() + 3, 1, 0, 0 );
}
}
text = painter->fontMetrics().elidedText( desc, Qt::ElideRight, textRect.width() );
QTextOption to( Qt::AlignBottom );
painter->drawText( textRect.adjusted( 0, 0, 0, 2 ), text, to );
QTextOption to( Qt::AlignVCenter );
painter->drawText( textRect, text, to );
if ( status )
{