]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/playlist_model.cpp
Qt: initial pass for CoverFlow view of the playlist
[vlc] / modules / gui / qt4 / components / playlist / playlist_model.cpp
1 /*****************************************************************************
2  * playlist_model.cpp : Manage playlist model
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Ilkka Ollakkka <ileoo (at) videolan dot org>
9  *          Jakob Leben <jleben@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include "qt4.hpp"
31 #include "components/playlist/playlist_model.hpp"
32 #include "dialogs_provider.hpp"                         /* THEDP */
33 #include "input_manager.hpp"                            /* THEMIM */
34 #include "dialogs/mediainfo.hpp"                        /* MediaInfo Dialog */
35 #include "dialogs/playlist.hpp"                         /* Playlist Dialog */
36
37 #include <vlc_intf_strings.h>                           /* I_DIR */
38
39 #include "pixmaps/types/type_unknown.xpm"
40 #include "sorting.h"
41
42 #include <assert.h>
43 #include <QIcon>
44 #include <QFont>
45 #include <QMenu>
46 #include <QUrl>
47 #include <QFileInfo>
48 #include <QDesktopServices>
49 #include <QInputDialog>
50 #include <QSignalMapper>
51 #include <QPixmapCache>
52
53 #define I_NEW_DIR \
54     I_DIR_OR_FOLDER( N_("Create Directory"), N_( "Create Folder" ) )
55 #define I_NEW_DIR_NAME \
56     I_DIR_OR_FOLDER( N_( "Enter name for new directory:" ), \
57                      N_( "Enter name for new folder:" ) )
58
59 QIcon PLModel::icons[ITEM_TYPE_NUMBER];
60
61 /*************************************************************************
62  * Playlist model implementation
63  *************************************************************************/
64
65 PLModel::PLModel( playlist_t *_p_playlist,  /* THEPL */
66                   intf_thread_t *_p_intf,   /* main Qt p_intf */
67                   playlist_item_t * p_root,
68                   QObject *parent )         /* Basic Qt parent */
69                   : QAbstractItemModel( parent )
70 {
71     p_intf            = _p_intf;
72     p_playlist        = _p_playlist;
73     i_cached_id       = -1;
74     i_cached_input_id = -1;
75     i_popup_item      = i_popup_parent = -1;
76     sortingMenu       = NULL;
77
78     rootItem          = NULL; /* PLItem rootItem, will be set in rebuild( ) */
79
80     /* Icons initialization */
81 #define ADD_ICON(type, x) icons[ITEM_TYPE_##type] = QIcon( x )
82     ADD_ICON( UNKNOWN , type_unknown_xpm );
83     ADD_ICON( FILE, ":/type/file" );
84     ADD_ICON( DIRECTORY, ":/type/directory" );
85     ADD_ICON( DISC, ":/type/disc" );
86     ADD_ICON( CDDA, ":/type/cdda" );
87     ADD_ICON( CARD, ":/type/capture-card" );
88     ADD_ICON( NET, ":/type/net" );
89     ADD_ICON( PLAYLIST, ":/type/playlist" );
90     ADD_ICON( NODE, ":/type/node" );
91 #undef ADD_ICON
92
93     rebuild( p_root );
94     DCONNECT( THEMIM->getIM(), metaChanged( input_item_t *),
95               this, processInputItemUpdate( input_item_t *) );
96     DCONNECT( THEMIM, inputChanged( input_thread_t * ),
97               this, processInputItemUpdate( input_thread_t* ) );
98     CONNECT( THEMIM, playlistItemAppended( int, int ),
99              this, processItemAppend( int, int ) );
100     CONNECT( THEMIM, playlistItemRemoved( int ),
101              this, processItemRemoval( int ) );
102 }
103
104 PLModel::~PLModel()
105 {
106     delete rootItem;
107     delete sortingMenu;
108 }
109
110 Qt::DropActions PLModel::supportedDropActions() const
111 {
112     return Qt::CopyAction | Qt::MoveAction;
113 }
114
115 Qt::ItemFlags PLModel::flags( const QModelIndex &index ) const
116 {
117     Qt::ItemFlags flags = QAbstractItemModel::flags( index );
118
119     const PLItem *item = index.isValid() ? getItem( index ) : rootItem;
120
121     if( canEdit() )
122     {
123         PL_LOCK;
124         playlist_item_t *plItem =
125             playlist_ItemGetById( p_playlist, item->i_id );
126
127         if ( plItem && ( plItem->i_children > -1 ) )
128             flags |= Qt::ItemIsDropEnabled;
129
130         PL_UNLOCK;
131
132     }
133     flags |= Qt::ItemIsDragEnabled;
134
135     return flags;
136 }
137
138 QStringList PLModel::mimeTypes() const
139 {
140     QStringList types;
141     types << "vlc/qt-input-items";
142     return types;
143 }
144
145 bool modelIndexLessThen( const QModelIndex &i1, const QModelIndex &i2 )
146 {
147     if( !i1.isValid() || !i2.isValid() ) return false;
148     PLItem *item1 = static_cast<PLItem*>( i1.internalPointer() );
149     PLItem *item2 = static_cast<PLItem*>( i2.internalPointer() );
150     if( item1->parent() == item2->parent() ) return i1.row() < i2.row();
151     else return *item1 < *item2;
152 }
153
154 QMimeData *PLModel::mimeData( const QModelIndexList &indexes ) const
155 {
156     PlMimeData *plMimeData = new PlMimeData();
157     QModelIndexList list;
158
159     foreach( const QModelIndex &index, indexes ) {
160         if( index.isValid() && index.column() == 0 )
161             list.append(index);
162     }
163
164     qSort(list.begin(), list.end(), modelIndexLessThen);
165
166     PLItem *item = NULL;
167     foreach( const QModelIndex &index, list ) {
168         if( item )
169         {
170             PLItem *testee = getItem( index );
171             while( testee->parent() )
172             {
173                 if( testee->parent() == item ||
174                     testee->parent() == item->parent() ) break;
175                 testee = testee->parent();
176             }
177             if( testee->parent() == item ) continue;
178             item = getItem( index );
179         }
180         else
181             item = getItem( index );
182
183         plMimeData->appendItem( item->p_input );
184     }
185
186     return plMimeData;
187 }
188
189 /* Drop operation */
190 bool PLModel::dropMimeData( const QMimeData *data, Qt::DropAction action,
191         int row, int column, const QModelIndex &parent )
192 {
193     bool copy = action == Qt::CopyAction;
194     if( !copy && action != Qt::MoveAction )
195         return true;
196
197     const PlMimeData *plMimeData = qobject_cast<const PlMimeData*>( data );
198     if( plMimeData )
199     {
200         if( copy )
201             dropAppendCopy( plMimeData, getItem( parent ), row );
202         else
203             dropMove( plMimeData, getItem( parent ), row );
204     }
205     return true;
206 }
207
208 void PLModel::dropAppendCopy( const PlMimeData *plMimeData, PLItem *target, int pos )
209 {
210     PL_LOCK;
211
212     playlist_item_t *p_parent =
213         playlist_ItemGetByInput( p_playlist, target->p_input );
214     if( !p_parent ) return;
215
216     if( pos == -1 ) pos = PLAYLIST_END;
217
218     QList<input_item_t*> inputItems = plMimeData->inputItems();
219
220     foreach( input_item_t* p_input, inputItems )
221     {
222         playlist_item_t *p_item = playlist_ItemGetByInput( p_playlist, p_input );
223         if( !p_item ) continue;
224         pos = playlist_NodeAddCopy( p_playlist, p_item, p_parent, pos );
225     }
226
227     PL_UNLOCK;
228 }
229
230 void PLModel::dropMove( const PlMimeData * plMimeData, PLItem *target, int row )
231 {
232     QList<input_item_t*> inputItems = plMimeData->inputItems();
233     QList<PLItem*> model_items;
234     playlist_item_t *pp_items[inputItems.size()];
235
236     PL_LOCK;
237
238     playlist_item_t *p_parent =
239         playlist_ItemGetByInput( p_playlist, target->p_input );
240
241     if( !p_parent || row > p_parent->i_children )
242     {
243         PL_UNLOCK; return;
244     }
245
246     int new_pos = row == -1 ? p_parent->i_children : row;
247     int model_pos = new_pos;
248     int i = 0;
249
250     foreach( input_item_t *p_input, inputItems )
251     {
252         playlist_item_t *p_item = playlist_ItemGetByInput( p_playlist, p_input );
253         if( !p_item ) continue;
254
255         PLItem *item = findByInput( rootItem, p_input->i_id );
256         if( !item ) continue;
257
258         /* Better not try to move a node into itself.
259            Abort the whole operation in that case,
260            because it is ambiguous. */
261         PLItem *climber = target;
262         while( climber )
263         {
264             if( climber == item )
265             {
266                 PL_UNLOCK; return;
267             }
268             climber = climber->parentItem;
269         }
270
271         if( item->parentItem == target &&
272             target->children.indexOf( item ) < new_pos )
273             model_pos--;
274
275         model_items.append( item );
276         pp_items[i] = p_item;
277         i++;
278     }
279
280     if( model_items.isEmpty() )
281     {
282         PL_UNLOCK; return;
283     }
284
285     playlist_TreeMoveMany( p_playlist, i, pp_items, p_parent, new_pos );
286
287     PL_UNLOCK;
288
289     foreach( PLItem *item, model_items )
290         takeItem( item );
291
292     insertChildren( target, model_items, model_pos );
293 }
294
295 /* remove item with its id */
296 void PLModel::removeItem( int i_id )
297 {
298     PLItem *item = findById( rootItem, i_id );
299     removeItem( item );
300 }
301
302 void PLModel::activateItem( const QModelIndex &index )
303 {
304     assert( index.isValid() );
305     const PLItem *item = getItem( index );
306     assert( item );
307     PL_LOCK;
308     playlist_item_t *p_item = playlist_ItemGetById( p_playlist, item->i_id );
309     activateItem( p_item );
310     PL_UNLOCK;
311 }
312
313 /* Must be entered with lock */
314 void PLModel::activateItem( playlist_item_t *p_item )
315 {
316     if( !p_item ) return;
317     playlist_item_t *p_parent = p_item;
318     while( p_parent )
319     {
320         if( p_parent->i_id == rootItem->i_id ) break;
321         p_parent = p_parent->p_parent;
322     }
323     if( p_parent )
324         playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, pl_Locked,
325                 p_parent, p_item );
326 }
327
328 /****************** Base model mandatory implementations *****************/
329 QVariant PLModel::data( const QModelIndex &index, const int role ) const
330 {
331     if( !index.isValid() ) return QVariant();
332     const PLItem *item = getItem( index );
333     if( role == Qt::DisplayRole )
334     {
335         int metadata = columnToMeta( index.column() );
336         if( metadata == COLUMN_END ) return QVariant();
337
338         QString returninfo;
339         if( metadata == COLUMN_NUMBER )
340             returninfo = QString::number( index.row() + 1 );
341         else
342         {
343             char *psz = psz_column_meta( item->p_input, metadata );
344             returninfo = qfu( psz );
345             free( psz );
346         }
347         return QVariant( returninfo );
348     }
349     else if( role == Qt::DecorationRole && index.column() == 0  )
350     {
351         /* Used to segfault here because i_type wasn't always initialized */
352         return QVariant( PLModel::icons[item->p_input->i_type] );
353     }
354     else if( role == Qt::FontRole )
355     {
356         QFont f;
357         f.setPointSize( f.pointSize() - 1 );
358         if( isCurrent( index ) )
359             f.setBold( true );
360         return QVariant( f );
361     }
362     else if( role == Qt::BackgroundRole && isCurrent( index ) )
363     {
364         return QVariant( QBrush( Qt::gray ) );
365     }
366     else if( role == IsCurrentRole ) return QVariant( isCurrent( index ) );
367     else if( role == IsLeafNodeRole )
368     {
369         QVariant isLeaf;
370         PL_LOCK;
371         playlist_item_t *plItem =
372             playlist_ItemGetById( p_playlist, item->i_id );
373
374         if( plItem )
375             isLeaf = plItem->i_children == -1;
376
377         PL_UNLOCK;
378         return isLeaf;
379     }
380     else if( role == IsCurrentsParentNodeRole )
381     {
382         return QVariant( isParent( index, currentIndex() ) );
383     }
384     return QVariant();
385 }
386
387 /* Seek from current index toward the top and see if index is one of parent nodes */
388 bool PLModel::isParent( const QModelIndex &index, const QModelIndex &current ) const
389 {
390     if( !index.isValid() )
391         return false;
392
393     if( index == current )
394         return true;
395
396     if( !current.isValid() || !current.parent().isValid() )
397         return false;
398
399     return isParent( index, current.parent() );
400 }
401
402 bool PLModel::isCurrent( const QModelIndex &index ) const
403 {
404     return getItem( index )->p_input == THEMIM->currentInputItem();
405 }
406
407 int PLModel::itemId( const QModelIndex &index ) const
408 {
409     return getItem( index )->i_id;
410 }
411
412 QVariant PLModel::headerData( int section, Qt::Orientation orientation,
413                               int role ) const
414 {
415     if (orientation != Qt::Horizontal || role != Qt::DisplayRole)
416         return QVariant();
417
418     int meta_col = columnToMeta( section );
419
420     if( meta_col == COLUMN_END ) return QVariant();
421
422     return QVariant( qfu( psz_column_title( meta_col ) ) );
423 }
424
425 QModelIndex PLModel::index( const int row, const int column, const QModelIndex &parent )
426                   const
427 {
428     PLItem *parentItem = parent.isValid() ? getItem( parent ) : rootItem;
429
430     PLItem *childItem = parentItem->child( row );
431     if( childItem )
432         return createIndex( row, column, childItem );
433     else
434         return QModelIndex();
435 }
436
437 QModelIndex PLModel::index( const int i_id, const int c )
438 {
439     return index( findById( rootItem, i_id ), c );
440 }
441
442 /* Return the index of a given item */
443 QModelIndex PLModel::index( PLItem *item, int column ) const
444 {
445     if( !item ) return QModelIndex();
446     const PLItem *parent = item->parent();
447     if( parent )
448         return createIndex( parent->children.lastIndexOf( item ),
449                             column, item );
450     return QModelIndex();
451 }
452
453 QModelIndex PLModel::currentIndex() const
454 {
455     input_thread_t *p_input_thread = THEMIM->getInput();
456     if( !p_input_thread ) return QModelIndex();
457     PLItem *item = findByInput( rootItem, input_GetItem( p_input_thread )->i_id );
458     return index( item, 0 );
459 }
460
461 QModelIndex PLModel::parent( const QModelIndex &index ) const
462 {
463     if( !index.isValid() ) return QModelIndex();
464
465     PLItem *childItem = getItem( index );
466     if( !childItem )
467     {
468         msg_Err( p_playlist, "NULL CHILD" );
469         return QModelIndex();
470     }
471
472     PLItem *parentItem = childItem->parent();
473     if( !parentItem || parentItem == rootItem ) return QModelIndex();
474     if( !parentItem->parentItem )
475     {
476         msg_Err( p_playlist, "No parent parent, trying row 0 " );
477         msg_Err( p_playlist, "----- PLEASE REPORT THIS ------" );
478         return createIndex( 0, 0, parentItem );
479     }
480     return createIndex(parentItem->row(), 0, parentItem);
481 }
482
483 int PLModel::columnCount( const QModelIndex &i) const
484 {
485     return columnFromMeta( COLUMN_END );
486 }
487
488 int PLModel::rowCount( const QModelIndex &parent ) const
489 {
490     const PLItem *parentItem = parent.isValid() ? getItem( parent ) : rootItem;
491     return parentItem->childCount();
492 }
493
494 QStringList PLModel::selectedURIs()
495 {
496     QStringList lst;
497     for( int i = 0; i < current_selection.size(); i++ )
498     {
499         const PLItem *item = getItem( current_selection[i] );
500         if( item )
501         {
502             PL_LOCK;
503             playlist_item_t *p_item = playlist_ItemGetById( p_playlist, item->i_id );
504             if( p_item )
505             {
506                 char *psz = input_item_GetURI( p_item->p_input );
507                 if( psz )
508                 {
509                     lst.append( qfu(psz) );
510                     free( psz );
511                 }
512             }
513             PL_UNLOCK;
514         }
515     }
516     return lst;
517 }
518
519 /************************* Lookups *****************************/
520 PLItem *PLModel::findById( PLItem *root, int i_id ) const
521 {
522     return findInner( root, i_id, false );
523 }
524
525 PLItem *PLModel::findByInput( PLItem *root, int i_id ) const
526 {
527     PLItem *result = findInner( root, i_id, true );
528     return result;
529 }
530
531 PLItem * PLModel::findInner( PLItem *root, int i_id, bool b_input ) const
532 {
533     if( !root ) return NULL;
534
535     if( !b_input && root->i_id == i_id )
536         return root;
537
538     else if( b_input && root->p_input->i_id == i_id )
539         return root;
540
541     QList<PLItem *>::iterator it = root->children.begin();
542     while ( it != root->children.end() )
543     {
544         if( !b_input && (*it)->i_id == i_id )
545             return (*it);
546
547         else if( b_input && (*it)->p_input->i_id == i_id )
548             return (*it);
549
550         if( (*it)->children.size() )
551         {
552             PLItem *childFound = findInner( (*it), i_id, b_input );
553             if( childFound )
554                 return childFound;
555         }
556         it++;
557     }
558     return NULL;
559 }
560
561 int PLModel::columnToMeta( int _column )
562 {
563     int meta = 1;
564     int column = 0;
565
566     while( column != _column && meta != COLUMN_END )
567     {
568         meta <<= 1;
569         column++;
570     }
571
572     return meta;
573 }
574
575 int PLModel::columnFromMeta( int meta_col )
576 {
577     int meta = 1;
578     int column = 0;
579
580     while( meta != meta_col && meta != COLUMN_END )
581     {
582         meta <<= 1;
583         column++;
584     }
585
586     return column;
587 }
588
589 bool PLModel::canEdit() const
590 {
591     return (
592             rootItem != NULL &&
593             (
594              rootItem->p_input == p_playlist->p_playing->p_input ||
595              ( p_playlist->p_media_library &&
596               rootItem->p_input == p_playlist->p_media_library->p_input )
597             )
598            );
599 }
600
601 QString PLModel::getMeta( const QModelIndex & index, int meta )
602 {
603     return index.model()->index( index.row(),
604                                   PLModel::columnFromMeta( meta ),
605                                   index.parent() )
606                                 .data().toString();
607 }
608
609 QPixmap PLModel::getArtPixmap( const QModelIndex & index, const QSize & size )
610 {
611     PLItem *item = static_cast<PLItem*>( index.internalPointer() );
612     assert( item );
613
614     if( item == NULL )
615         return NULL;
616
617     QString artUrl = InputManager::decodeArtURL( item->inputItem() );
618
619     /* If empty, take one of the children art URL */
620     if( artUrl.isEmpty() )
621     {
622         for( int i = 0; i < item->childCount(); i++ )
623         {
624             artUrl = InputManager::decodeArtURL( item->child( i )->inputItem() );
625             if( !artUrl.isEmpty() )
626                 break;
627         }
628     }
629
630     if( artUrl.isEmpty() )
631         return NULL;
632
633     QPixmap artPix;
634     QString key = artUrl + QString("%1%2").arg(size.width()).arg(size.height());
635
636     /* Lookup in the QPixmapCache */
637     if( !QPixmapCache::find( key, artPix ))
638     {
639         if( artUrl.isEmpty() || !artPix.load( artUrl ) )
640         {
641             key = QString("noart%1%2").arg(size.width()).arg(size.height());
642             if( !QPixmapCache::find( key, artPix ) )
643             {
644                 artPix = QPixmap( ":/noart" ).scaled( size,
645                                                       Qt::KeepAspectRatio,
646                                                       Qt::SmoothTransformation );
647                 QPixmapCache::insert( key, artPix );
648             }
649         }
650         else
651         {
652             artPix = artPix.scaled( size, Qt::KeepAspectRatio, Qt::SmoothTransformation );
653             QPixmapCache::insert( key, artPix );
654         }
655     }
656
657     return artPix;
658 }
659 /************************* Updates handling *****************************/
660
661 /**** Events processing ****/
662 void PLModel::processInputItemUpdate( input_thread_t *p_input )
663 {
664     if( !p_input ) return;
665     if( p_input && !( p_input->b_dead || !vlc_object_alive( p_input ) ) )
666     {
667         PLItem *item = findByInput( rootItem, input_GetItem( p_input )->i_id );
668         if( item ) emit currentChanged( index( item, 0 ) );
669     }
670     processInputItemUpdate( input_GetItem( p_input ) );
671 }
672
673 void PLModel::processInputItemUpdate( input_item_t *p_item )
674 {
675     if( !p_item ||  p_item->i_id <= 0 ) return;
676     PLItem *item = findByInput( rootItem, p_item->i_id );
677     if( item )
678         updateTreeItem( item );
679 }
680
681 void PLModel::processItemRemoval( int i_id )
682 {
683     if( i_id <= 0 ) return;
684     removeItem( i_id );
685 }
686
687 void PLModel::processItemAppend( int i_item, int i_parent )
688 {
689     playlist_item_t *p_item = NULL;
690     PLItem *newItem = NULL;
691     int pos;
692
693     /* Find the Parent */
694     PLItem *nodeParentItem = findById( rootItem, i_parent );
695     if( !nodeParentItem ) return;
696
697     /* Search for an already matching children */
698     foreach( const PLItem *existing, nodeParentItem->children )
699         if( existing->i_id == i_item ) return;
700
701     /* Find the child */
702     PL_LOCK;
703     p_item = playlist_ItemGetById( p_playlist, i_item );
704     if( !p_item || p_item->i_flags & PLAYLIST_DBL_FLAG )
705     {
706         PL_UNLOCK; return;
707     }
708
709     for( pos = 0; pos < p_item->p_parent->i_children; pos++ )
710         if( p_item->p_parent->pp_children[pos] == p_item ) break;
711
712     newItem = new PLItem( p_item, nodeParentItem );
713     PL_UNLOCK;
714
715     /* We insert the newItem (children) inside the parent */
716     beginInsertRows( index( nodeParentItem, 0 ), pos, pos );
717     nodeParentItem->insertChild( newItem, pos );
718     endInsertRows();
719
720     if( newItem->p_input == THEMIM->currentInputItem() )
721         emit currentChanged( index( newItem, 0 ) );
722 }
723
724 void PLModel::rebuild()
725 {
726     rebuild( NULL );
727 }
728
729 void PLModel::rebuild( playlist_item_t *p_root )
730 {
731     playlist_item_t* p_item;
732
733     /* Invalidate cache */
734     i_cached_id = i_cached_input_id = -1;
735
736     if( rootItem ) rootItem->removeChildren();
737
738     PL_LOCK;
739     if( p_root )
740     {
741         delete rootItem;
742         rootItem = new PLItem( p_root );
743     }
744     assert( rootItem );
745     /* Recreate from root */
746     updateChildren( rootItem );
747     PL_UNLOCK;
748
749     /* And signal the view */
750     reset();
751
752     if( p_root ) emit rootChanged();
753 }
754
755 void PLModel::takeItem( PLItem *item )
756 {
757     assert( item );
758     PLItem *parent = item->parentItem;
759     assert( parent );
760     int i_index = parent->children.indexOf( item );
761
762     beginRemoveRows( index( parent, 0 ), i_index, i_index );
763     parent->takeChildAt( i_index );
764     endRemoveRows();
765 }
766
767 void PLModel::insertChildren( PLItem *node, QList<PLItem*>& items, int i_pos )
768 {
769     assert( node );
770     int count = items.size();
771     if( !count ) return;
772     printf( "Here I am\n");
773     beginInsertRows( index( node, 0 ), i_pos, i_pos + count - 1 );
774     for( int i = 0; i < count; i++ )
775     {
776         node->children.insert( i_pos + i, items[i] );
777         items[i]->parentItem = node;
778     }
779     endInsertRows();
780 }
781
782 void PLModel::removeItem( PLItem *item )
783 {
784     if( !item ) return;
785
786     i_cached_id = -1;
787     i_cached_input_id = -1;
788
789     if( item->parentItem ) {
790         int i = item->parentItem->children.indexOf( item );
791         beginRemoveRows( index( item->parentItem, 0), i, i );
792         item->parentItem->children.removeAt(i);
793         delete item;
794         endRemoveRows();
795     }
796     else delete item;
797
798     if(item == rootItem)
799     {
800         rootItem = NULL;
801         rebuild( p_playlist->p_playing );
802     }
803 }
804
805 /* This function must be entered WITH the playlist lock */
806 void PLModel::updateChildren( PLItem *root )
807 {
808     playlist_item_t *p_node = playlist_ItemGetById( p_playlist, root->i_id );
809     updateChildren( p_node, root );
810 }
811
812 /* This function must be entered WITH the playlist lock */
813 void PLModel::updateChildren( playlist_item_t *p_node, PLItem *root )
814 {
815     for( int i = 0; i < p_node->i_children ; i++ )
816     {
817         if( p_node->pp_children[i]->i_flags & PLAYLIST_DBL_FLAG ) continue;
818         PLItem *newItem =  new PLItem( p_node->pp_children[i], root );
819         root->appendChild( newItem );
820         if( p_node->pp_children[i]->i_children != -1 )
821             updateChildren( p_node->pp_children[i], newItem );
822     }
823 }
824
825 /* Function doesn't need playlist-lock, as we don't touch playlist_item_t stuff here*/
826 void PLModel::updateTreeItem( PLItem *item )
827 {
828     if( !item ) return;
829     emit dataChanged( index( item, 0 ) , index( item, columnCount( QModelIndex() ) ) );
830 }
831
832 /************************* Actions ******************************/
833
834 /**
835  * Deletion, don't delete items childrens if item is going to be
836  * delete allready, so we remove childrens from selection-list.
837  */
838 void PLModel::doDelete( QModelIndexList selected )
839 {
840     if( !canEdit() ) return;
841
842     while( !selected.isEmpty() )
843     {
844         QModelIndex index = selected[0];
845         selected.removeAt( 0 );
846
847         if( index.column() != 0 ) continue;
848
849         PLItem *item = getItem( index );
850         if( item->children.size() )
851             recurseDelete( item->children, &selected );
852
853         PL_LOCK;
854         playlist_DeleteFromInput( p_playlist, item->p_input, pl_Locked );
855         PL_UNLOCK;
856
857         removeItem( item );
858     }
859 }
860
861 void PLModel::recurseDelete( QList<PLItem*> children, QModelIndexList *fullList )
862 {
863     for( int i = children.size() - 1; i >= 0 ; i-- )
864     {
865         PLItem *item = children[i];
866         if( item->children.size() )
867             recurseDelete( item->children, fullList );
868         fullList->removeAll( index( item, 0 ) );
869     }
870 }
871
872 /******* Volume III: Sorting and searching ********/
873 void PLModel::sort( const int column, Qt::SortOrder order )
874 {
875     sort( rootItem->i_id, column, order );
876 }
877
878 void PLModel::sort( const int i_root_id, const int column, Qt::SortOrder order )
879 {
880     msg_Dbg( p_intf, "Sorting by column %i, order %i", column, order );
881
882     int meta = columnToMeta( column );
883     if( meta == COLUMN_END ) return;
884
885     PLItem *item = findById( rootItem, i_root_id );
886     if( !item ) return;
887     QModelIndex qIndex = index( item, 0 );
888     int count = item->children.size();
889     if( count )
890     {
891         beginRemoveRows( qIndex, 0, count - 1 );
892         item->removeChildren();
893         endRemoveRows( );
894     }
895
896     PL_LOCK;
897     {
898         playlist_item_t *p_root = playlist_ItemGetById( p_playlist,
899                                                         i_root_id );
900         if( p_root )
901         {
902             playlist_RecursiveNodeSort( p_playlist, p_root,
903                                         i_column_sorting( meta ),
904                                         order == Qt::AscendingOrder ?
905                                             ORDER_NORMAL : ORDER_REVERSE );
906         }
907     }
908
909     i_cached_id = i_cached_input_id = -1;
910
911     if( count )
912     {
913         beginInsertRows( qIndex, 0, count - 1 );
914         updateChildren( item );
915         endInsertRows( );
916     }
917     PL_UNLOCK;
918     /* if we have popup item, try to make sure that you keep that item visible */
919     if( i_popup_item > -1 )
920     {
921         PLItem *popupitem = findById( rootItem, i_popup_item );
922         if( popupitem ) emit currentChanged( index( popupitem, 0 ) );
923         /* reset i_popup_item as we don't show it as selected anymore anyway */
924         i_popup_item = -1;
925     }
926     else if( currentIndex().isValid() ) emit currentChanged( currentIndex() );
927 }
928
929 void PLModel::search( const QString& search_text, const QModelIndex & idx, bool b_recursive )
930 {
931     /** \todo Fire the search with a small delay ? */
932     PL_LOCK;
933     {
934         playlist_item_t *p_root = playlist_ItemGetById( p_playlist,
935                                                         itemId( idx ) );
936         assert( p_root );
937         const char *psz_name = qtu( search_text );
938         playlist_LiveSearchUpdate( p_playlist , p_root, psz_name, b_recursive );
939
940         if( idx.isValid() )
941         {
942             PLItem *searchRoot = getItem( idx );
943
944             beginRemoveRows( idx, 0, searchRoot->children.size() - 1 );
945             searchRoot->removeChildren();
946             endRemoveRows( );
947
948             beginInsertRows( idx, 0, searchRoot->children.size() - 1 );
949             updateChildren( searchRoot ); // The PL_LOCK is needed here
950             endInsertRows();
951
952             PL_UNLOCK;
953             return;
954         }
955     }
956     PL_UNLOCK;
957     rebuild();
958 }
959
960 /*********** Popup *********/
961 bool PLModel::popup( const QModelIndex & index, const QPoint &point, const QModelIndexList &list )
962 {
963     int i_id = index.isValid() ? itemId( index ) : rootItem->i_id;
964
965     PL_LOCK;
966     playlist_item_t *p_item = playlist_ItemGetById( p_playlist, i_id );
967     if( !p_item )
968     {
969         PL_UNLOCK;
970         return false;
971     }
972
973     input_item_t *p_input = p_item->p_input;
974     vlc_gc_incref( p_input );
975
976     i_popup_item = index.isValid() ? p_item->i_id : -1;
977     i_popup_parent = index.isValid() ?
978         ( p_item->p_parent ? p_item->p_parent->i_id : -1 ) :
979         ( rootItem->i_id );
980     i_popup_column = index.column();
981
982     bool tree = ( rootItem && rootItem->i_id != p_playlist->p_playing->i_id ) ||
983                 var_InheritBool( p_intf, "playlist-tree" );
984
985     PL_UNLOCK;
986
987     current_selection = list;
988
989     QMenu menu;
990     if( i_popup_item > -1 )
991     {
992         menu.addAction( QIcon( ":/menu/play" ), qtr(I_POP_PLAY), this, SLOT( popupPlay() ) );
993         menu.addAction( QIcon( ":/menu/stream" ),
994                         qtr(I_POP_STREAM), this, SLOT( popupStream() ) );
995         menu.addAction( qtr(I_POP_SAVE), this, SLOT( popupSave() ) );
996         menu.addAction( QIcon( ":/menu/info" ), qtr(I_POP_INFO), this, SLOT( popupInfo() ) );
997         if( !strncasecmp( p_input->psz_uri, "file://", 7 ) )
998             menu.addAction( QIcon( ":/type/folder-grey" ),
999                             qtr( I_POP_EXPLORE ), this, SLOT( popupExplore() ) );
1000         menu.addSeparator();
1001     }
1002     if( canEdit() )
1003     {
1004         QIcon addIcon( ":/buttons/playlist/playlist_add" );
1005         menu.addSeparator();
1006         if( tree ) menu.addAction( addIcon, qtr(I_POP_NEWFOLDER), this, SLOT( popupAddNode() ) );
1007         if( rootItem->i_id == THEPL->p_playing->i_id )
1008         {
1009             menu.addAction( addIcon, qtr(I_PL_ADDF), THEDP, SLOT( simplePLAppendDialog()) );
1010             menu.addAction( addIcon, qtr(I_PL_ADDDIR), THEDP, SLOT( PLAppendDir()) );
1011             menu.addAction( addIcon, qtr(I_OP_ADVOP), THEDP, SLOT( PLAppendDialog()) );
1012         }
1013         else if( THEPL->p_media_library &&
1014                     rootItem->i_id == THEPL->p_media_library->i_id )
1015         {
1016             menu.addAction( addIcon, qtr(I_PL_ADDF), THEDP, SLOT( simpleMLAppendDialog()) );
1017             menu.addAction( addIcon, qtr(I_PL_ADDDIR), THEDP, SLOT( MLAppendDir() ) );
1018             menu.addAction( addIcon, qtr(I_OP_ADVOP), THEDP, SLOT( MLAppendDialog() ) );
1019         }
1020     }
1021     if( i_popup_item > -1 )
1022     {
1023         menu.addAction( QIcon( ":/buttons/playlist/playlist_remove" ),
1024                         qtr(I_POP_DEL), this, SLOT( popupDel() ) );
1025         menu.addSeparator();
1026         if( !sortingMenu )
1027         {
1028             sortingMenu = new QMenu( qtr( "Sort by" ) );
1029             sortingMapper = new QSignalMapper( this );
1030             int i, j;
1031             for( i = 1, j = 1; i < COLUMN_END; i <<= 1, j++ )
1032             {
1033                 if( i == COLUMN_NUMBER ) continue;
1034                 QMenu *m = sortingMenu->addMenu( qfu( psz_column_title( i ) ) );
1035                 QAction *asc = m->addAction( qtr("Ascending") );
1036                 QAction *desc = m->addAction( qtr("Descending") );
1037                 sortingMapper->setMapping( asc, j );
1038                 sortingMapper->setMapping( desc, -j );
1039                 CONNECT( asc, triggered(), sortingMapper, map() );
1040                 CONNECT( desc, triggered(), sortingMapper, map() );
1041             }
1042             CONNECT( sortingMapper, mapped( int ), this, popupSort( int ) );
1043         }
1044         menu.addMenu( sortingMenu );
1045     }
1046     vlc_gc_decref( p_input );
1047
1048     if( !menu.isEmpty() )
1049     {
1050         menu.exec( point ); return true;
1051     }
1052     else return false;
1053 }
1054
1055 void PLModel::popupDel()
1056 {
1057     doDelete( current_selection );
1058 }
1059
1060 void PLModel::popupPlay()
1061 {
1062     PL_LOCK;
1063     {
1064         playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1065                                                         i_popup_item );
1066         activateItem( p_item );
1067     }
1068     PL_UNLOCK;
1069 }
1070
1071 void PLModel::popupInfo()
1072 {
1073     PL_LOCK;
1074     playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1075                                                     i_popup_item );
1076     if( p_item )
1077     {
1078         input_item_t* p_input = p_item->p_input;
1079         vlc_gc_incref( p_input );
1080         PL_UNLOCK;
1081         MediaInfoDialog *mid = new MediaInfoDialog( p_intf, p_input );
1082         vlc_gc_decref( p_input );
1083         mid->setParent( PlaylistDialog::getInstance( p_intf ),
1084                         Qt::Dialog );
1085         mid->show();
1086     } else
1087         PL_UNLOCK;
1088 }
1089
1090 void PLModel::popupStream()
1091 {
1092     QStringList mrls = selectedURIs();
1093     if( !mrls.isEmpty() )
1094         THEDP->streamingDialog( NULL, mrls[0], false );
1095
1096 }
1097
1098 void PLModel::popupSave()
1099 {
1100     QStringList mrls = selectedURIs();
1101     if( !mrls.isEmpty() )
1102         THEDP->streamingDialog( NULL, mrls[0] );
1103 }
1104
1105 void PLModel::popupExplore()
1106 {
1107     PL_LOCK;
1108     playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1109             i_popup_item );
1110     if( p_item )
1111     {
1112         input_item_t *p_input = p_item->p_input;
1113         char *psz_meta = input_item_GetURI( p_input );
1114         PL_UNLOCK;
1115         if( psz_meta )
1116         {
1117             const char *psz_access;
1118             const char *psz_demux;
1119             char  *psz_path;
1120             input_SplitMRL( &psz_access, &psz_demux, &psz_path, psz_meta );
1121
1122             if( !EMPTY_STR( psz_access ) && (
1123                    !strncasecmp( psz_access, "file", 4 ) ||
1124                    !strncasecmp( psz_access, "dire", 4 ) ))
1125             {
1126 #ifdef WIN32
1127                 /* Qt openURL doesn't know to open files that starts with a / or \ */
1128                 if( psz_path[0] == '/' || psz_path[0] == '\\'  )
1129                     psz_path++;
1130 #endif
1131
1132                 QFileInfo info( qfu( decode_URI( psz_path ) ) );
1133                 QDesktopServices::openUrl(
1134                         QUrl::fromLocalFile( info.absolutePath() ) );
1135             }
1136             free( psz_meta );
1137         }
1138     }
1139     else
1140         PL_UNLOCK;
1141 }
1142
1143 void PLModel::popupAddNode()
1144 {
1145     bool ok;
1146     QString name = QInputDialog::getText( PlaylistDialog::getInstance( p_intf ),
1147         qtr( I_NEW_DIR ), qtr( I_NEW_DIR_NAME ),
1148         QLineEdit::Normal, QString(), &ok);
1149     if( !ok || name.isEmpty() ) return;
1150
1151     PL_LOCK;
1152     playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1153                                                     i_popup_parent );
1154     if( p_item )
1155         playlist_NodeCreate( p_playlist, qtu( name ), p_item, PLAYLIST_END, 0, NULL );
1156     PL_UNLOCK;
1157 }
1158
1159 void PLModel::popupSort( int column )
1160 {
1161     sort( i_popup_parent,
1162           column > 0 ? column - 1 : -column - 1,
1163           column > 0 ? Qt::AscendingOrder : Qt::DescendingOrder );
1164 }
1165
1166 /******************* Drag and Drop helper class ******************/
1167
1168 PlMimeData::PlMimeData( )
1169 { }
1170
1171 PlMimeData::~PlMimeData()
1172 {
1173     foreach( input_item_t *p_item, _inputItems )
1174         vlc_gc_decref( p_item );
1175 }
1176
1177 void PlMimeData::appendItem( input_item_t *p_item )
1178 {
1179     vlc_gc_incref( p_item );
1180     _inputItems.append( p_item );
1181 }
1182
1183 QList<input_item_t*> PlMimeData::inputItems() const
1184 {
1185     return _inputItems;
1186 }
1187
1188 QStringList PlMimeData::formats () const
1189 {
1190     QStringList fmts;
1191     fmts << "vlc/qt-input-items";
1192     return fmts;
1193 }