From 1da5ea8ae7d3382606fbc4904fc55cf570a2a2c1 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 1 Jun 2012 07:46:59 +0200 Subject: [PATCH] * Show / hide the empty-tooltip when sliding. --- src/libtomahawk/playlist/QueueView.cpp | 16 ++++++++++++++-- src/libtomahawk/playlist/QueueView.h | 1 + 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/playlist/QueueView.cpp b/src/libtomahawk/playlist/QueueView.cpp index 1012b9610..83c1414ba 100644 --- a/src/libtomahawk/playlist/QueueView.cpp +++ b/src/libtomahawk/playlist/QueueView.cpp @@ -27,6 +27,7 @@ #include "PlaylistView.h" #include "Source.h" #include "utils/TomahawkUtilsGui.h" +#include "widgets/OverlayWidget.h" using namespace Tomahawk; @@ -42,18 +43,20 @@ QueueView::QueueView( AnimatedSplitter* parent ) setHiddenSize( QSize( 0, 22 ) ); - ui->queue->setEmptyTip( tr( "The queue is currently empty. Drop something to enqueue it!" ) ); ui->queue->setProxyModel( new QueueProxyModel( ui->queue ) ); ui->queue->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Ignored ); PlaylistModel* queueModel = new PlaylistModel( this ); queueModel->setStyle( PlaylistModel::Short ); + queueModel->finishLoading(); ui->queue->setPlaylistModel( queueModel ); queueModel->setReadOnly( false ); - queueModel->finishLoading(); + + ui->queue->setEmptyTip( tr( "The queue is currently empty. Drop something to enqueue it!" ) ); connect( queueModel, SIGNAL( trackCountChanged( unsigned int ) ), SLOT( updateLabel() ) ); connect( ui->toggleButton, SIGNAL( clicked() ), SLOT( show() ) ); + connect( this, SIGNAL( animationFinished() ), SLOT( onAnimationFinished() ) ); ui->toggleButton->installEventFilter( this ); ui->toggleButton->setCursor( Qt::PointingHandCursor ); @@ -125,6 +128,7 @@ QueueView::hide() connect( ui->toggleButton, SIGNAL( clicked() ), SLOT( show() ) ); disconnect( ui->toggleButton, SIGNAL( resized( QPoint ) ), this, SIGNAL( resizeBy( QPoint ) ) ); + ui->queue->overlay()->setVisible( false ); AnimatedWidget::hide(); updateLabel(); } @@ -137,6 +141,7 @@ QueueView::show() connect( ui->toggleButton, SIGNAL( clicked() ), SLOT( hide() ) ); connect( ui->toggleButton, SIGNAL( resized( QPoint ) ), SIGNAL( resizeBy( QPoint ) ) ); + ui->queue->overlay()->setVisible( false ); AnimatedWidget::show(); updateLabel(); } @@ -162,6 +167,13 @@ QueueView::onHidden( QWidget* widget, bool animated ) } +void +QueueView::onAnimationFinished() +{ + ui->queue->overlay()->setVisible( true ); +} + + void QueueView::updateLabel() { diff --git a/src/libtomahawk/playlist/QueueView.h b/src/libtomahawk/playlist/QueueView.h index 9500264f0..ce8ef7eae 100644 --- a/src/libtomahawk/playlist/QueueView.h +++ b/src/libtomahawk/playlist/QueueView.h @@ -59,6 +59,7 @@ protected: private slots: void updateLabel(); + void onAnimationFinished(); private: Ui::QueueView* ui;