]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/playlist_model.cpp
Qt: Playlist, code simplification and factorisation
[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>
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
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
520 /************************* Lookups *****************************/
521
522 PLItem *PLModel::findById( PLItem *root, int i_id ) const
523 {
524     return findInner( root, i_id, false );
525 }
526
527 PLItem *PLModel::findByInput( PLItem *root, int i_id ) const
528 {
529     PLItem *result = findInner( root, i_id, true );
530     return result;
531 }
532
533 PLItem * PLModel::findInner( PLItem *root, int i_id, bool b_input ) const
534 {
535     if( !root ) return NULL;
536
537     if( !b_input && root->i_id == i_id )
538         return root;
539
540     else if( b_input && root->p_input->i_id == i_id )
541         return root;
542
543     QList<PLItem *>::iterator it = root->children.begin();
544     while ( it != root->children.end() )
545     {
546         if( !b_input && (*it)->i_id == i_id )
547              return (*it);
548
549         else if( b_input && (*it)->p_input->i_id == i_id )
550              return (*it);
551
552         if( (*it)->children.size() )
553         {
554             PLItem *childFound = findInner( (*it), i_id, b_input );
555             if( childFound )
556                return childFound;
557         }
558         it++;
559     }
560     return NULL;
561 }
562
563 int PLModel::columnToMeta( int _column )
564 {
565     int meta = 1;
566     int column = 0;
567
568     while( column != _column && meta != COLUMN_END )
569     {
570         meta <<= 1;
571         column++;
572     }
573
574     return meta;
575 }
576
577 int PLModel::columnFromMeta( int meta_col )
578 {
579     int meta = 1;
580     int column = 0;
581
582     while( meta != meta_col && meta != COLUMN_END )
583     {
584         meta <<= 1;
585         column++;
586     }
587
588     return column;
589 }
590
591 bool PLModel::canEdit() const
592 {
593   return (
594     rootItem != NULL &&
595     (
596       rootItem->p_input == p_playlist->p_playing->p_input ||
597       (
598         p_playlist->p_media_library &&
599         rootItem->p_input == p_playlist->p_media_library->p_input
600       )
601     )
602   );
603 }
604 /************************* Updates handling *****************************/
605
606 /**** Events processing ****/
607 void PLModel::processInputItemUpdate( input_thread_t *p_input )
608 {
609     if( !p_input ) return;
610     if( p_input && !( p_input->b_dead || !vlc_object_alive( p_input ) ) )
611     {
612         PLItem *item = findByInput( rootItem, input_GetItem( p_input )->i_id );
613         if( item ) emit currentChanged( index( item, 0 ) );
614     }
615     processInputItemUpdate( input_GetItem( p_input ) );
616 }
617
618 void PLModel::processInputItemUpdate( input_item_t *p_item )
619 {
620     if( !p_item ||  p_item->i_id <= 0 ) return;
621     PLItem *item = findByInput( rootItem, p_item->i_id );
622     if( item )
623         updateTreeItem( item );
624 }
625
626 void PLModel::processItemRemoval( int i_id )
627 {
628     if( i_id <= 0 ) return;
629     removeItem( i_id );
630 }
631
632 void PLModel::processItemAppend( int i_item, int i_parent )
633 {
634     playlist_item_t *p_item = NULL;
635     PLItem *newItem = NULL;
636     input_thread_t *currentInputThread;
637     int pos;
638
639     PLItem *nodeItem = findById( rootItem, i_parent );
640     if( !nodeItem ) return;
641
642     foreach( const PLItem *existing, nodeItem->children )
643       if( existing->i_id == i_item ) return;
644
645     PL_LOCK;
646     p_item = playlist_ItemGetById( p_playlist, i_item );
647     if( !p_item || p_item->i_flags & PLAYLIST_DBL_FLAG )
648     {
649         PL_UNLOCK; return;
650     }
651
652     for( pos = 0; pos < p_item->p_parent->i_children; pos++ )
653         if( p_item->p_parent->pp_children[pos] == p_item ) break;
654
655     newItem = new PLItem( p_item, nodeItem );
656     PL_UNLOCK;
657
658     beginInsertRows( index( nodeItem, 0 ), pos, pos );
659     nodeItem->insertChild( newItem, pos );
660     endInsertRows();
661
662     if( newItem->p_input == THEMIM->currentInputItem() )
663         emit currentChanged( index( newItem, 0 ) );
664 }
665
666
667 void PLModel::rebuild()
668 {
669     rebuild( NULL );
670 }
671
672 void PLModel::rebuild( playlist_item_t *p_root )
673 {
674     playlist_item_t* p_item;
675
676     /* Invalidate cache */
677     i_cached_id = i_cached_input_id = -1;
678
679     if( rootItem ) rootItem->removeChildren();
680
681     PL_LOCK;
682     if( p_root )
683     {
684         delete rootItem;
685         rootItem = new PLItem( p_root );
686     }
687     assert( rootItem );
688     /* Recreate from root */
689     updateChildren( rootItem );
690     PL_UNLOCK;
691
692     /* And signal the view */
693     reset();
694
695     if( p_root ) emit rootChanged();
696 }
697
698 void PLModel::takeItem( PLItem *item )
699 {
700     assert( item );
701     PLItem *parent = item->parentItem;
702     assert( parent );
703     int i_index = parent->children.indexOf( item );
704
705     beginRemoveRows( index( parent, 0 ), i_index, i_index );
706     parent->takeChildAt( i_index );
707     endRemoveRows();
708 }
709
710 void PLModel::insertChildren( PLItem *node, QList<PLItem*>& items, int i_pos )
711 {
712     assert( node );
713     int count = items.size();
714     if( !count ) return;
715     beginInsertRows( index( node, 0 ), i_pos, i_pos + count - 1 );
716     for( int i = 0; i < count; i++ )
717     {
718         node->children.insert( i_pos + i, items[i] );
719         items[i]->parentItem = node;
720     }
721     endInsertRows();
722 }
723
724 void PLModel::removeItem( PLItem *item )
725 {
726     if( !item ) return;
727
728     i_cached_id = -1;
729     i_cached_input_id = -1;
730
731     if( item->parentItem ) {
732         int i = item->parentItem->children.indexOf( item );
733         beginRemoveRows( index( item->parentItem, 0), i, i );
734         item->parentItem->children.removeAt(i);
735         delete item;
736         endRemoveRows();
737     }
738     else delete item;
739
740     if(item == rootItem)
741     {
742         rootItem = NULL;
743         rebuild( p_playlist->p_playing );
744     }
745 }
746
747 /* This function must be entered WITH the playlist lock */
748 void PLModel::updateChildren( PLItem *root )
749 {
750     playlist_item_t *p_node = playlist_ItemGetById( p_playlist, root->i_id );
751     updateChildren( p_node, root );
752 }
753
754 /* This function must be entered WITH the playlist lock */
755 void PLModel::updateChildren( playlist_item_t *p_node, PLItem *root )
756 {
757     for( int i = 0; i < p_node->i_children ; i++ )
758     {
759         if( p_node->pp_children[i]->i_flags & PLAYLIST_DBL_FLAG ) continue;
760         PLItem *newItem =  new PLItem( p_node->pp_children[i], root );
761         root->appendChild( newItem );
762         if( p_node->pp_children[i]->i_children != -1 )
763             updateChildren( p_node->pp_children[i], newItem );
764     }
765 }
766
767 /* Function doesn't need playlist-lock, as we don't touch playlist_item_t stuff here*/
768 void PLModel::updateTreeItem( PLItem *item )
769 {
770     if( !item ) return;
771     emit dataChanged( index( item, 0 ) , index( item, columnCount( QModelIndex() ) ) );
772 }
773
774 /************************* Actions ******************************/
775
776 /**
777  * Deletion, don't delete items childrens if item is going to be
778  * delete allready, so we remove childrens from selection-list.
779  */
780 void PLModel::doDelete( QModelIndexList selected )
781 {
782     if( !canEdit() ) return;
783
784     while( !selected.isEmpty() )
785     {
786         QModelIndex index = selected[0];
787         selected.removeAt( 0 );
788
789         if( index.column() != 0 ) continue;
790
791         PLItem *item = getItem( index );
792         if( item->children.size() )
793             recurseDelete( item->children, &selected );
794
795         PL_LOCK;
796         playlist_DeleteFromInput( p_playlist, item->p_input, pl_Locked );
797         PL_UNLOCK;
798
799         removeItem( item );
800     }
801 }
802
803 void PLModel::recurseDelete( QList<PLItem*> children, QModelIndexList *fullList )
804 {
805     for( int i = children.size() - 1; i >= 0 ; i-- )
806     {
807         PLItem *item = children[i];
808         if( item->children.size() )
809             recurseDelete( item->children, fullList );
810         fullList->removeAll( index( item, 0 ) );
811     }
812 }
813
814 /******* Volume III: Sorting and searching ********/
815 void PLModel::sort( const int column, Qt::SortOrder order )
816 {
817     sort( rootItem->i_id, column, order );
818 }
819
820 void PLModel::sort( const int i_root_id, const int column, Qt::SortOrder order )
821 {
822     msg_Dbg( p_intf, "Sorting by column %i, order %i", column, order );
823
824     int meta = columnToMeta( column );
825     if( meta == COLUMN_END ) return;
826
827     PLItem *item = findById( rootItem, i_root_id );
828     if( !item ) return;
829     QModelIndex qIndex = index( item, 0 );
830     int count = item->children.size();
831     if( count )
832     {
833         beginRemoveRows( qIndex, 0, count - 1 );
834         item->removeChildren();
835         endRemoveRows( );
836     }
837
838     PL_LOCK;
839     {
840         playlist_item_t *p_root = playlist_ItemGetById( p_playlist,
841                                                         i_root_id );
842         if( p_root )
843         {
844             playlist_RecursiveNodeSort( p_playlist, p_root,
845                                         i_column_sorting( meta ),
846                                         order == Qt::AscendingOrder ?
847                                             ORDER_NORMAL : ORDER_REVERSE );
848         }
849     }
850
851     i_cached_id = i_cached_input_id = -1;
852
853     if( count )
854     {
855         beginInsertRows( qIndex, 0, count - 1 );
856         updateChildren( item );
857         endInsertRows( );
858     }
859     PL_UNLOCK;
860     /* if we have popup item, try to make sure that you keep that item visible */
861     if( i_popup_item > -1 )
862     {
863         PLItem *popupitem = findById( rootItem, i_popup_item );
864         if( popupitem ) emit currentChanged( index( popupitem, 0 ) );
865         /* reset i_popup_item as we don't show it as selected anymore anyway */
866         i_popup_item = -1;
867     }
868     else if( currentIndex().isValid() ) emit currentChanged( currentIndex() );
869 }
870
871 void PLModel::search( const QString& search_text, const QModelIndex & idx, bool b_recursive )
872 {
873     /** \todo Fire the search with a small delay ? */
874     PL_LOCK;
875     {
876         playlist_item_t *p_root = playlist_ItemGetById( p_playlist,
877                                                         itemId( idx ) );
878         assert( p_root );
879         const char *psz_name = qtu( search_text );
880         playlist_LiveSearchUpdate( p_playlist , p_root, psz_name, b_recursive );
881
882         if( idx.isValid() )
883         {
884             PLItem *searchRoot = getItem( idx );
885
886             beginRemoveRows( idx, 0, searchRoot->children.size() - 1 );
887             searchRoot->removeChildren();
888             endRemoveRows( );
889
890             beginInsertRows( idx, 0, searchRoot->children.size() - 1 );
891             updateChildren( searchRoot ); // The PL_LOCK is needed here
892             endInsertRows();
893
894             PL_UNLOCK;
895             return;
896         }
897     }
898     PL_UNLOCK;
899     rebuild();
900 }
901
902 /*********** Popup *********/
903 bool PLModel::popup( const QModelIndex & index, const QPoint &point, const QModelIndexList &list )
904 {
905     int i_id = index.isValid() ? itemId( index ) : rootItem->i_id;
906
907     PL_LOCK;
908     playlist_item_t *p_item = playlist_ItemGetById( p_playlist, i_id );
909     if( !p_item )
910     {
911         PL_UNLOCK;
912         return false;
913     }
914
915     input_item_t *p_input = p_item->p_input;
916     vlc_gc_incref( p_input );
917
918     i_popup_item = index.isValid() ? p_item->i_id : -1;
919     i_popup_parent = index.isValid() ?
920         ( p_item->p_parent ? p_item->p_parent->i_id : -1 ) :
921         ( rootItem->i_id );
922     i_popup_column = index.column();
923
924     bool tree = ( rootItem && rootItem->i_id != p_playlist->p_playing->i_id ) ||
925                 var_InheritBool( p_intf, "playlist-tree" );
926
927     PL_UNLOCK;
928
929     current_selection = list;
930
931     QMenu menu;
932     if( i_popup_item > -1 )
933     {
934         menu.addAction( QIcon( ":/menu/play" ), qtr(I_POP_PLAY), this, SLOT( popupPlay() ) );
935         menu.addAction( QIcon( ":/menu/stream" ),
936                         qtr(I_POP_STREAM), this, SLOT( popupStream() ) );
937         menu.addAction( qtr(I_POP_SAVE), this, SLOT( popupSave() ) );
938         menu.addAction( QIcon( ":/menu/info" ), qtr(I_POP_INFO), this, SLOT( popupInfo() ) );
939         if( !strncasecmp( p_input->psz_uri, "file://", 7 ) )
940             menu.addAction( QIcon( ":/type/folder-grey" ),
941                             qtr( I_POP_EXPLORE ), this, SLOT( popupExplore() ) );
942         menu.addSeparator();
943     }
944     if( canEdit() )
945     {
946         QIcon addIcon( ":/buttons/playlist/playlist_add" );
947         menu.addSeparator();
948         if( tree ) menu.addAction( addIcon, qtr(I_POP_NEWFOLDER), this, SLOT( popupAddNode() ) );
949         if( rootItem->i_id == THEPL->p_playing->i_id )
950         {
951             menu.addAction( addIcon, qtr(I_PL_ADDF), THEDP, SLOT( simplePLAppendDialog()) );
952             menu.addAction( addIcon, qtr(I_PL_ADDDIR), THEDP, SLOT( PLAppendDir()) );
953             menu.addAction( addIcon, qtr(I_OP_ADVOP), THEDP, SLOT( PLAppendDialog()) );
954         }
955         else if( THEPL->p_media_library &&
956                     rootItem->i_id == THEPL->p_media_library->i_id )
957         {
958             menu.addAction( addIcon, qtr(I_PL_ADDF), THEDP, SLOT( simpleMLAppendDialog()) );
959             menu.addAction( addIcon, qtr(I_PL_ADDDIR), THEDP, SLOT( MLAppendDir() ) );
960             menu.addAction( addIcon, qtr(I_OP_ADVOP), THEDP, SLOT( MLAppendDialog() ) );
961         }
962     }
963     if( i_popup_item > -1 )
964     {
965         menu.addAction( QIcon( ":/buttons/playlist/playlist_remove" ),
966                         qtr(I_POP_DEL), this, SLOT( popupDel() ) );
967         menu.addSeparator();
968         if( !sortingMenu )
969         {
970             sortingMenu = new QMenu( qtr( "Sort by" ) );
971             sortingMapper = new QSignalMapper( this );
972             int i, j;
973             for( i = 1, j = 1; i < COLUMN_END; i <<= 1, j++ )
974             {
975                 if( i == COLUMN_NUMBER ) continue;
976                 QMenu *m = sortingMenu->addMenu( qfu( psz_column_title( i ) ) );
977                 QAction *asc = m->addAction( qtr("Ascending") );
978                 QAction *desc = m->addAction( qtr("Descending") );
979                 sortingMapper->setMapping( asc, j );
980                 sortingMapper->setMapping( desc, -j );
981                 CONNECT( asc, triggered(), sortingMapper, map() );
982                 CONNECT( desc, triggered(), sortingMapper, map() );
983             }
984             CONNECT( sortingMapper, mapped( int ), this, popupSort( int ) );
985         }
986         menu.addMenu( sortingMenu );
987     }
988     vlc_gc_decref( p_input );
989
990     if( !menu.isEmpty() )
991     {
992         menu.exec( point ); return true;
993     }
994     else return false;
995 }
996
997 void PLModel::popupDel()
998 {
999     doDelete( current_selection );
1000 }
1001
1002 void PLModel::popupPlay()
1003 {
1004     PL_LOCK;
1005     {
1006         playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1007                                                         i_popup_item );
1008         activateItem( p_item );
1009     }
1010     PL_UNLOCK;
1011 }
1012
1013 void PLModel::popupInfo()
1014 {
1015     PL_LOCK;
1016     playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1017                                                     i_popup_item );
1018     if( p_item )
1019     {
1020         input_item_t* p_input = p_item->p_input;
1021         vlc_gc_incref( p_input );
1022         PL_UNLOCK;
1023         MediaInfoDialog *mid = new MediaInfoDialog( p_intf, p_input );
1024         vlc_gc_decref( p_input );
1025         mid->setParent( PlaylistDialog::getInstance( p_intf ),
1026                         Qt::Dialog );
1027         mid->show();
1028     } else
1029         PL_UNLOCK;
1030 }
1031
1032 void PLModel::popupStream()
1033 {
1034     QStringList mrls = selectedURIs();
1035     if( !mrls.isEmpty() )
1036         THEDP->streamingDialog( NULL, mrls[0], false );
1037
1038 }
1039
1040 void PLModel::popupSave()
1041 {
1042     QStringList mrls = selectedURIs();
1043     if( !mrls.isEmpty() )
1044         THEDP->streamingDialog( NULL, mrls[0] );
1045 }
1046
1047 void PLModel::popupExplore()
1048 {
1049     PL_LOCK;
1050     playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1051             i_popup_item );
1052     if( p_item )
1053     {
1054         input_item_t *p_input = p_item->p_input;
1055         char *psz_meta = input_item_GetURI( p_input );
1056         PL_UNLOCK;
1057         if( psz_meta )
1058         {
1059             const char *psz_access;
1060             const char *psz_demux;
1061             char  *psz_path;
1062             input_SplitMRL( &psz_access, &psz_demux, &psz_path, psz_meta );
1063
1064             if( !EMPTY_STR( psz_access ) && (
1065                    !strncasecmp( psz_access, "file", 4 ) ||
1066                    !strncasecmp( psz_access, "dire", 4 ) ))
1067             {
1068 #ifdef WIN32
1069                 /* Qt openURL doesn't know to open files that starts with a / or \ */
1070                 if( psz_path[0] == '/' || psz_path[0] == '\\'  )
1071                     psz_path++;
1072 #endif
1073
1074                 QFileInfo info( qfu( decode_URI( psz_path ) ) );
1075                 QDesktopServices::openUrl(
1076                         QUrl::fromLocalFile( info.absolutePath() ) );
1077             }
1078             free( psz_meta );
1079         }
1080     }
1081     else
1082         PL_UNLOCK;
1083 }
1084
1085 void PLModel::popupAddNode()
1086 {
1087     bool ok;
1088     QString name = QInputDialog::getText( PlaylistDialog::getInstance( p_intf ),
1089         qtr( I_NEW_DIR ), qtr( I_NEW_DIR_NAME ),
1090         QLineEdit::Normal, QString(), &ok);
1091     if( !ok || name.isEmpty() ) return;
1092
1093     PL_LOCK;
1094     playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1095                                                     i_popup_parent );
1096     if( p_item )
1097         playlist_NodeCreate( p_playlist, qtu( name ), p_item, PLAYLIST_END, 0, NULL );
1098     PL_UNLOCK;
1099 }
1100
1101 void PLModel::popupSort( int column )
1102 {
1103     sort( i_popup_parent,
1104           column > 0 ? column - 1 : -column - 1,
1105           column > 0 ? Qt::AscendingOrder : Qt::DescendingOrder );
1106 }
1107
1108 /******************* Drag and Drop helper class ******************/
1109
1110 PlMimeData::PlMimeData( )
1111 { }
1112
1113 PlMimeData::~PlMimeData()
1114 {
1115     foreach( input_item_t *p_item, _inputItems )
1116         vlc_gc_decref( p_item );
1117 }
1118
1119 void PlMimeData::appendItem( input_item_t *p_item )
1120 {
1121     vlc_gc_incref( p_item );
1122     _inputItems.append( p_item );
1123 }
1124
1125 QList<input_item_t*> PlMimeData::inputItems() const
1126 {
1127     return _inputItems;
1128 }
1129
1130 QStringList PlMimeData::formats () const
1131 {
1132     QStringList fmts;
1133     fmts << "vlc/qt-input-items";
1134     return fmts;
1135 }