]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/playlist/playlist.cpp
Qt: get a correct icon_View design
[vlc] / modules / gui / qt4 / components / playlist / playlist.cpp
index 89daa8f97c31e392b6217c103246c35dc364cf03..419c4e0a78a153a3227a10a613c9b8a3e433b943 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * playlist.cpp : Custom widgets for the playlist
  ****************************************************************************
- * Copyright © 2006 the VideoLAN team
+ * Copyright © 2007-2008 the VideoLAN team
  * $Id$
  *
  * Authors: Clément Stenac <zorglub@videolan.org>
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#include "components/playlist/panels.hpp"
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include "components/playlist/standardpanel.hpp"
 #include "components/playlist/selector.hpp"
 #include "components/playlist/playlist.hpp"
-#include "input_manager.hpp" /* art */
 
-#include <QSettings>
-#include <QLabel>
-#include <QSpacerItem>
-#include <QCursor>
-#include <QPushButton>
-#include <QVBoxLayout>
+#include "input_manager.hpp" /* art signal */
+#include "main_interface.hpp" /* DropEvent TODO remove this*/
+
+#include <QGroupBox>
 
+#include <iostream>
 /**********************************************************************
  * Playlist Widget. The embedded playlist
  **********************************************************************/
 
-PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QSettings *settings, QWidget *_parent ) :
-                                p_intf ( _p_i ), parent( _parent )
+PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget *_par )
+               : QSplitter( _par ), p_intf ( _p_i )
 {
+    setContentsMargins( 3, 3, 3, 3 );
+
     /* Left Part and design */
     QSplitter *leftW = new QSplitter( Qt::Vertical, this );
 
     /* Source Selector */
-    selector = new PLSelector( this, p_intf, THEPL );
-    leftW->addWidget( selector );
+    selector = new PLSelector( this, p_intf );
+    QVBoxLayout *selBox = new QVBoxLayout();
+    selBox->setContentsMargins(5,5,5,0);
+    selBox->addWidget( selector );
+    QGroupBox *selGroup = new QGroupBox( qtr( "Media Browser") );
+    selGroup->setLayout( selBox );
+    leftW->addWidget( selGroup );
+
+    /* Create a Container for the Art Label
+       in order to have a beautiful resizing for the selector above it */
+    QWidget *artContainer = new QWidget;
+    QHBoxLayout *artContLay = new QHBoxLayout( artContainer );
+    artContLay->setMargin( 0 );
+    artContLay->setSpacing( 0 );
+    artContainer->setMaximumHeight( 128 );
 
     /* Art label */
-    art = new QLabel( "" );
-    art->setMinimumHeight( 128 );
-    art->setMinimumWidth( 128 );
-    art->setMaximumHeight( 128 );
-    art->setMaximumWidth( 128 );
-    art->setScaledContents( true );
-    art->setPixmap( QPixmap( ":/noart.png" ) );
-    leftW->addWidget( art );
+    art = new ArtLabel( artContainer, p_intf );
+    art->setToolTip( qtr( "Double click to get media information" ) );
 
-    /* Initialisation of the playlist */
-    playlist_item_t *p_root = playlist_GetPreferredNode( THEPL,
-                                                THEPL->p_local_category );
+    CONNECT( THEMIM->getIM(), artChanged( QString ),
+             art, showArtUpdate( const QString& ) );
 
-    rightPanel = qobject_cast<PLPanel *>( new StandardPLPanel( this,
-                              p_intf, THEPL, p_root ) );
+    artContLay->addWidget( art, 1 );
 
-    /* Connect the activation of the selector to a redefining of the PL */
-    CONNECT( selector, activated( int ), rightPanel, setRoot( int ) );
+    leftW->addWidget( artContainer );
 
-    /* Connect the activated() to the rootChanged() signal
-       This will be used by StandardPLPanel to setCurrentRootId, that will 
-       change the label of the addButton  */
-    connect( selector, SIGNAL( activated( int ) ),
-             this, SIGNAL( rootChanged( int ) ) );
+    /* Initialisation of the playlist */
+    playlist_t * p_playlist = THEPL;
+    PL_LOCK;
+    playlist_item_t *p_root =
+                  playlist_GetPreferredNode( THEPL, THEPL->p_local_category );
+    PL_UNLOCK;
 
-    CONNECT( THEMIM->getIM(), artChanged( QString ) , this, setArt( QString ) );
-    /* Forward removal requests from the selector to the main panel */
-    CONNECT( qobject_cast<PLSelector *>( selector )->model,
-             shouldRemove( int ),
-             qobject_cast<StandardPLPanel *>( rightPanel ), removeItem( int ) );
+    rightPanel = new StandardPLPanel( this, p_intf, THEPL, p_root );
 
-    emit rootChanged( p_root->i_id );
+    /* Connect the activation of the selector to a redefining of the PL */
+    CONNECT( selector, activated( playlist_item_t * ),
+             rightPanel, setRoot( playlist_item_t * ) );
+
+    rightPanel->setRoot( p_root );
 
     /* Add the two sides of the QSplitter */
     addWidget( leftW );
@@ -89,49 +98,54 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QSettings *settings, QWidge
     QList<int> sizeList;
     sizeList << 180 << 420 ;
     setSizes( sizeList );
-    setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Expanding );
+    //setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Expanding );
     setStretchFactor( 0, 0 );
     setStretchFactor( 1, 3 );
     leftW->setMaximumWidth( 250 );
     setCollapsible( 1, false );
 
     /* In case we want to keep the splitter informations */
