]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/standardpanel.cpp
qt4: removes useless functionnality. fix #1330
[vlc] / modules / gui / qt4 / components / playlist / standardpanel.cpp
1 /*****************************************************************************
2  * standardpanel.cpp : The "standard" playlist panel : just a treeview
3  ****************************************************************************
4  * Copyright (C) 2000-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include "qt4.hpp"
25 #include "dialogs_provider.hpp"
26 #include "playlist_model.hpp"
27 #include "components/playlist/panels.hpp"
28 #include "util/customwidgets.hpp"
29
30 #include <vlc_intf_strings.h>
31
32 #include <QTreeView>
33 #include <QPushButton>
34 #include <QHBoxLayout>
35 #include <QVBoxLayout>
36 #include <QHeaderView>
37 #include <QKeyEvent>
38 #include <QModelIndexList>
39 #include <QToolBar>
40 #include <QLabel>
41 #include <QSpacerItem>
42 #include <QMenu>
43
44 #include <assert.h>
45
46 StandardPLPanel::StandardPLPanel( PlaylistWidget *_parent,
47                                   intf_thread_t *_p_intf,
48                                   playlist_t *p_playlist,
49                                   playlist_item_t *p_root ):
50                                   PLPanel( _parent, _p_intf )
51 {
52     model = new PLModel( p_playlist, p_intf, p_root, -1, this );
53  
54     /* Create and configure the QTreeView */
55     view = new QVLCTreeView( 0 );
56     view->setModel(model);
57     view->setIconSize( QSize(20,20) );
58     view->setAlternatingRowColors( true );
59     view->setAnimated( true );
60     view->setSortingEnabled( true );    
61     view->setSelectionMode( QAbstractItemView::ExtendedSelection );
62     view->setDragEnabled( true );
63     view->setAcceptDrops( true );
64     view->setDropIndicatorShown( true );
65     view->setAutoScroll( true );
66  
67     view->header()->resizeSection( 0, 230 );
68     view->header()->resizeSection( 1, 170 );
69     view->header()->setSortIndicatorShown( true );
70     view->header()->setClickable( true );
71     view->header()->setContextMenuPolicy( Qt::CustomContextMenu );
72  
73     CONNECT( view, activated( const QModelIndex& ) ,
74              model,activateItem( const QModelIndex& ) );
75     CONNECT( view, rightClicked( QModelIndex , QPoint ),
76              this, doPopup( QModelIndex, QPoint ) );
77     CONNECT( model, dataChanged( const QModelIndex&, const QModelIndex& ),
78              this, handleExpansion( const QModelIndex& ) );
79     CONNECT( view->header(), customContextMenuRequested( const QPoint & ),
80              this, popupSelectColumn( QPoint ) );
81
82     currentRootId = -1;
83     CONNECT( parent, rootChanged(int), this, setCurrentRootId( int ) );
84
85     QVBoxLayout *layout = new QVBoxLayout();
86     layout->setSpacing( 0 ); layout->setMargin( 0 );
87
88     /* Buttons configuration */
89     QHBoxLayout *buttons = new QHBoxLayout();
90  
91     addButton = new QPushButton( QIcon( ":/pixmaps/playlist_add.png" ), "", this );
92     addButton->setMaximumWidth( 25 );
93     BUTTONACT( addButton, popupAdd() );
94     buttons->addWidget( addButton );
95
96     randomButton = new QPushButton( this );
97     if( model->hasRandom() )
98     {
99         randomButton->setIcon( QIcon( ":/pixmaps/playlist_shuffle_on.png" ));
100         randomButton->setToolTip( qtr( I_PL_RANDOM ));
101     }
102     else
103     {
104          randomButton->setIcon( QIcon( ":/pixmaps/playlist_shuffle_off.png" ) );
105          randomButton->setToolTip( qtr( I_PL_NORANDOM ));
106     }
107     BUTTONACT( randomButton, toggleRandom() );
108     buttons->addWidget( randomButton );
109
110     QSpacerItem *spacer = new QSpacerItem( 10, 20 );
111     buttons->addItem( spacer );
112
113     repeatButton = new QPushButton( this );
114     if( model->hasRepeat() ) 
115     {
116         repeatButton->setIcon( QIcon( ":/pixmaps/playlist_repeat_one.png" ) );
117         repeatButton->setToolTip( qtr( I_PL_REPEAT ));
118     }
119     else if( model->hasLoop() )
120     {
121         repeatButton->setIcon( QIcon( ":/pixmaps/playlist_repeat_all.png" ) );
122         repeatButton->setToolTip( qtr( I_PL_LOOP ));
123     }   
124     else
125     {
126         repeatButton->setIcon( QIcon( ":/pixmaps/playlist_repeat_off.png" ) );
127         repeatButton->setToolTip( qtr( I_PL_NOREPEAT ));
128     }   
129     BUTTONACT( repeatButton, toggleRepeat() );
130     buttons->addWidget( repeatButton );
131
132
133     QLabel *filter = new QLabel( qtr(I_PL_SEARCH) + " " );
134     buttons->addWidget( filter );
135     searchLine = new  ClickLineEdit( qtr(I_PL_FILTER), 0 );
136     CONNECT( searchLine, textChanged(QString), this, search(QString));
137     buttons->addWidget( searchLine ); filter->setBuddy( searchLine );
138
139     QPushButton *clear = new QPushButton( qfu( "CL") );
140     clear->setMaximumWidth( 30 );
141     clear->setToolTip( qtr( "Clear" ));
142     BUTTONACT( clear, clearFilter() );
143     buttons->addWidget( clear );
144
145     layout->addWidget( view );
146     layout->addLayout( buttons );
147 //    layout->addWidget( bar );
148     setLayout( layout );
149 }
150
151 void StandardPLPanel::toggleRepeat()
152 {
153     if( model->hasRepeat() )
154     {
155         model->setRepeat( false ); model->setLoop( true );
156         repeatButton->setIcon( QIcon( ":/pixmaps/playlist_repeat_all.png" ) );
157         repeatButton->setToolTip( qtr( I_PL_LOOP ));
158     }
159     else if( model->hasLoop() )
160     {
161         model->setRepeat( false ) ; model->setLoop( false );
162         repeatButton->setIcon( QIcon( ":/pixmaps/playlist_repeat_off.png" ) );
163         repeatButton->setToolTip( qtr( I_PL_NOREPEAT ));
164     }
165     else
166     {
167         model->setRepeat( true );
168         repeatButton->setIcon( QIcon( ":/pixmaps/playlist_repeat_one.png" ) );
169         repeatButton->setToolTip( qtr( I_PL_REPEAT ));
170     }
171 }
172
173 void StandardPLPanel::toggleRandom()
174 {
175     bool prev = model->hasRandom();
176     model->setRandom( !prev );
177     randomButton->setIcon( prev ?
178                 QIcon( ":/pixmaps/playlist_shuffle_off.png" ) :
179                 QIcon( ":/pixmaps/playlist_shuffle_on.png" ) );
180     randomButton->setToolTip( prev ? qtr( I_PL_NORANDOM ) : qtr(I_PL_RANDOM ) );
181 }
182
183 void StandardPLPanel::handleExpansion( const QModelIndex &index )
184 {
185     if( model->isCurrent( index ) )
186         view->scrollTo( index, QAbstractItemView::EnsureVisible );
187 }
188
189 void StandardPLPanel::setCurrentRootId( int _new )
190 {
191     currentRootId = _new;
192     if( currentRootId == THEPL->p_local_category->i_id ||
193         currentRootId == THEPL->p_local_onelevel->i_id  )
194     {
195         addButton->setEnabled( true );
196         addButton->setToolTip( qtr(I_PL_ADDPL) );
197     }
198     else if( ( THEPL->p_ml_category &&
199                         currentRootId == THEPL->p_ml_category->i_id ) ||
200              ( THEPL->p_ml_onelevel &&
201                         currentRootId == THEPL->p_ml_onelevel->i_id ) )
202     {
203         addButton->setEnabled( true );
204         addButton->setToolTip( qtr(I_PL_ADDML) );
205     }
206     else
207         addButton->setEnabled( false );
208 }
209
210 void StandardPLPanel::popupAdd()
211 {
212     QMenu popup;
213     if( currentRootId == THEPL->p_local_category->i_id ||
214         currentRootId == THEPL->p_local_onelevel->i_id )
215     {
216         popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT(simplePLAppendDialog()));
217         popup.addAction( qtr(I_PL_ADVADD), THEDP, SLOT(PLAppendDialog()) );
218         popup.addAction( qtr(I_PL_ADDDIR), THEDP, SLOT( PLAppendDir()) );
219     }
220     else if( ( THEPL->p_ml_category &&
221                 currentRootId == THEPL->p_ml_category->i_id ) ||
222              ( THEPL->p_ml_onelevel &&
223                 currentRootId == THEPL->p_ml_onelevel->i_id ) )
224     {
225         popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT(simpleMLAppendDialog()));
226         popup.addAction( qtr(I_PL_ADVADD), THEDP, SLOT( MLAppendDialog() ) );
227         popup.addAction( qtr(I_PL_ADDDIR), THEDP, SLOT( MLAppendDir() ) );
228     }
229     popup.exec( QCursor::pos() );
230 }
231
232 void StandardPLPanel::popupSelectColumn( QPoint )
233 {
234     ContextUpdateMapper = new QSignalMapper(this);
235
236     QMenu selectColMenu;
237
238 #define ADD_META_ACTION( meta ) { \
239    QAction* option = selectColMenu.addAction( qfu(VLC_META_##meta) );     \
240    option->setCheckable( true );                                           \
241    option->setChecked( model->shownFlags() & VLC_META_ENGINE_##meta );   \
242    ContextUpdateMapper->setMapping( option, VLC_META_ENGINE_##meta );      \
243    CONNECT( option, triggered(), ContextUpdateMapper, map() );             \
244    }
245     CONNECT( ContextUpdateMapper, mapped( int ),  model, viewchanged( int ) );
246
247     ADD_META_ACTION( TITLE );
248     ADD_META_ACTION( ARTIST );
249     ADD_META_ACTION( DURATION );
250     ADD_META_ACTION( COLLECTION );
251     ADD_META_ACTION( GENRE );
252     ADD_META_ACTION( SEQ_NUM );
253     ADD_META_ACTION( RATING );
254     ADD_META_ACTION( DESCRIPTION );
255
256 #undef ADD_META_ACTION
257  
258     selectColMenu.exec( QCursor::pos() );
259  }
260
261 void StandardPLPanel::clearFilter()
262 {
263     searchLine->setText( "" );
264 }
265
266 void StandardPLPanel::search( QString searchText )
267 {
268     model->search( searchText );
269 }
270
271 void StandardPLPanel::doPopup( QModelIndex index, QPoint point )
272 {
273     if( !index.isValid() ) return;
274     QItemSelectionModel *selection = view->selectionModel();
275     QModelIndexList list = selection->selectedIndexes();
276     model->popup( index, point, list );
277 }
278
279 void StandardPLPanel::setRoot( int i_root_id )
280 {
281     playlist_item_t *p_item = playlist_ItemGetById( THEPL, i_root_id,
282                                                     VLC_TRUE );
283     assert( p_item );
284     p_item = playlist_GetPreferredNode( THEPL, p_item );
285     assert( p_item );
286     model->rebuild( p_item );
287 }
288
289 void StandardPLPanel::removeItem( int i_id )
290 {
291     model->removeItem( i_id );
292 }
293
294 void StandardPLPanel::keyPressEvent( QKeyEvent *e )
295 {
296     switch( e->key() )
297     {
298     case Qt::Key_Back:
299     case Qt::Key_Delete:
300         deleteSelection();
301         break;
302     }
303 }
304
305 void StandardPLPanel::deleteSelection()
306 {
307     QItemSelectionModel *selection = view->selectionModel();
308     QModelIndexList list = selection->selectedIndexes();
309     model->doDelete( list );
310 }
311
312 StandardPLPanel::~StandardPLPanel()
313 {}