]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/playlist/selector.cpp
Qt4 - Rename add() function to a more instructive name.
[vlc] / modules / gui / qt4 / components / playlist / selector.cpp
index 347e7c7b4794d472187f1e16f47a73e45278d950..60891e9421d7257a4ffe3dec76c56a560a78d546 100644 (file)
@@ -30,7 +30,7 @@
 PLSelector::PLSelector( QWidget *p, intf_thread_t *_p_intf,
                         playlist_t *p_playlist ) : QWidget( p ), p_intf(_p_intf)
 {
-    model = new PLModel( THEPL, THEPL->p_root_category, 1, this );
+    model = new PLModel( THEPL, p_intf, THEPL->p_root_category, 1, this );
     view = new QTreeView( 0 );
     view->setIconSize( QSize( 24,24 ) );
     view->setAlternatingRowColors( true );
@@ -38,6 +38,9 @@ PLSelector::PLSelector( QWidget *p, intf_thread_t *_p_intf,
     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& ),