]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/standardpanel.cpp
Qt: PLModel::removeItem( int ) is not for public usage
[vlc] / modules / gui / qt4 / components / playlist / standardpanel.cpp
1 /*****************************************************************************
2  * standardpanel.cpp : The "standard" playlist panel : just a treeview
3  ****************************************************************************
4  * Copyright (C) 2000-2009 VideoLAN
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          JB Kempf <jb@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include "dialogs_provider.hpp"
30
31 #include "components/playlist/playlist_model.hpp"
32 #include "components/playlist/standardpanel.hpp"
33 #include "components/playlist/icon_view.hpp"
34 #include "util/customwidgets.hpp"
35 #include "menus.hpp"
36
37 #include <vlc_intf_strings.h>
38
39 #include <QPushButton>
40 #include <QHeaderView>
41 #include <QKeyEvent>
42 #include <QModelIndexList>
43 #include <QLabel>
44 #include <QMenu>
45 #include <QSignalMapper>
46 #include <QWheelEvent>
47 #include <QToolButton>
48 #include <QFontMetrics>
49 #include <QPainter>
50
51 #include <assert.h>
52
53 #include "sorting.h"
54
55 StandardPLPanel::StandardPLPanel( PlaylistWidget *_parent,
56                                   intf_thread_t *_p_intf,
57                                   playlist_t *p_playlist,
58                                   playlist_item_t *p_root ):
59                                   QWidget( _parent ), p_intf( _p_intf )
60 {
61     layout = new QGridLayout( this );
62     layout->setSpacing( 0 ); layout->setMargin( 0 );
63     setMinimumWidth( 300 );
64
65     iconView = NULL;
66     treeView = NULL;
67
68     model = new PLModel( p_playlist, p_intf, p_root, this );
69     currentRootId = -1;
70     last_activated_id = -1;
71
72     /* Title label */
73     /*title = new QLabel;
74     QFont titleFont;
75     titleFont.setPointSize( titleFont.pointSize() + 6 );
76     titleFont.setFamily( "Verdana" );
77     title->setFont( titleFont );
78     layout->addWidget( title, 0, 0 );*/
79
80     locationBar = new LocationBar( model );
81     layout->addWidget( locationBar, 0, 0 );
82     CONNECT( model, rootChanged(), locationBar, setRootIndex() );
83
84     /* A Spacer and the search possibilities */
85     layout->setColumnStretch( 1, 10 );
86
87     SearchLineEdit *search = new SearchLineEdit( this );
88     search->setMaximumWidth( 300 );
89     layout->addWidget( search, 0, 4 );
90     CONNECT( search, textChanged( const QString& ),
91              this, search( const QString& ) );
92     layout->setColumnStretch( 4, 10 );
93
94     /* Add item to the playlist button */
95     addButton = new QToolButton;
96     addButton->setIcon( QIcon( ":/buttons/playlist/playlist_add" ) );
97     addButton->setMaximumWidth( 30 );
98     BUTTONACT( addButton, popupAdd() );
99     layout->addWidget( addButton, 0, 3 );
100
101     /* Button to switch views */
102     QToolButton *viewButton = new QToolButton( this );
103     viewButton->setIcon( style()->standardIcon( QStyle::SP_FileDialogDetailedView ) );
104     layout->addWidget( viewButton, 0, 2 );
105
106     /* View selection menu */
107     viewSelectionMapper = new QSignalMapper( this );
108     CONNECT( viewSelectionMapper, mapped( int ), this, showView( int ) );
109
110     QActionGroup *actionGroup = new QActionGroup( this );
111
112     treeViewAction = actionGroup->addAction( "Detailed view" );
113     treeViewAction->setCheckable( true );
114     viewSelectionMapper->setMapping( treeViewAction, TREE_VIEW );
115     CONNECT( treeViewAction, triggered(), viewSelectionMapper, map() );
116
117     iconViewAction = actionGroup->addAction( "Icon view" );
118     iconViewAction->setCheckable( true );
119     viewSelectionMapper->setMapping( iconViewAction, ICON_VIEW );
120     CONNECT( iconViewAction, triggered(), viewSelectionMapper, map() );
121
122     BUTTONACT( viewButton, cycleViews() );
123     QMenu *viewMenu = new QMenu( this );
124     viewMenu->addActions( actionGroup->actions() );
125
126     viewButton->setMenu( viewMenu );
127
128     /* Saved Settings */
129     getSettings()->beginGroup("Playlist");
130
131     int i_viewMode = getSettings()->value( "view-mode", TREE_VIEW ).toInt();
132     showView( i_viewMode );
133
134     getSettings()->endGroup();
135
136     CONNECT( THEMIM, leafBecameParent( input_item_t *),
137              this, browseInto( input_item_t * ) );
138
139     CONNECT( model, currentChanged( const QModelIndex& ),
140              this, handleExpansion( const QModelIndex& ) );
141     CONNECT( model, rootChanged(), this, handleRootChange() );
142 }
143
144 StandardPLPanel::~StandardPLPanel()
145 {
146     getSettings()->beginGroup("Playlist");
147     if( treeView )
148         getSettings()->setValue( "headerStateV2", treeView->header()->saveState() );
149     getSettings()->setValue( "view-mode", ( currentView == iconView ) ? ICON_VIEW : TREE_VIEW );
150     getSettings()->endGroup();
151 }
152
153 /* Unused anymore, but might be useful, like in right-click menu */
154 void StandardPLPanel::gotoPlayingItem()
155 {
156     currentView->scrollTo( model->currentIndex() );
157 }
158
159 void StandardPLPanel::handleExpansion( const QModelIndex& index )
160 {
161     assert( currentView );
162     currentView->scrollTo( index );
163 }
164
165 void StandardPLPanel::handleRootChange()
166 {
167     /* needed for popupAdd() */
168     PLItem *root = model->getItem( QModelIndex() );
169     currentRootId = root->id();
170
171     locationBar->setIndex( QModelIndex() );
172
173     /* enable/disable adding */
174     if( currentRootId == THEPL->p_playing->i_id )
175     {
176         addButton->setEnabled( true );
177         addButton->setToolTip( qtr(I_PL_ADDPL) );
178     }
179     else if( THEPL->p_media_library &&
180              currentRootId == THEPL->p_media_library->i_id )
181     {
182         addButton->setEnabled( true );
183         addButton->setToolTip( qtr(I_PL_ADDML) );
184     }
185     else
186         addButton->setEnabled( false );
187 }
188
189 /* PopupAdd Menu for the Add Menu */
190 void StandardPLPanel::popupAdd()
191 {
192     QMenu popup;
193     if( currentRootId == THEPL->p_playing->i_id )
194     {
195         popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT( simplePLAppendDialog()) );
196         popup.addAction( qtr(I_PL_ADDDIR), THEDP, SLOT( PLAppendDir()) );
197         popup.addAction( qtr(I_OP_ADVOP), THEDP, SLOT( PLAppendDialog()) );
198     }
199     else if( THEPL->p_media_library &&
200                 currentRootId == THEPL->p_media_library->i_id )
201     {
202         popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT( simpleMLAppendDialog()) );
203         popup.addAction( qtr(I_PL_ADDDIR), THEDP, SLOT( MLAppendDir() ) );
204         popup.addAction( qtr(I_OP_ADVOP), THEDP, SLOT( MLAppendDialog() ) );
205     }
206
207     popup.exec( QCursor::pos() - addButton->mapFromGlobal( QCursor::pos() )
208                         + QPoint( 0, addButton->height() ) );
209 }
210
211 void StandardPLPanel::popupPlView( const QPoint &point )
212 {
213     QModelIndex index = currentView->indexAt( point );
214     QPoint globalPoint = currentView->viewport()->mapToGlobal( point );
215     if( !index.isValid() ){
216         QVLCMenu::PopupMenu( p_intf, true );
217     }
218     else
219     {
220         QItemSelectionModel *selection = currentView->selectionModel();
221         QModelIndexList list = selection->selectedIndexes();
222         model->popup( index, globalPoint, list );
223     }
224 }
225
226 void StandardPLPanel::popupSelectColumn( QPoint pos )
227 {
228     QMenu menu;
229     assert( treeView );
230
231     /* We do not offer the option to hide index 0 column, or
232     * QTreeView will behave weird */
233     int i, j;
234     for( i = 1 << 1, j = 1; i < COLUMN_END; i <<= 1, j++ )
235     {
236         QAction* option = menu.addAction(
237             qfu( psz_column_title( i ) ) );
238         option->setCheckable( true );
239         option->setChecked( !treeView->isColumnHidden( j ) );
240         selectColumnsSigMapper->setMapping( option, j );
241         CONNECT( option, triggered(), selectColumnsSigMapper, map() );
242     }
243     menu.exec( QCursor::pos() );
244 }
245
246 void StandardPLPanel::toggleColumnShown( int i )
247 {
248     treeView->setColumnHidden( i, !treeView->isColumnHidden( i ) );
249 }
250
251 /* Search in the playlist */
252 void StandardPLPanel::search( const QString& searchText )
253 {
254     model->search( searchText );
255 }
256
257 /* Set the root of the new Playlist */
258 /* This activated by the selector selection */
259 void StandardPLPanel::setRoot( playlist_item_t *p_item )
260 {
261     model->rebuild( p_item );
262 }
263
264 /* Delete and Suppr key remove the selection
265    FilterKey function and code function */
266 void StandardPLPanel::keyPressEvent( QKeyEvent *e )
267 {
268     switch( e->key() )
269     {
270     case Qt::Key_Back:
271     case Qt::Key_Delete:
272         deleteSelection();
273         break;
274     }
275 }
276
277 void StandardPLPanel::deleteSelection()
278 {
279     QItemSelectionModel *selection = currentView->selectionModel();
280     QModelIndexList list = selection->selectedIndexes();
281     model->doDelete( list );
282 }
283
284 void StandardPLPanel::createIconView()
285 {
286     iconView = new PlIconView( model, this );
287     iconView->setContextMenuPolicy( Qt::CustomContextMenu );
288     CONNECT( iconView, customContextMenuRequested( const QPoint & ),
289              this, popupPlView( const QPoint & ) );
290     CONNECT( iconView, activated( const QModelIndex & ),
291              this, activate( const QModelIndex & ) );
292     CONNECT( locationBar, invoked( const QModelIndex & ),
293              iconView, setRootIndex( const QModelIndex & ) );
294
295     layout->addWidget( iconView, 1, 0, 1, -1 );
296 }
297
298 void StandardPLPanel::createTreeView()
299 {
300     /* Create and configure the QTreeView */
301     treeView = new QTreeView;
302
303     treeView->setIconSize( QSize( 20, 20 ) );
304     treeView->setAlternatingRowColors( true );
305     treeView->setAnimated( true );
306     treeView->setUniformRowHeights( true );
307     treeView->setSortingEnabled( true );
308     treeView->header()->setSortIndicator( -1 , Qt::AscendingOrder );
309     treeView->header()->setSortIndicatorShown( true );
310     treeView->header()->setClickable( true );
311     treeView->header()->setContextMenuPolicy( Qt::CustomContextMenu );
312
313     treeView->setSelectionBehavior( QAbstractItemView::SelectRows );
314     treeView->setSelectionMode( QAbstractItemView::ExtendedSelection );
315     treeView->setDragEnabled( true );
316     treeView->setAcceptDrops( true );
317     treeView->setDropIndicatorShown( true );
318     treeView->setContextMenuPolicy( Qt::CustomContextMenu );
319
320     /* setModel after setSortingEnabled(true), or the model will sort immediately! */
321     treeView->setModel( model );
322
323     if( getSettings()->contains( "headerStateV2" ) )
324     {
325         treeView->header()->restoreState(
326                 getSettings()->value( "headerStateV2" ).toByteArray() );
327     }
328     else
329     {
330         for( int m = 1, c = 0; m != COLUMN_END; m <<= 1, c++ )
331         {
332             treeView->setColumnHidden( c, !( m & COLUMN_DEFAULT ) );
333             if( m == COLUMN_TITLE ) treeView->header()->resizeSection( c, 200 );
334             else if( m == COLUMN_DURATION ) treeView->header()->resizeSection( c, 80 );
335         }
336     }
337
338     /* Connections for the TreeView */
339     CONNECT( treeView, activated( const QModelIndex& ),
340              this, activate( const QModelIndex& ) );
341     CONNECT( treeView->header(), customContextMenuRequested( const QPoint & ),
342              this, popupSelectColumn( QPoint ) );
343     CONNECT( treeView, customContextMenuRequested( const QPoint & ),
344              this, popupPlView( const QPoint & ) );
345
346     /* SignalMapper for columns */
347     selectColumnsSigMapper = new QSignalMapper( this );
348     CONNECT( selectColumnsSigMapper, mapped( int ),
349              this, toggleColumnShown( int ) );
350
351     /* Finish the layout */
352     layout->addWidget( treeView, 1, 0, 1, -1 );
353 }
354
355 void StandardPLPanel::showView( int i_view )
356 {
357     switch( i_view )
358     {
359     case TREE_VIEW:
360     {
361         if( treeView == NULL )
362             createTreeView();
363         locationBar->setIndex( treeView->rootIndex() );
364         if( iconView ) iconView->hide();
365         treeView->show();
366         currentView = treeView;
367         treeViewAction->setChecked( true );
368         break;
369     }
370     case ICON_VIEW:
371     {
372         if( iconView == NULL )
373             createIconView();
374
375         locationBar->setIndex( iconView->rootIndex() );
376         if( treeView ) treeView->hide();
377         iconView->show();
378         currentView = iconView;
379         iconViewAction->setChecked( true );
380         break;
381     }
382     default:;
383     }
384 }
385
386 void StandardPLPanel::cycleViews()
387 {
388     if( currentView == iconView )
389         showView( TREE_VIEW );
390     else if( currentView == treeView )
391         showView( ICON_VIEW );
392     else
393         assert( 0 );
394 }
395
396 void StandardPLPanel::wheelEvent( QWheelEvent *e )
397 {
398     // Accept this event in order to prevent unwanted volume up/down changes
399     e->accept();
400 }
401
402 void StandardPLPanel::activate( const QModelIndex &index )
403 {
404     if( model->hasChildren( index ) )
405     {
406         if( currentView == iconView ) {
407             iconView->setRootIndex( index );
408             //title->setText( index.data().toString() );
409             locationBar->setIndex( index );
410         }
411     }
412     else
413     {
414         playlist_Lock( THEPL );
415         playlist_item_t *p_item = playlist_ItemGetById( THEPL, model->itemId( index ) );
416         p_item->i_flags |= PLAYLIST_SUBITEM_STOP_FLAG;
417         last_activated_id = p_item->p_input->i_id;//model->getItem( index )->inputItem()->i_id;
418         playlist_Unlock( THEPL );
419         model->activateItem( index );
420     }
421 }
422
423 void StandardPLPanel::browseInto( input_item_t *p_input )
424 {
425
426     if( p_input->i_id != last_activated_id ) return;
427
428     playlist_Lock( THEPL );
429
430     playlist_item_t *p_item = playlist_ItemGetByInput( THEPL, p_input );
431     if( !p_item )
432     {
433         playlist_Unlock( THEPL );
434         return;
435     }
436
437     QModelIndex index = model->index( p_item->i_id, 0 );
438
439     playlist_Unlock( THEPL );
440
441     if( currentView == iconView ) {
442         iconView->setRootIndex( index );
443         locationBar->setIndex( index );
444     }
445     else
446         treeView->setExpanded( index, true );
447
448     last_activated_id = -1;
449
450
451 }
452
453 LocationBar::LocationBar( PLModel *m )
454 {
455     model = m;
456     mapper = new QSignalMapper( this );
457     CONNECT( mapper, mapped( int ), this, invoke( int ) );
458
459     box = new QHBoxLayout;
460     box->setSpacing( 0 );
461     box->setContentsMargins( 0, 0, 0, 0 );
462     setLayout( box );
463 }
464
465 void LocationBar::setIndex( const QModelIndex &index )
466 {
467     qDeleteAll( buttons );
468     buttons.clear();
469     QModelIndex i = index;
470     bool bold = true;
471     while( true )
472     {
473         PLItem *item = model->getItem( i );
474
475         char *fb_name = input_item_GetTitleFbName( item->inputItem() );
476         QString text = qfu(fb_name);
477         free(fb_name);
478         QAbstractButton *btn = new LocationButton( text, bold, i.isValid() );
479         if( bold ) btn->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Preferred );
480         box->insertWidget( 0, btn, bold ? 1 : 0 );
481         buttons.append( btn );
482
483         mapper->setMapping( btn, item->id() );
484         CONNECT( btn, clicked( ), mapper, map( ) );
485
486         bold = false;
487
488         if( i.isValid() ) i = i.parent();
489         else break;
490     }
491 }
492
493 void LocationBar::setRootIndex()
494 {
495     setIndex( QModelIndex() );
496 }
497
498 void LocationBar::invoke( int i_id )
499 {
500     QModelIndex index = model->index( i_id, 0 );
501     setIndex( index );
502     emit invoked ( index );
503 }
504
505 LocationButton::LocationButton( const QString &text, bool bold, bool arrow )
506   : b_arrow( arrow )
507 {
508     QFont font;
509     font.setBold( bold );
510     setFont( font );
511     setText( text );
512 }
513
514 #define PADDING 4
515
516 void LocationButton::paintEvent ( QPaintEvent * event )
517 {
518     QStyleOptionButton option;
519     option.initFrom( this );
520     //option.rect = rect();
521     //option.features = QStyleOptionButton::Flat;
522     option.state |= QStyle::State_Enabled;
523     //option.state |= isChecked() ? QStyle::State_On : QStyle::State_Off;
524     //if( isDown() ) option.state |= QStyle::State_Sunken;
525     QPainter p( this );
526
527     if( underMouse() )
528         style()->drawControl( QStyle::CE_PushButtonBevel, &option, &p );
529
530     int margin = style()->pixelMetric(QStyle::PM_DefaultFrameWidth,0,this) + PADDING;
531
532     QRect rect = option.rect.adjusted( b_arrow ? 15 + margin : margin, 0, margin * -1, 0 );
533     p.drawText( rect, Qt::AlignVCenter,
534                 fontMetrics().elidedText( text(), Qt::ElideRight, rect.width() ) );
535
536     if( b_arrow )
537     {
538         option.rect.setX( margin );
539         option.rect.setWidth( 8 );
540         style()->drawPrimitive( QStyle::PE_IndicatorArrowRight, &option, &p );
541     }
542 }
543
544 QSize LocationButton::sizeHint() const
545 {
546     int frameWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth,0,this);
547     QSize s( fontMetrics().boundingRect( text() ).size() );
548     s.setWidth( s.width() + ( 2 * frameWidth ) + ( 2 * PADDING ) + ( b_arrow ? 15 : 0 ) );
549     s.setHeight( QPushButton::sizeHint().height() );
550     return s;
551 }
552
553 #undef PADDING