-    settings->beginGroup( "playlist" );
-    restoreState( settings->value("splitterSizes").toByteArray());
-    resize( settings->value("size", QSize(600, 300)).toSize());
-    move( settings->value("pos", QPoint( 0, 400)).toPoint());
-    settings->endGroup();
+    // components shall never write there setting to a fixed location, may infer
+    // with other uses of the same component...
+    // getSettings()->beginGroup( "playlist" );
+    getSettings()->beginGroup("Playlist");
+    restoreState( getSettings()->value("splitterSizes").toByteArray());
+    getSettings()->endGroup();
+
+    setAcceptDrops( true );
+    setWindowTitle( qtr( "Playlist" ) );
+    setWindowRole( "vlc-playlist" );
+    setWindowIcon( QApplication::windowIcon() );
 }
 
-void PlaylistWidget::setArt( QString url )
+PlaylistWidget::~PlaylistWidget()
 {
-    if( url.isNull() )
-    {
-        art->setPixmap( QPixmap( ":/noart.png" ) );
-        emit artSet( url );
-    }
-    else if( prevArt != url )
-    {
-        art->setPixmap( QPixmap( url ) );
-        prevArt = url;
-        emit artSet( url );
-    }
+    getSettings()->beginGroup("Playlist");
+    getSettings()->setValue( "splitterSizes", saveState() );
+    getSettings()->endGroup();
+    msg_Dbg( p_intf, "Playlist Destroyed" );
 }
 
-QSize PlaylistWidget::sizeHint() const
+void PlaylistWidget::dropEvent( QDropEvent *event )
 {
-   return QSize( 600 , 300 );
+    if( p_intf->p_sys->p_mi )
+        p_intf->p_sys->p_mi->dropEventPlay( event, false );
 }
-
-PlaylistWidget::~PlaylistWidget()
-{}
-
-void PlaylistWidget::savingSettings( QSettings *settings )
+void PlaylistWidget::dragEnterEvent( QDragEnterEvent *event )
 {
-    settings->beginGroup( "playlist" );
-    settings->setValue( "pos", parent->pos() );
-    settings->setValue( "size", parent->size() );
-    settings->setValue( "splitterSizes", saveState() );
-    settings->endGroup();
+    event->acceptProposedAction();
 }
 
+void PlaylistWidget::closeEvent( QCloseEvent *event )
+{
+    if( THEDP->isDying() )
+    {
+        /* FIXME is it needed ? */
+        event->accept();
+    }
+    else
+    {
+        hide();
+        event->ignore();
+    }
+}