]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/playlist_model.cpp
Qt4 playlist dialog base stuff
[vlc] / modules / gui / qt4 / playlist_model.cpp
index d5fd2db54e64e842663033d3253b559f6b1bceea..8ecde4d9c0c1da2cbc5e763600ed3b4f7a57ca2e 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * input_manager.cpp : Manage an input and interact with its GUI elements
+ * playlist_model.cpp : Manage playlist model
  ****************************************************************************
  * Copyright (C) 2006 the VideoLAN team
  * $Id$
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#include "qt4.hpp"
 #include <QApplication>
 #include "playlist_model.hpp"
 #include <assert.h>
 
-
 static int PlaylistChanged( vlc_object_t *, const char *,
                             vlc_value_t, vlc_value_t, void * );
 static int PlaylistNext( vlc_object_t *, const char *,
@@ -36,7 +36,6 @@ static int ItemAppended( vlc_object_t *p_this, const char *psz_variable,
                          vlc_value_t oval, vlc_value_t nval, void *param );
 static int ItemDeleted( vlc_object_t *p_this, const char *psz_variable,
                         vlc_value_t oval, vlc_value_t nval, void *param );
-    
 
 /*************************************************************************
  * Playlist item implementation
@@ -54,9 +53,9 @@ void PLItem::init( int _i_id, int _i_input_id, PLItem *parent, PLModel *m)
     parentItem = parent;
     i_id = _i_id; i_input_id = _i_input_id;
     model = m;
-    strings.append( "" );    
-    strings.append( "" );    
-    strings.append( "" );    
+    strings.append( "" );
+    strings.append( "" );
+    strings.append( "" );
 }
 
 PLItem::PLItem( int _i_id, int _i_input_id, PLItem *parent, PLModel *m)
@@ -77,7 +76,6 @@ PLItem::~PLItem()
 void PLItem::insertChild( PLItem *item, int i_pos, bool signal )
 {
     assert( model );
-    fprintf( stderr, "Inserting child \n" );
     if( signal )
         model->beginInsertRows( model->index( this , 0 ), i_pos, i_pos );
     children.append( item );
@@ -96,6 +94,10 @@ void PLItem::update( playlist_item_t *p_item )
 {
     assert( p_item->p_input->i_id == i_input_id );
     strings[0] = QString::fromUtf8( p_item->p_input->psz_name );
+    if( p_item->p_input->p_meta )
+    {
+        strings[1] = QString::fromUtf8( p_item->p_input->p_meta->psz_artist );
+    }
 }
 
 /*************************************************************************
@@ -103,21 +105,30 @@ void PLItem::update( playlist_item_t *p_item )
  *************************************************************************/
 
 PLModel::PLModel( playlist_t *_p_playlist,
-                  playlist_item_t * p_root, int i_depth, QObject *parent)
+                  playlist_item_t * p_root, int _i_depth, QObject *parent)
                                     : QAbstractItemModel(parent)
 {
-     rootItem = NULL;
-        rootItem = new PLItem( p_root, NULL, this );
-    fprintf( stderr, "%i -> %i, %i -> %i", p_root->i_id, rootItem->i_id, p_root->p_input->i_id, rootItem->i_input_id );
+    i_depth = _i_depth;
+    assert( i_depth == 1 || i_depth == -1 );
     p_playlist= _p_playlist;
     i_items_to_append = 0;
     b_need_update     = false;
     i_cached_id       = -1;
     i_cached_input_id = -1;
 
+    rootItem = NULL;
+    rebuildRoot( p_root );
     addCallbacks();
 }
 
+void PLModel::rebuildRoot( playlist_item_t *p_root )
+{
+    if( rootItem ) delete rootItem;
+    rootItem = new PLItem( p_root, NULL, this );
+    rootItem->strings[0] = qtr("Name");
+    rootItem->strings[1] = qtr("Artist");
+}
+
 PLModel::~PLModel()
 {
     delCallbacks();
@@ -145,24 +156,43 @@ void PLModel::delCallbacks()
     var_DelCallback( p_playlist, "item-deleted", ItemDeleted, this );
 }
 
