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