mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-07-31 11:20:22 +02:00
* Auto resize OverlayButton and adjust helper texts.
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
#include "utils/tomahawkutils.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
||||
DatabaseCommand_AllAlbums::DatabaseCommand_AllAlbums( const Tomahawk::collection_ptr &collection, const Tomahawk::artist_ptr &artist, QObject *parent )
|
||||
: DatabaseCommand( parent )
|
||||
, m_collection( collection )
|
||||
@@ -35,15 +36,18 @@ DatabaseCommand_AllAlbums::DatabaseCommand_AllAlbums( const Tomahawk::collection
|
||||
, m_sortDescending( false )
|
||||
{}
|
||||
|
||||
|
||||
DatabaseCommand_AllAlbums::~DatabaseCommand_AllAlbums()
|
||||
{}
|
||||
|
||||
|
||||
void
|
||||
DatabaseCommand_AllAlbums::setArtist( const Tomahawk::artist_ptr &artist )
|
||||
{
|
||||
m_artist = artist;
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
DatabaseCommand_AllAlbums::execForArtist( DatabaseImpl* dbi )
|
||||
{
|
||||
|
@@ -34,7 +34,7 @@ OverlayButton::OverlayButton( QWidget* parent )
|
||||
, m_opacity( 0.0 )
|
||||
, m_parent( parent )
|
||||
{
|
||||
resize( 160, 26 );
|
||||
resize( 0, 26 );
|
||||
setAttribute( Qt::WA_TranslucentBackground, true );
|
||||
|
||||
setOpacity( m_opacity );
|
||||
@@ -77,6 +77,9 @@ void
|
||||
OverlayButton::setText( const QString& text )
|
||||
{
|
||||
m_text = text;
|
||||
|
||||
QFontMetrics fm( font() );
|
||||
resize( fm.width( text ) + 16, height() );
|
||||
}
|
||||
|
||||
|
||||
|
@@ -64,7 +64,7 @@ AlbumInfoWidget::AlbumInfoWidget( const Tomahawk::album_ptr& album, QWidget* par
|
||||
m_pixmap = QPixmap( RESPATH "images/no-album-art-placeholder.png" ).scaledToWidth( 48, Qt::SmoothTransformation );
|
||||
|
||||
m_button = new OverlayButton( ui->tracksView );
|
||||
m_button->setText( tr( "Click to show All Tracks" ) );
|
||||
m_button->setText( tr( "Click to show Super Collection Tracks" ) );
|
||||
m_button->setCheckable( true );
|
||||
m_button->setChecked( true );
|
||||
|
||||
@@ -96,7 +96,7 @@ AlbumInfoWidget::onModeToggle()
|
||||
m_tracksModel->addTracks( m_album, QModelIndex() );
|
||||
|
||||
if ( m_button->isChecked() )
|
||||
m_button->setText( tr( "Click to show All Tracks" ) );
|
||||
m_button->setText( tr( "Click to show Super Collection Tracks" ) );
|
||||
else
|
||||
m_button->setText( tr( "Click to show Official Tracks" ) );
|
||||
}
|
||||
|
Reference in New Issue
Block a user