-/****************** Base model mandatory implementations *****************/
+void PLModel::activateItem( const QModelIndex &index )
+{
+    assert( index.isValid() );
+    PLItem *item = static_cast<PLItem*>(index.internalPointer());
+    assert( item );
+    PL_LOCK;
+    playlist_item_t *p_item = playlist_ItemGetById( p_playlist, item->i_id );
+    playlist_item_t *p_parent = p_item;
+    while( p_parent )
+    {
+        if( p_parent->i_id == rootItem->i_id ) break;
+        p_parent = p_parent->p_parent;
+    }
+    if( p_parent )
+    {
+        playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, p_parent, p_item );
+    }
+    PL_UNLOCK;
+}
 
+/****************** Base model mandatory implementations *****************/
 QVariant PLModel::data(const QModelIndex &index, int role) const
 {
-    if (!index.isValid())
-        return QVariant();
-    if (role != Qt::DisplayRole)
-        return QVariant();
-
+    if ( !index.isValid() || role != Qt::DisplayRole ) return QVariant();
     PLItem *item = static_cast<PLItem*>(index.internalPointer());
     return QVariant( item->columnString( index.column() ) );
 }
 
-Qt::ItemFlags PLModel::flags(const QModelIndex &index) const
+int PLModel::itemId( const QModelIndex &index ) const
 {
-    if (!index.isValid())
-        return Qt::ItemIsEnabled;
+    assert( index.isValid() );
+    return static_cast<PLItem*>(index.internalPointer())->i_id;
+}
 
+Qt::ItemFlags PLModel::flags(const QModelIndex &index) const
+{
+    if( !index.isValid() ) return Qt::ItemIsEnabled;
     return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
 }
 
@@ -191,7 +221,7 @@ QModelIndex PLModel::index(int row, int column, const QModelIndex &parent)
 }
 
 /* Return the index of a given item */
-QModelIndex PLModel::index( PLItem *item, int column ) const 
+QModelIndex PLModel::index( PLItem *item, int column ) const
 {
     if( !item ) return QModelIndex();
     const PLItem *parent = item->parent();
@@ -202,21 +232,20 @@ QModelIndex PLModel::index( PLItem *item, int column ) const
 
 QModelIndex PLModel::parent(const QModelIndex &index) const
 {
-    if (!index.isValid())
-        return QModelIndex();
+    if (!index.isValid())  return QModelIndex();
 
     PLItem *childItem = static_cast<PLItem*>(index.internalPointer());
     PLItem *parentItem = childItem->parent();
 
-    if (parentItem == rootItem)
-        return QModelIndex();
+    if (parentItem == rootItem) return QModelIndex();
 
     return createIndex(parentItem->row(), 0, parentItem);
 }
 
-int PLModel::columnCount( const QModelIndex &i) const 
+int PLModel::columnCount( const QModelIndex &i) const
 {
-    return 1;
+    if( i_depth == 1 ) return 1;
+    return 2;
 }
 
 int PLModel::childrenCount(const QModelIndex &parent) const
@@ -253,7 +282,7 @@ PLItem *PLModel::FindByInput( PLItem *root, int i_id )
 
 PLItem * PLModel::FindInner( PLItem *root, int i_id, bool b_input )
 {
-    if( ( !b_input && i_cached_id == i_id) || 
+    if( ( !b_input && i_cached_id == i_id) ||
         ( b_input && i_cached_input_id ==i_id ) )
     {
         return b_input ? p_cached_item_bi : p_cached_item;
@@ -286,7 +315,7 @@ PLItem * PLModel::FindInner( PLItem *root, int i_id, bool b_input )
         if( (*it)->children.size() )
         {
             PLItem *childFound = FindInner( (*it), i_id, b_input );
-            if( childFound ) 
+            if( childFound )
             {
                 if( b_input )
                 {
@@ -297,11 +326,10 @@ PLItem * PLModel::FindInner( PLItem *root, int i_id, bool b_input )
                     CACHE( i_id, childFound );
                 }
                 return childFound;
-            } 
+            }
         }
         it++;
     }
-    fprintf( stderr, "Never found" );
     return NULL;
 }
 #undef CACHE
@@ -311,11 +339,16 @@ PLItem * PLModel::FindInner( PLItem *root, int i_id, bool b_input )
 /************************* Updates handling *****************************/
 void PLModel::customEvent( QEvent *event )
 {
+    int type = event->type();
+    if( type != ItemUpdate_Type && type != ItemAppend_Type &&
+        type != ItemDelete_Type )
+        return;
+
     PLEvent *ple = static_cast<PLEvent *>(event);
 
-    if( event->type() == ItemUpdate_Type )
+    if( type == ItemUpdate_Type )
         ProcessInputItemUpdate( ple->i_id );
-    else if( event->type() == ItemAppend_Type )
+    else if( type == ItemAppend_Type )
         ProcessItemAppend( ple->p_add );
     else
         ProcessItemRemoval( ple->i_id );
@@ -326,8 +359,8 @@ void PLModel::ProcessInputItemUpdate( int i_input_id )
 {
     if( i_input_id <= 0 ) return;
     PLItem *item = FindByInput( rootItem, i_input_id );
-    fprintf( stderr, "Updating %i -> %p \n", i_input_id, item );
-    UpdateTreeItem( item, true );
+    if( item )
+        UpdateTreeItem( item, true );
 }
 
 void PLModel::ProcessItemRemoval( int i_id )
@@ -352,10 +385,19 @@ void PLModel::ProcessItemAppend( playlist_add_t *p_add )
     p_item = playlist_ItemGetById( p_playlist, p_add->i_item );
     if( !p_item || p_item->i_flags & PLAYLIST_DBL_FLAG ) goto end;
 
+    fprintf( stderr, "Appending item %s - parent %i (root %i)\n",
+                    p_item->p_input->psz_name, p_item->p_parent->i_id,
+                    rootItem->i_id );
+    if( i_depth == 1 && p_item->p_parent &&
+                        p_item->p_parent->i_id != rootItem->i_id )
+        goto end;
+
+    fprintf( stderr, "Still continuing\n" );
+
     newItem = new PLItem( p_item, nodeItem, this );
     nodeItem->appendChild( newItem );
+    fprintf( stderr, "duh\n" );
     UpdateTreeItem( p_item, newItem, true );
-
 end:
     return;
 }
@@ -393,32 +435,33 @@ void PLModel::UpdateNodeChildren( playlist_item_t *p_node, PLItem *root )
     for( int i = 0; i < p_node->i_children ; i++ )
     {
         PLItem *newItem =  new PLItem( p_node->pp_children[i], root, this );
-        fprintf( stderr, "New %p\n", newItem );
         root->appendChild( newItem, false );
-        UpdateTreeItem( newItem, false );
-        if( p_node->pp_children[i]->i_children != -1 )
+        UpdateTreeItem( newItem, false, true );
+        if( i_depth != 1 && p_node->pp_children[i]->i_children != -1 )
             UpdateNodeChildren( p_node->pp_children[i], newItem );
     }
 }
 
