]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/standardpanel.cpp
8023740480e4b84acc1c5acdb85fdae89fa3af68
[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
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 "qt4.hpp"
30 #include "dialogs_provider.hpp"
31
32 #include "components/playlist/playlist_model.hpp"
33 #include "components/playlist/standardpanel.hpp"
34 #include "util/customwidgets.hpp"
35
36 #include <vlc_intf_strings.h>
37
38 #include <QPushButton>
39 #include <QHBoxLayout>
40 #include <QVBoxLayout>
41 #include <QHeaderView>
42 #include <QKeyEvent>
43 #include <QModelIndexList>
44 #include <QLabel>
45 #include <QSpacerItem>
46 #include <QMenu>
47 #include <QSignalMapper>
48 #include <assert.h>
49
50 #include "sorting.h"
51
52 StandardPLPanel::StandardPLPanel( PlaylistWidget *_parent,
53                                   intf_thread_t *_p_intf,
54                                   playlist_t *p_playlist,
55                                   playlist_item_t *p_root ):
56                                   QWidget( _parent ), p_intf( _p_intf )
57 {
58     QGridLayout *layout = new QGridLayout( this );
59     layout->setSpacing( 0 ); layout->setMargin( 0 );
60
61     model = new PLModel( p_playlist, p_intf, p_root, this );
62
63     /* Create and configure the QTreeView */
64     view = new QVLCTreeView;
65     view->setModel( model );
66
67     view->setIconSize( QSize( 20, 20 ) );
68     view->setAlternatingRowColors( true );
69     view->setAnimated( true );
70     view->setUniformRowHeights( true );
71     view->setSortingEnabled( true );
72     view->header()->setSortIndicator( -1 , Qt::AscendingOrder );
73     view->header()->setSortIndicatorShown( true );
74     view->header()->setClickable( true );
75     view->header()->setContextMenuPolicy( Qt::CustomContextMenu );
76
77     view->setSelectionBehavior( QAbstractItemView::SelectRows );
78     view->setSelectionMode( QAbstractItemView::ExtendedSelection );
79     view->setDragEnabled( true );
80     view->setAcceptDrops( true );
81     view->setDropIndicatorShown( true );
82
83     /* Saved Settings */
84     getSettings()->beginGroup("Playlist");
85     if( getSettings()->contains( "headerStateV2" ) )
86     {
87         view->header()->restoreState(
88                 getSettings()->value( "headerStateV2" ).toByteArray() );
89     }
90     else
91     {
92         for( int m = 1, c = 0; m != COLUMN_END; m <<= 1, c++ )
93         {
94             view->setColumnHidden( c, !( m & COLUMN_DEFAULT ) );
95             if( m == COLUMN_TITLE ) view->header()->resizeSection( c, 200 );
96             else if( m == COLUMN_DURATION ) view->header()->resizeSection( c, 80 );
97         }
98     }
99     getSettings()->endGroup();
100
101     /* Connections for the TreeView */
102     CONNECT( view, activated( const QModelIndex& ) ,
103              model,activateItem( const QModelIndex& ) );
104     CONNECT( view, rightClicked( QModelIndex , QPoint ),
105              this, doPopup( QModelIndex, QPoint ) );
106     CONNECT( view->header(), customContextMenuRequested( const QPoint & ),
107              this, popupSelectColumn( QPoint ) );
108     CONNECT( model, currentChanged( const QModelIndex& ),
109              this, handleExpansion( const QModelIndex& ) );
110
111     currentRootId = -1;
112
113     /* Title label */
114     title = new QLabel;
115     QFont titleFont;
116     titleFont.setPointSize( titleFont.pointSize() + 6 );
117     titleFont.setFamily( "Verdana" );
118     title->setFont( titleFont );
119     layout->addWidget( title, 0, 0 );
120
121     /* A Spacer and the search possibilities */
122     layout->setRowStretch( 1, 10 );
123
124     SearchLineEdit *search = new SearchLineEdit( this );
125     layout->addWidget( search, 0, 4 );
126     CONNECT( search, textChanged( const QString& ), this, search( const QString& ) );
127
128     /* Add item to the playlist button */
129     addButton = new QPushButton;
130     addButton->setIcon( QIcon( ":/buttons/playlist/playlist_add" ) );
131     addButton->setMaximumWidth( 30 );
132     BUTTONACT( addButton, popupAdd() );
133     layout->addWidget( addButton, 0, 2 );
134
135     /* Finish the layout */
136     layout->addWidget( view, 1, 0, 1, -1 );
137
138     selectColumnsSigMapper = new QSignalMapper( this );
139     CONNECT( selectColumnsSigMapper, mapped( int ), this, toggleColumnShown( int ) );
140 }
141
142 StandardPLPanel::~StandardPLPanel()
143 {
144     getSettings()->beginGroup("Playlist");
145     getSettings()->setValue( "headerStateV2", view->header()->saveState() );
146     getSettings()->endGroup();
147 }
148
149 /* Unused anymore, but might be useful, like in right-click menu */
150 void StandardPLPanel::gotoPlayingItem()
151 {
152     view->scrollTo( model->currentIndex() );
153 }
154
155 void StandardPLPanel::handleExpansion( const QModelIndex& index )
156 {
157     view->scrollTo( index );
158 }
159
160 /* PopupAdd Menu for the Add Menu */
161 void StandardPLPanel::popupAdd()
162 {
163     QMenu popup;
164     if( currentRootId == THEPL->p_local_category->i_id ||
165         currentRootId == THEPL->p_local_onelevel->i_id )
166     {
167         popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT( simplePLAppendDialog()) );
168         popup.addAction( qtr(I_PL_ADDDIR), THEDP, SLOT( PLAppendDir()) );
169         popup.addAction( qtr(I_OP_ADVOP), THEDP, SLOT( PLAppendDialog()) );
170     }
171     else if( ( THEPL->p_ml_category &&
172                 currentRootId == THEPL->p_ml_category->i_id ) ||
173              ( THEPL->p_ml_onelevel &&
174                 currentRootId == THEPL->p_ml_onelevel->i_id ) )
175     {
176         popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT( simpleMLAppendDialog()) );
177         popup.addAction( qtr(I_PL_ADDDIR), THEDP, SLOT( MLAppendDir() ) );
178         popup.addAction( qtr(I_OP_ADVOP), THEDP, SLOT( MLAppendDialog() ) );
179     }
180
181     popup.exec( QCursor::pos() - addButton->mapFromGlobal( QCursor::pos() )
182                         + QPoint( 0, addButton->height() ) );
183 }
184
185 void StandardPLPanel::popupSelectColumn( QPoint pos )
186 {
187     QMenu menu;
188
189     /* We do not offer the option to hide index 0 column, or
190     * QTreeView will behave weird */
191     int i, j;
192     for( i = 1 << 1, j = 1; i < COLUMN_END; i <<= 1, j++ )
193     {
194         QAction* option = menu.addAction(
195             qfu( psz_column_title( i ) ) );
196         option->setCheckable( true );
197         option->setChecked( !view->isColumnHidden( j ) );
198         selectColumnsSigMapper->setMapping( option, j );
199         CONNECT( option, triggered(), selectColumnsSigMapper, map() );
200     }
201     menu.exec( QCursor::pos() );
202 }
203
204 void StandardPLPanel::toggleColumnShown( int i )
205 {
206     view->setColumnHidden( i, !view->isColumnHidden( i ) );
207 }
208
209 /* Search in the playlist */
210 void StandardPLPanel::search( const QString& searchText )
211 {
212     model->search( searchText );
213 }
214
215 void StandardPLPanel::doPopup( QModelIndex index, QPoint point )
216 {
217     QItemSelectionModel *selection = view->selectionModel();
218     QModelIndexList list = selection->selectedIndexes();
219     model->popup( index, point, list );
220 }
221
222 /* Set the root of the new Playlist */
223 /* This activated by the selector selection */
224 void StandardPLPanel::setRoot( playlist_item_t *p_item )
225 {
226     QPL_LOCK;
227     assert( p_item );
228
229     playlist_item_t *p_pref_item = playlist_GetPreferredNode( THEPL, p_item );
230     if( p_pref_item ) p_item = p_pref_item;
231
232     /* needed for popupAdd() */
233     currentRootId = p_item->i_id;
234
235     /* cosmetics, ..still need playlist locking.. */
236     char *psz_title = input_item_GetName( p_item->p_input );
237     title->setText( qfu(psz_title) );
238     free( psz_title );
239
240     QPL_UNLOCK;
241
242     /* do THE job */
243     model->rebuild( p_item );
244
245     /* enable/disable adding */
246     if( p_item == THEPL->p_local_category ||
247         p_item == THEPL->p_local_onelevel )
248     {
249         addButton->setEnabled( true );
250         addButton->setToolTip( qtr(I_PL_ADDPL) );
251     }
252     else if( ( THEPL->p_ml_category && p_item == THEPL->p_ml_category) ||
253               ( THEPL->p_ml_onelevel && p_item == THEPL->p_ml_onelevel ) )
254     {
255         addButton->setEnabled( true );
256         addButton->setToolTip( qtr(I_PL_ADDML) );
257     }
258     else
259         addButton->setEnabled( false );
260 }
261
262 void StandardPLPanel::removeItem( int i_id )
263 {
264     model->removeItem( i_id );
265 }
266
267 /* Delete and Suppr key remove the selection
268    FilterKey function and code function */
269 void StandardPLPanel::keyPressEvent( QKeyEvent *e )
270 {
271     switch( e->key() )
272     {
273     case Qt::Key_Back:
274     case Qt::Key_Delete:
275         deleteSelection();
276         break;
277     }
278 }
279
280 void StandardPLPanel::deleteSelection()
281 {
282     QItemSelectionModel *selection = view->selectionModel();
283     QModelIndexList list = selection->selectedIndexes();
284     model->doDelete( list );
285 }
286