]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/playlist/selector.cpp
Qt4 - Did you really think I couldn't do more ugly ????
[vlc] / modules / gui / qt4 / components / playlist / selector.cpp
index 3e6eee2dd5e990741b4f2c4325c0b8ecefafc163..60891e9421d7257a4ffe3dec76c56a560a78d546 100644 (file)
  *****************************************************************************/
 
 #include "components/playlist/selector.hpp"
+#include "qt4.hpp"
+#include <QVBoxLayout>
+#include <QHeaderView>
+#include <QTreeView>
 
-PLSelector::PLSelector( QWidget *p, intf_thread_t *_p_intf ) : QWidget( p )
+PLSelector::PLSelector( QWidget *p, intf_thread_t *_p_intf,
+                        playlist_t *p_playlist ) : QWidget( p ), p_intf(_p_intf)
 {
-    p_intf = _p_intf;
+    model = new PLModel( THEPL, p_intf, THEPL->p_root_category, 1, this );
+    view = new QTreeView( 0 );
+    view->setIconSize( QSize( 24,24 ) );
+    view->setAlternatingRowColors( true );
+    view->setIndentation( 0 );
+    view->header()->hide();
+    view->setModel( model );
+
+    view->setAcceptDrops(true);
+    view->setDropIndicatorShown(true);
+
+    CONNECT( view, activated( const QModelIndex& ),
+             this, setSource( const QModelIndex& ) );
+    CONNECT( view, clicked( const QModelIndex& ),
+             this, setSource( const QModelIndex& ) );
+
+    QVBoxLayout *layout = new QVBoxLayout();
+    layout->setSpacing( 0 ); layout->setMargin( 0 );
+    layout->addWidget( view );
+    setLayout( layout );
+}
+
+void PLSelector::setSource( const QModelIndex &index )
+{
+    if( model )
+        emit activated( model->itemId( index ) );
 }
 
 PLSelector::~PLSelector()
 {
 }
-