-void PLModel::UpdateTreeItem( PLItem *item, bool signal )
+void PLModel::UpdateTreeItem( PLItem *item, bool signal, bool force )
 {
     playlist_item_t *p_item = playlist_ItemGetById( p_playlist, item->i_id );
-    UpdateTreeItem( p_item, item, signal );
+    UpdateTreeItem( p_item, item, signal, force );
 }
 
-void PLModel::UpdateTreeItem( playlist_item_t *p_item, PLItem *item, bool signal ) 
+void PLModel::UpdateTreeItem( playlist_item_t *p_item, PLItem *item,
+                              bool signal, bool force )
 {
-    /// \todo
-    fprintf( stderr, "Updating item %s\n", p_item->p_input->psz_name );
+    if( !force && i_depth == 1 && p_item->p_parent &&
+                                 p_item->p_parent->i_id == rootItem->i_id )
+        return;
     item->update( p_item );
     if( signal )
-    {    // emit 
+    {    // emit
     }
 }
-        
+
 /**********************************************************************
- * Playlist callbacks 
+ * Playlist callbacks
  **********************************************************************/
 static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
                             vlc_value_t oval, vlc_value_t nval, void *param )
@@ -443,7 +486,7 @@ static int ItemChanged( vlc_object_t *p_this, const char *psz_variable,
                         vlc_value_t oval, vlc_value_t nval, void *param )
 {
     PLModel *p_model = (PLModel *) param;
-    PLEvent *event = new PLEvent( ItemUpdate_Type, nval.i_int ); 
+    PLEvent *event = new PLEvent( ItemUpdate_Type, nval.i_int );
     QApplication::postEvent( p_model, static_cast<QEvent*>(event) );
     return VLC_SUCCESS;
 }
@@ -471,5 +514,6 @@ static int ItemAppended( vlc_object_t *p_this, const char *psz_variable,
     }
     PLEvent *event = new PLEvent(  p_add );
     QApplication::postEvent( p_model, static_cast<QEvent*>(event) );
+    fprintf( stderr, "Posted event to model\n" );
     return VLC_SUCCESS;
 }