]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/standardpanel.cpp
Some cleanup here and there
[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 "playlist_model.hpp"
26 #include "components/playlist/panels.hpp"
27 #include "util/customwidgets.hpp"
28
29 #include <QTreeView>
30 #include <QPushButton>
31 #include <QHBoxLayout>
32 #include <QVBoxLayout>
33 #include <QHeaderView>
34 #include <QKeyEvent>
35 #include <QModelIndexList>
36 #include <QToolBar>
37 #include <QLabel>
38 #include <QSpacerItem>
39
40 #include <assert.h>
41
42 StandardPLPanel::StandardPLPanel( QWidget *_parent, intf_thread_t *_p_intf,
43                                   playlist_t *p_playlist,
44                                   playlist_item_t *p_root ):
45                                   PLPanel( _parent, _p_intf )
46 {
47     model = new PLModel( p_playlist, p_root, -1, this );
48     view = new QVLCTreeView( 0 );
49     view->setModel(model);
50     view->setIconSize( QSize(20,20) );
51     view->setAlternatingRowColors( true );
52     view->header()->resizeSection( 0, 230 );
53     view->header()->setSortIndicatorShown( true );
54     view->header()->setClickable( true );
55     view->setSelectionMode( QAbstractItemView::ExtendedSelection );
56
57     CONNECT( view, activated( const QModelIndex& ) ,
58              model,activateItem( const QModelIndex& ) );
59     CONNECT( view, rightClicked( QModelIndex , QPoint ),
60              this, doPopup( QModelIndex, QPoint ) );
61     CONNECT( model, dataChanged( const QModelIndex&, const QModelIndex& ),
62              this, handleExpansion( const QModelIndex& ) );
63
64     QVBoxLayout *layout = new QVBoxLayout();
65     layout->setSpacing( 0 ); layout->setMargin( 0 );
66
67     QHBoxLayout *buttons = new QHBoxLayout();
68
69     repeatButton = new QPushButton( 0 ); buttons->addWidget( repeatButton );
70     if( model->hasRepeat() ) repeatButton->setText( qtr( "Repeat One" ) );
71     else if( model->hasLoop() ) repeatButton->setText( qtr( "Repeat All" ) );
72     else repeatButton->setText( qtr( "No Repeat" ) );
73     connect( repeatButton, SIGNAL( clicked() ), this, SLOT( toggleRepeat() ));
74
75     randomButton = new QPushButton( 0 ); buttons->addWidget( randomButton );
76     if( model->hasRandom() ) randomButton->setText( qtr( "Random" ) );
77     else randomButton->setText( qtr( "No random" ) );
78     connect( randomButton, SIGNAL( clicked() ), this, SLOT( toggleRandom() ));
79
80     QSpacerItem *spacer = new QSpacerItem( 10, 20 );buttons->addItem( spacer );
81
82     QLabel *filter = new QLabel( qfu( "&Search:" ) + " " );
83     buttons->addWidget( filter );
84     searchLine = new  ClickLineEdit( qfu( "Playlist filter" ), 0 );
85     connect( searchLine, SIGNAL( textChanged(QString) ),
86              this, SLOT( search(QString)) );
87     buttons->addWidget( searchLine ); filter->setBuddy( searchLine );
88
89     QPushButton *clear = new QPushButton( qfu( "CL") );
90     buttons->addWidget( clear );
91     connect( clear, SIGNAL( clicked() ), this, SLOT( clearFilter() ) );
92
93     layout->addWidget( view );
94     layout->addLayout( buttons );
95 //    layout->addWidget( bar );
96     setLayout( layout );
97 }
98
99 void StandardPLPanel::toggleRepeat()
100 {
101     if( model->hasRepeat() )
102     {
103         model->setRepeat( false ); model->setLoop( true );
104         repeatButton->setText( qtr( "Repeat All" ) );
105     }
106     else if( model->hasLoop() )
107     {
108         model->setRepeat( false ) ; model->setLoop( false );
109         repeatButton->setText( qtr( "No Repeat" ) );
110     }
111     else
112     {
113         model->setRepeat( true );
114         repeatButton->setText( qtr( "Repeat One" ) );
115     }
116 }
117
118 void StandardPLPanel::toggleRandom()
119 {
120     bool prev = model->hasRandom();
121     model->setRandom( !prev );
122     randomButton->setText( prev ? qtr( "No Random" ) : qtr( "Random" ) );
123 }
124
125 void StandardPLPanel::handleExpansion( const QModelIndex &index )
126 {
127     QModelIndex parent;
128     if( model->isCurrent( index ) )
129     {
130         parent = index;
131         while( parent.isValid() )
132         {
133             view->setExpanded( parent, true );
134             parent = model->parent( parent );
135         }
136     }
137 }
138
139 void StandardPLPanel::clearFilter()
140 {
141     searchLine->setText( "" );
142 }
143
144 void StandardPLPanel::search( QString searchText )
145 {
146     model->search( searchText );
147 }
148
149 void StandardPLPanel::doPopup( QModelIndex index, QPoint point )
150 {
151     if( !index.isValid() ) return;
152     QItemSelectionModel *selection = view->selectionModel();
153     QModelIndexList list = selection->selectedIndexes();
154     model->popup( index, point, list );
155 }
156
157 void StandardPLPanel::setRoot( int i_root_id )
158 {
159     playlist_item_t *p_item = playlist_ItemGetById( THEPL, i_root_id );
160     assert( p_item );
161     p_item = playlist_GetPreferredNode( THEPL, p_item );
162     assert( p_item );
163     model->rebuild( p_item );
164 }
165
166 void StandardPLPanel::keyPressEvent( QKeyEvent *e )
167 {
168     switch( e->key() )
169     {
170     case Qt::Key_Back:
171     case Qt::Key_Delete:
172         deleteSelection();
173         break;
174     }
175 }
176
177 void StandardPLPanel::deleteSelection()
178 {
179     QItemSelectionModel *selection = view->selectionModel();
180     QModelIndexList list = selection->selectedIndexes();
181     model->doDelete( list );
182 }
183
184 StandardPLPanel::~StandardPLPanel()
185 {}