]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/playlist.cpp
Qt: reinstate the small QSplitter on Mac for the playlist
[vlc] / modules / gui / qt4 / components / playlist / playlist.cpp
1 /*****************************************************************************
2  * playlist.cpp : Custom widgets for the playlist
3  ****************************************************************************
4  * Copyright © 2007-2010 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste 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 "components/playlist/playlist.hpp"
30 #include "components/playlist/standardpanel.hpp"  /* MainView */
31 #include "components/playlist/selector.hpp"       /* PLSelector */
32 #include "components/playlist/playlist_model.hpp" /* PLModel */
33 #include "components/interface_widgets.hpp"       /* CoverArtLabel */
34
35 #include "util/searchlineedit.hpp"
36
37 #include "input_manager.hpp"                      /* art signal */
38 #include "main_interface.hpp"                     /* DropEvent TODO remove this*/
39
40 #include <QMenu>
41 #include <QSignalMapper>
42
43 /**********************************************************************
44  * Playlist Widget. The embedded playlist
45  **********************************************************************/
46
47 PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget *_par )
48                : QWidget( _par ), p_intf ( _p_i )
49 {
50
51     setContentsMargins( 0, 3, 0, 3 );
52
53     QGridLayout *layout = new QGridLayout( this );
54     layout->setMargin( 0 ); layout->setSpacing( 0 );
55
56     /*******************
57      * Left            *
58      *******************/
59     /* We use a QSplitter for the left part */
60     leftSplitter = new QSplitter( Qt::Vertical, this );
61
62     /* Source Selector */
63     PLSelector *selector = new PLSelector( this, p_intf );
64     leftSplitter->addWidget( selector);
65
66     /* Create a Container for the Art Label
67        in order to have a beautiful resizing for the selector above it */
68     QWidget *artContainer = new QWidget;
69     QHBoxLayout *artContLay = new QHBoxLayout( artContainer );
70     artContLay->setMargin( 0 );
71     artContLay->setSpacing( 0 );
72     artContainer->setMaximumHeight( 128 );
73
74     /* Art label */
75     CoverArtLabel *art = new CoverArtLabel( artContainer, p_intf );
76     art->setToolTip( qtr( "Double click to get media information" ) );
77     artContLay->addWidget( art, 1 );
78
79     CONNECT( THEMIM->getIM(), artChanged( QString ),
80              art, showArtUpdate( const QString& ) );
81
82     leftSplitter->addWidget( artContainer );
83
84     /*******************
85      * Right           *
86      *******************/
87     /* Initialisation of the playlist */
88     playlist_t * p_playlist = THEPL;
89     PL_LOCK;
90     playlist_item_t *p_root = THEPL->p_playing;
91     PL_UNLOCK;
92
93     setMinimumWidth( 350 );
94
95     PLModel *model = new PLModel( p_playlist, p_intf, p_root, this );
96     mainView = new StandardPLPanel( this, p_intf, p_root, selector, model );
97
98     /* Location Bar */
99     locationBar = new LocationBar( model );
100     locationBar->setSizePolicy( QSizePolicy::Ignored, QSizePolicy::Preferred );
101     layout->addWidget( locationBar, 0, 0, 1, 2 );
102     layout->setColumnStretch( 0, 5 );
103     CONNECT( locationBar, invoked( const QModelIndex & ),
104              mainView, browseInto( const QModelIndex & ) );
105
106     /* Button to switch views */
107     QToolButton *viewButton = new QToolButton( this );
108     viewButton->setIcon( style()->standardIcon( QStyle::SP_FileDialogDetailedView ) );
109     viewButton->setToolTip( qtr("Change playlistview") );
110     layout->addWidget( viewButton, 0, 2 );
111
112     /* View selection menu */
113     QSignalMapper *viewSelectionMapper = new QSignalMapper( this );
114     CONNECT( viewSelectionMapper, mapped( int ), mainView, showView( int ) );
115
116     QActionGroup *actionGroup = new QActionGroup( this );
117
118     for( int i = 0; i < StandardPLPanel::VIEW_COUNT; i++ )
119     {
120         viewActions[i] = actionGroup->addAction( viewNames[i] );
121         viewActions[i]->setCheckable( true );
122         viewSelectionMapper->setMapping( viewActions[i], i );
123         CONNECT( viewActions[i], triggered(), viewSelectionMapper, map() );
124     }
125     viewActions[0]->setChecked( true );
126
127     QMenu *viewMenu = new QMenu( viewButton );
128     viewMenu->addActions( actionGroup->actions() );
129     viewButton->setMenu( viewMenu );
130     CONNECT( viewButton, clicked(), mainView, cycleViews() );
131
132     /* Search */
133     searchEdit = new SearchLineEdit( this );
134     searchEdit->setMaximumWidth( 250 );
135     searchEdit->setMinimumWidth( 80 );
136     layout->addWidget( searchEdit, 0, 3 );
137     CONNECT( searchEdit, textEdited( const QString& ),
138              mainView, search( const QString& ) );
139     CONNECT( searchEdit, searchDelayedChanged( const QString& ),
140              mainView, searchDelayed( const QString & ) );
141     CONNECT( mainView, viewChanged( const QModelIndex& ),
142              this, changeView( const QModelIndex &) );
143     layout->setColumnStretch( 3, 3 );
144
145     /* Connect the activation of the selector to a redefining of the PL */
146     DCONNECT( selector, activated( playlist_item_t * ),
147               mainView, setRoot( playlist_item_t * ) );
148
149
150     split = new PlaylistSplitter( this );
151
152     /* Add the two sides of the QSplitter */
153     split->addWidget( leftSplitter );
154     split->addWidget( mainView );
155
156     QList<int> sizeList;
157     sizeList << 180 << 420 ;
158     split->setSizes( sizeList );
159     split->setStretchFactor( 0, 0 );
160     split->setStretchFactor( 1, 3 );
161     split->setCollapsible( 1, false );
162     leftSplitter->setMaximumWidth( 250 );
163
164     /* In case we want to keep the splitter information */
165     // components shall never write there setting to a fixed location, may infer
166     // with other uses of the same component...
167     getSettings()->beginGroup("Playlist");
168     split->restoreState( getSettings()->value("splitterSizes").toByteArray());
169     leftSplitter->restoreState( getSettings()->value("leftSplitterGeometry").toByteArray() );
170     getSettings()->endGroup();
171
172     layout->addWidget( split, 1, 0, 1, -1 );
173     setAcceptDrops( true );
174     setWindowTitle( qtr( "Playlist" ) );
175     setWindowRole( "vlc-playlist" );
176     setWindowIcon( QApplication::windowIcon() );
177 }
178
179 PlaylistWidget::~PlaylistWidget()
180 {
181     getSettings()->beginGroup("Playlist");
182     getSettings()->setValue( "splitterSizes", split->saveState() );
183     getSettings()->setValue( "leftSplitterGeometry", leftSplitter->saveState() );
184     getSettings()->endGroup();
185     msg_Dbg( p_intf, "Playlist Destroyed" );
186 }
187
188 void PlaylistWidget::dropEvent( QDropEvent *event )
189 {
190     if( p_intf->p_sys->p_mi )
191         p_intf->p_sys->p_mi->dropEventPlay( event, false );
192 }
193 void PlaylistWidget::dragEnterEvent( QDragEnterEvent *event )
194 {
195     event->acceptProposedAction();
196 }
197
198 void PlaylistWidget::closeEvent( QCloseEvent *event )
199 {
200     if( THEDP->isDying() )
201     {
202         p_intf->p_sys->p_mi->playlistVisible = true;
203         event->accept();
204     }
205     else
206     {
207         p_intf->p_sys->p_mi->playlistVisible = false;
208         hide();
209         event->ignore();
210     }
211 }
212
213 void PlaylistWidget::forceHide()
214 {
215     leftSplitter->hide();
216     mainView->hide();
217     updateGeometry();
218 }
219
220 void PlaylistWidget::forceShow()
221 {
222     leftSplitter->show();
223     mainView->show();
224     updateGeometry();
225 }
226
227 void PlaylistWidget::changeView( const QModelIndex& index )
228 {
229     searchEdit->clear();
230     locationBar->setIndex( index );
231     int i = mainView->getViewNumber();
232     viewActions[i]->setChecked(true);
233 }
234
235 #include <QSignalMapper>
236 #include <QMenu>
237 #include <QPainter>
238 LocationBar::LocationBar( PLModel *m )
239 {
240     model = m;
241     mapper = new QSignalMapper( this );
242     CONNECT( mapper, mapped( int ), this, invoke( int ) );
243
244     btnMore = new LocationButton( "...", false, true, this );
245     menuMore = new QMenu( this );
246     btnMore->setMenu( menuMore );
247 }
248
249 void LocationBar::setIndex( const QModelIndex &index )
250 {
251     qDeleteAll( buttons );
252     buttons.clear();
253     qDeleteAll( actions );
254     actions.clear();
255
256     QModelIndex i = index;
257     bool first = true;
258
259     while( true )
260     {
261         PLItem *item = model->getItem( i );
262
263         char *fb_name = input_item_GetTitleFbName( item->inputItem() );
264         QString text = qfu(fb_name);
265         free(fb_name);
266
267         QAbstractButton *btn = new LocationButton( text, first, !first, this );
268         btn->setSizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
269         buttons.append( btn );
270
271         QAction *action = new QAction( text, this );
272         actions.append( action );
273         CONNECT( btn, clicked(), action, trigger() );
274
275         mapper->setMapping( action, item->id() );
276         CONNECT( action, triggered(), mapper, map() );
277
278         first = false;
279
280         if( i.isValid() ) i = i.parent();
281         else break;
282     }
283
284     QString prefix;
285     for( int a = actions.count() - 1; a >= 0 ; a-- )
286     {
287         actions[a]->setText( prefix + actions[a]->text() );
288         prefix += QString("  ");
289     }
290
291     if( isVisible() ) layOut( size() );
292 }
293
294 void LocationBar::setRootIndex()
295 {
296     setIndex( QModelIndex() );
297 }
298
299 void LocationBar::invoke( int i_id )
300 {
301     QModelIndex index = model->index( i_id, 0 );
302     emit invoked ( index );
303 }
304
305 void LocationBar::layOut( const QSize& size )
306 {
307     menuMore->clear();
308     widths.clear();
309
310     int count = buttons.count();
311     int totalWidth = 0;
312     for( int i = 0; i < count; i++ )
313     {
314         int w = buttons[i]->sizeHint().width();
315         widths.append( w );
316         totalWidth += w;
317         if( totalWidth > size.width() ) break;
318     }
319
320     int x = 0;
321     int shown = widths.count();
322
323     if( totalWidth > size.width() && count > 1 )
324     {
325         QSize sz = btnMore->sizeHint();
326         btnMore->setGeometry( 0, 0, sz.width(), size.height() );
327         btnMore->show();
328         x = sz.width();
329         totalWidth += x;
330     }
331     else
332     {
333         btnMore->hide();
334     }
335     for( int i = count - 1; i >= 0; i-- )
336     {
337         if( totalWidth <= size.width() || i == 0)
338         {
339             buttons[i]->setGeometry( x, 0, qMin( size.width() - x, widths[i] ), size.height() );
340             buttons[i]->show();
341             x += widths[i];
342             totalWidth -= widths[i];
343         }
344         else
345         {
346             menuMore->addAction( actions[i] );
347             buttons[i]->hide();
348             if( i < shown ) totalWidth -= widths[i];
349         }
350     }
351 }
352
353 void LocationBar::resizeEvent ( QResizeEvent * event )
354 {
355     layOut( event->size() );
356 }
357
358 QSize LocationBar::sizeHint() const
359 {
360     return btnMore->sizeHint();
361 }
362
363 LocationButton::LocationButton( const QString &text, bool bold,
364                                 bool arrow, QWidget * parent )
365   : b_arrow( arrow ), QPushButton( parent )
366 {
367     QFont font;
368     font.setBold( bold );
369     setFont( font );
370     setText( text );
371 }
372
373 #define PADDING 4
374
375 void LocationButton::paintEvent ( QPaintEvent * event )
376 {
377     QStyleOptionButton option;
378     option.initFrom( this );
379     option.state |= QStyle::State_Enabled;
380     QPainter p( this );
381
382     if( underMouse() )
383     {
384         p.save();
385         p.setRenderHint( QPainter::Antialiasing, true );
386         QColor c = palette().color( QPalette::Highlight );
387         p.setPen( c );
388         p.setBrush( c.lighter( 150 ) );
389         p.setOpacity( 0.2 );
390         p.drawRoundedRect( option.rect.adjusted( 0, 2, 0, -2 ), 5, 5 );
391         p.restore();
392     }
393
394     QRect r = option.rect.adjusted( PADDING, 0, -PADDING - (b_arrow ? 10 : 0), 0 );
395
396     QString str( text() );
397     /* This check is absurd, but either it is not done properly inside elidedText(),
398        or boundingRect() is wrong */
399     if( r.width() < fontMetrics().boundingRect( text() ).width() )
400         str = fontMetrics().elidedText( text(), Qt::ElideRight, r.width() );
401     p.drawText( r, Qt::AlignVCenter | Qt::AlignLeft, str );
402
403     if( b_arrow )
404     {
405         option.rect.setWidth( 10 );
406         option.rect.moveRight( rect().right() );
407         style()->drawPrimitive( QStyle::PE_IndicatorArrowRight, &option, &p );
408     }
409 }
410
411 QSize LocationButton::sizeHint() const
412 {
413     QSize s( fontMetrics().boundingRect( text() ).size() );
414     /* Add two pixels to width: font metrics are buggy, if you pass text through elidation
415        with exactly the width of its bounding rect, sometimes it still elides */
416     s.setWidth( s.width() + ( 2 * PADDING ) + ( b_arrow ? 10 : 0 ) + 2 );
417     s.setHeight( s.height() + 2 * PADDING );
418     return s;
419 }
420
421 #undef PADDING
422
423 #ifdef Q_WS_MAC
424 QSplitterHandle *PlaylistSplitter::createHandle()
425 {
426     return new SplitterHandle( orientation(), this );
427 }
428
429 SplitterHandle::SplitterHandle( Qt::Orientation orientation, QSplitter * parent )
430                : QSplitterHandle( orientation, parent)
431 {
432 };
433
434 QSize SplitterHandle::sizeHint() const
435 {
436     return (orientation() == Qt::Horizontal) ? QSize( 1, height() ) : QSize( width(), 1 );
437 }
438
439 void SplitterHandle::paintEvent(QPaintEvent *event)
440 {
441     QPainter painter( this );
442     painter.fillRect( event->rect(), QColor(81, 81, 81) );
443 }
444 #endif /* __APPLE__ */