]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/playlist/selector.cpp
Qt: Use a QFontComboBox instead of a QFontDialog.
[vlc] / modules / gui / qt4 / components / playlist / selector.cpp
index 3e6eee2dd5e990741b4f2c4325c0b8ecefafc163..22cad94f6be000d629566cb1e2c59c47c34246f9 100644 (file)
@@ -2,7 +2,7 @@
  * selector.cpp : Playlist source selector
  ****************************************************************************
  * Copyright (C) 2000-2005 the VideoLAN team
- * $Id: standardpanel.cpp 16024 2006-07-13 13:51:05Z xtophe $
+ * $Id$
  *
  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
  *
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #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 ), 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 );
+
+    /* select the first item */
+    view->setCurrentIndex( model->index( 0, 0, QModelIndex() ) );
+}
 
-PLSelector::PLSelector( QWidget *p, intf_thread_t *_p_intf ) : QWidget( p )
+void PLSelector::setSource( const QModelIndex &index )
 {
-    p_intf = _p_intf;
+    if( model )
+        emit activated( model->itemId( index ) );
 }
 
 PLSelector::~PLSelector()
 {
 }
-