]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.cpp
595db88625858634014fe29a8dc8b7c5a602148b
[vlc] / modules / gui / qt4 / components / interface_widgets.cpp
1 /*****************************************************************************
2  * interface_widgets.cpp : Custom widgets for the main interface
3  ****************************************************************************
4  * Copyright (C) 2006-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *          Rafaël Carré <funman@videolanorg>
10  *          Ilkka Ollakka <ileoo@videolan.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * ( at your option ) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include "components/interface_widgets.hpp"
32
33 #include "menus.hpp"             /* Popup menu on bgWidget */
34
35 #include <vlc_vout.h>
36
37 #include <QLabel>
38 #include <QToolButton>
39 #include <QPalette>
40 #include <QResizeEvent>
41 #include <QDate>
42 #include <QMenu>
43 #include <QWidgetAction>
44 #include <QDesktopWidget>
45
46 #ifdef Q_WS_X11
47 # include <X11/Xlib.h>
48 # include <qx11info_x11.h>
49 static void videoSync( void )
50 {
51     /* Make sure the X server has processed all requests.
52      * This protects other threads using distinct connections from getting
53      * the video widget window in an inconsistent states. */
54     XSync( QX11Info::display(), False );
55 }
56 #else
57 # define videoSync() (void)0
58 #endif
59
60 #include <math.h>
61
62 class ReparentableWidget : public QWidget
63 {
64 private:
65     VideoWidget *owner;
66 public:
67     ReparentableWidget( VideoWidget *owner ) : owner( owner )
68     {
69     }
70
71 protected:
72     void keyPressEvent( QKeyEvent *e )
73     {
74         emit owner->keyPressed( e );
75     }
76 };
77
78 /**********************************************************************
79  * Video Widget. A simple frame on which video is drawn
80  * This class handles resize issues
81  **********************************************************************/
82
83 VideoWidget::VideoWidget( intf_thread_t *_p_i )
84     : QFrame( NULL )
85       , p_intf( _p_i )
86       , reparentable( NULL )
87 {
88     /* Set the policy to expand in both directions */
89 //    setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
90
91     layout = new QHBoxLayout( this );
92     layout->setContentsMargins( 0, 0, 0, 0 );
93     setLayout( layout );
94 }
95
96 VideoWidget::~VideoWidget()
97 {
98     /* Ensure we are not leaking the video output. This would crash. */
99     assert( reparentable == NULL );
100 }
101
102 /**
103  * Request the video to avoid the conflicts
104  **/
105 WId VideoWidget::request( int *pi_x, int *pi_y,
106                           unsigned int *pi_width, unsigned int *pi_height,
107                           bool b_keep_size )
108 {
109     msg_Dbg( p_intf, "Video was requested %i, %i", *pi_x, *pi_y );
110
111     if( reparentable != NULL )
112     {
113         msg_Dbg( p_intf, "embedded video already in use" );
114         return NULL;
115     }
116     if( b_keep_size )
117     {
118         *pi_width  = size().width();
119         *pi_height = size().height();
120     }
121
122     /* The Qt4 UI needs a fixed a widget ("this"), so that the parent layout is
123      * not messed up when we the video is reparented. Hence, we create an extra
124      * reparentable widget, that will be within the VideoWidget in windowed
125      * mode, and within the root window (NULL parent) in full-screen mode.
126      */
127     reparentable = new ReparentableWidget( this );
128     QLayout *innerLayout = new QHBoxLayout( reparentable );
129     innerLayout->setContentsMargins( 0, 0, 0, 0 );
130
131     /* The owner of the video window needs a stable handle (WinId). Reparenting
132      * in Qt4-X11 changes the WinId of the widget, so we need to create another
133      * dummy widget that stays within the reparentable widget. */
134     QWidget *stable = new QWidget();
135     QPalette plt = palette();
136     plt.setColor( QPalette::Window, Qt::black );
137     stable->setPalette( plt );
138     stable->setAutoFillBackground(true);
139     /* Indicates that the widget wants to draw directly onto the screen.
140        Widgets with this attribute set do not participate in composition
141        management */
142     stable->setAttribute( Qt::WA_PaintOnScreen, true );
143
144     innerLayout->addWidget( stable );
145
146     layout->addWidget( reparentable );
147
148 #ifdef Q_WS_X11
149     /* HACK: Only one X11 client can subscribe to mouse button press events.
150      * VLC currently handles those in the video display.
151      * Force Qt4 to unsubscribe from mouse press and release events. */
152     Display *dpy = QX11Info::display();
153     Window w = stable->winId();
154     XWindowAttributes attr;
155
156     XGetWindowAttributes( dpy, w, &attr );
157     attr.your_event_mask &= ~(ButtonPressMask|ButtonReleaseMask);
158     XSelectInput( dpy, w, attr.your_event_mask );
159 #endif
160     videoSync();
161 #ifndef NDEBUG
162     msg_Dbg( p_intf, "embedded video ready (handle %p)",
163              (void *)stable->winId() );
164 #endif
165     return stable->winId();
166 }
167
168 /* Set the Widget to the correct Size */
169 /* Function has to be called by the parent
170    Parent has to care about resizing itself */
171 void VideoWidget::SetSizing( unsigned int w, unsigned int h )
172 {
173     if (reparentable->windowState() & Qt::WindowFullScreen )
174         return;
175     msg_Dbg( p_intf, "Video is resizing to: %i %i", w, h );
176     videoSize.setWidth( w );
177     videoSize.setHeight( h );
178     if( !isVisible() ) show();
179     updateGeometry(); // Needed for deinterlace
180     videoSync();
181 }
182
183 void VideoWidget::SetFullScreen( bool b_fs )
184 {
185     const Qt::WindowStates curstate = reparentable->windowState();
186     Qt::WindowStates newstate = curstate;
187     Qt::WindowFlags  newflags = reparentable->windowFlags();
188
189
190     if( b_fs )
191     {
192         newstate |= Qt::WindowFullScreen;
193         newflags |= Qt::WindowStaysOnTopHint;
194     }
195     else
196     {
197         newstate &= ~Qt::WindowFullScreen;
198         newflags &= ~Qt::WindowStaysOnTopHint;
199     }
200     if( newstate == curstate )
201         return; /* no changes needed */
202
203     if( b_fs )
204     {   /* Go full-screen */
205         int numscreen =  config_GetInt( p_intf, "qt-fullscreen-screennumber" );
206         /* if user hasn't defined screennumber, or screennumber that is bigger
207          * than current number of screens, take screennumber where current interface
208          * is
209          */
210         if( numscreen == -1 || numscreen > QApplication::desktop()->numScreens() )
211             numscreen = QApplication::desktop()->screenNumber( p_intf->p_sys->p_mi );
212
213         QRect screenres = QApplication::desktop()->screenGeometry( numscreen );
214
215         reparentable->setParent( NULL );
216         reparentable->setWindowState( newstate );
217         reparentable->setWindowFlags( newflags );
218         /* To be sure window is on proper-screen in xinerama */
219         if( !screenres.contains( reparentable->pos() ) )
220         {
221             msg_Dbg( p_intf, "Moving video to correct screen");
222             reparentable->move( QPoint( screenres.x(), screenres.y() ) );
223         }
224         reparentable->show();
225     }
226     else
227     {   /* Go windowed */
228         reparentable->setWindowFlags( newflags );
229         reparentable->setWindowState( newstate );
230         layout->addWidget( reparentable );
231     }
232     videoSync();
233 }
234
235 void VideoWidget::release( void )
236 {
237     msg_Dbg( p_intf, "Video is not needed anymore" );
238     //layout->removeWidget( reparentable );
239
240 #ifdef WIN32
241     /* Come back to default thumbnail for Windows 7 taskbar */
242     LPTASKBARLIST3 p_taskbl;
243     OSVERSIONINFO winVer;
244     winVer.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
245     if( GetVersionEx(&winVer) && winVer.dwMajorVersion > 5 )
246     {
247         CoInitialize( 0 );
248
249         if( S_OK == CoCreateInstance( &clsid_ITaskbarList,
250                     NULL, CLSCTX_INPROC_SERVER,
251                     &IID_ITaskbarList3,
252                     (void **)&p_taskbl) )
253         {
254             p_taskbl->vt->HrInit(p_taskbl);
255
256             HWND hroot = GetAncestor(reparentable->winId(),GA_ROOT);
257
258             if (S_OK != p_taskbl->vt->SetThumbnailClip(p_taskbl, hroot, NULL))
259                 msg_Err(p_intf, "SetThumbNailClip failed");
260             msg_Err(p_intf, "Releasing taskbar | root handle = %08x", hroot);
261             p_taskbl->vt->Release(p_taskbl);
262         }
263         CoUninitialize();
264     }
265 #endif
266
267     delete reparentable;
268     reparentable = NULL;
269     videoSize = QSize();
270     updateGeometry();
271     hide();
272 }
273
274
275 QSize VideoWidget::sizeHint() const
276 {
277     return videoSize;
278 }
279
280 /**********************************************************************
281  * Background Widget. Show a simple image background. Currently,
282  * it's album art if present or cone.
283  **********************************************************************/
284 #define ICON_SIZE 128
285 #define MAX_BG_SIZE 400
286 #define MIN_BG_SIZE 128
287
288 BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
289                  :QWidget( NULL ), p_intf( _p_i )
290 {
291     /* We should use that one to take the more size it can */
292     setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding);
293
294     /* A dark background */
295     setAutoFillBackground( true );
296     QPalette plt = palette();
297     plt.setColor( QPalette::Active, QPalette::Window , Qt::black );
298     plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
299     setPalette( plt );
300
301     /* A cone in the middle */
302     label = new QLabel;
303     label->setMargin( 5 );
304 /*    label->setMaximumHeight( MAX_BG_SIZE );
305     label->setMaximumWidth( MAX_BG_SIZE );
306     label->setMinimumHeight( MIN_BG_SIZE );
307     label->setMinimumWidth( MIN_BG_SIZE );*/
308     label->setAlignment( Qt::AlignCenter );
309     if( QDate::currentDate().dayOfYear() >= 354 )
310         label->setPixmap( QPixmap( ":/logo/vlc128-christmas.png" ) );
311     else
312         label->setPixmap( QPixmap( ":/logo/vlc128.png" ) );
313
314     QGridLayout *backgroundLayout = new QGridLayout( this );
315     backgroundLayout->addWidget( label, 0, 1 );
316     backgroundLayout->setColumnStretch( 0, 1 );
317     backgroundLayout->setColumnStretch( 2, 1 );
318
319     CONNECT( THEMIM->getIM(), artChanged( QString ),
320              this, updateArt( const QString& ) );
321 }
322
323 BackgroundWidget::~BackgroundWidget()
324 {}
325
326 void BackgroundWidget::resizeEvent( QResizeEvent * event )
327 {
328     if( event->size().height() <= MIN_BG_SIZE )
329         label->hide();
330     else
331         label->show();
332 }
333
334 void BackgroundWidget::updateArt( const QString& url )
335 {
336     if( url.isEmpty() )
337     {
338         if( QDate::currentDate().dayOfYear() >= 354 )
339             label->setPixmap( QPixmap( ":/logo/vlc128-christmas.png" ) );
340         else
341             label->setPixmap( QPixmap( ":/logo/vlc128.png" ) );
342     }
343     else
344     {
345         QPixmap pixmap( url );
346         if( pixmap.width() > label->maximumWidth() ||
347             pixmap.height() > label->maximumHeight() )
348         {
349             pixmap = pixmap.scaled( label->maximumWidth(),
350                           label->maximumHeight(), Qt::KeepAspectRatio );
351         }
352
353         label->setPixmap( pixmap );
354     }
355 }
356
357 void BackgroundWidget::contextMenuEvent( QContextMenuEvent *event )
358 {
359     QVLCMenu::PopupMenu( p_intf, true );
360     event->accept();
361 }
362
363 #if 0
364 #include <QPushButton>
365 #include <QHBoxLayout>
366
367 /**********************************************************************
368  * Visualization selector panel
369  **********************************************************************/
370 VisualSelector::VisualSelector( intf_thread_t *_p_i ) :
371                                 QFrame( NULL ), p_intf( _p_i )
372 {
373     QHBoxLayout *layout = new QHBoxLayout( this );
374     layout->setMargin( 0 );
375     QPushButton *prevButton = new QPushButton( "Prev" );
376     QPushButton *nextButton = new QPushButton( "Next" );
377     layout->addWidget( prevButton );
378     layout->addWidget( nextButton );
379
380     layout->addStretch( 10 );
381     layout->addWidget( new QLabel( qtr( "Current visualization" ) ) );
382
383     current = new QLabel( qtr( "None" ) );
384     layout->addWidget( current );
385
386     BUTTONACT( prevButton, prev() );
387     BUTTONACT( nextButton, next() );
388
389     setLayout( layout );
390     setMaximumHeight( 35 );
391 }
392
393 VisualSelector::~VisualSelector()
394 {}
395
396 void VisualSelector::prev()
397 {
398     char *psz_new = aout_VisualPrev( p_intf );
399     if( psz_new )
400     {
401         current->setText( qfu( psz_new ) );
402         free( psz_new );
403     }
404 }
405
406 void VisualSelector::next()
407 {
408     char *psz_new = aout_VisualNext( p_intf );
409     if( psz_new )
410     {
411         current->setText( qfu( psz_new ) );
412         free( psz_new );
413     }
414 }
415 #endif
416
417 SpeedLabel::SpeedLabel( intf_thread_t *_p_intf, const QString& text,
418                         QWidget *parent )
419            : QLabel( text, parent ), p_intf( _p_intf )
420 {
421     setToolTip( qtr( "Current playback speed.\nClick to adjust" ) );
422
423     /* Create the Speed Control Widget */
424     speedControl = new SpeedControlWidget( p_intf, this );
425     speedControlMenu = new QMenu( this );
426
427     QWidgetAction *widgetAction = new QWidgetAction( speedControl );
428     widgetAction->setDefaultWidget( speedControl );
429     speedControlMenu->addAction( widgetAction );
430
431     /* Change the SpeedRate in the Status Bar */
432     CONNECT( THEMIM->getIM(), rateChanged( int ), this, setRate( int ) );
433
434     CONNECT( THEMIM, inputChanged( input_thread_t * ),
435              speedControl, activateOnState() );
436
437 }
438 SpeedLabel::~SpeedLabel()
439 {
440         delete speedControl;
441         delete speedControlMenu;
442 }
443 /****************************************************************************
444  * Small right-click menu for rate control
445  ****************************************************************************/
446 void SpeedLabel::showSpeedMenu( QPoint pos )
447 {
448     speedControlMenu->exec( QCursor::pos() - pos
449                           + QPoint( 0, height() ) );
450 }
451
452 void SpeedLabel::setRate( int rate )
453 {
454     QString str;
455     str.setNum( ( 1000 / (double)rate ), 'f', 2 );
456     str.append( "x" );
457     setText( str );
458     setToolTip( str );
459     speedControl->updateControls( rate );
460 }
461
462 /**********************************************************************
463  * Speed control widget
464  **********************************************************************/
465 SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i, QWidget *_parent )
466                     : QFrame( _parent ), p_intf( _p_i )
467 {
468     QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
469     sizePolicy.setHorizontalStretch( 0 );
470     sizePolicy.setVerticalStretch( 0 );
471
472     speedSlider = new QSlider( this );
473     speedSlider->setSizePolicy( sizePolicy );
474     speedSlider->setMaximumSize( QSize( 80, 200 ) );
475     speedSlider->setOrientation( Qt::Vertical );
476     speedSlider->setTickPosition( QSlider::TicksRight );
477
478     speedSlider->setRange( -34, 34 );
479     speedSlider->setSingleStep( 1 );
480     speedSlider->setPageStep( 1 );
481     speedSlider->setTickInterval( 17 );
482
483     CONNECT( speedSlider, valueChanged( int ), this, updateRate( int ) );
484
485     QToolButton *normalSpeedButton = new QToolButton( this );
486     normalSpeedButton->setMaximumSize( QSize( 26, 20 ) );
487     normalSpeedButton->setAutoRaise( true );
488     normalSpeedButton->setText( "1x" );
489     normalSpeedButton->setToolTip( qtr( "Revert to normal play speed" ) );
490
491     CONNECT( normalSpeedButton, clicked(), this, resetRate() );
492
493     QVBoxLayout *speedControlLayout = new QVBoxLayout( this );
494     speedControlLayout->setContentsMargins( 4, 4, 4, 4 );
495     speedControlLayout->setSpacing( 4 );
496     speedControlLayout->addWidget( speedSlider );
497     speedControlLayout->addWidget( normalSpeedButton );
498
499     activateOnState();
500 }
501
502 void SpeedControlWidget::activateOnState()
503 {
504     speedSlider->setEnabled( THEMIM->getIM()->hasInput() );
505 }
506
507 void SpeedControlWidget::updateControls( int rate )
508 {
509     if( speedSlider->isSliderDown() )
510     {
511         //We don't want to change anything if the user is using the slider
512         return;
513     }
514
515     double value = 17 * log( (double)INPUT_RATE_DEFAULT / rate ) / log( 2 );
516     int sliderValue = (int) ( ( value > 0 ) ? value + .5 : value - .5 );
517
518     if( sliderValue < speedSlider->minimum() )
519     {
520         sliderValue = speedSlider->minimum();
521     }
522     else if( sliderValue > speedSlider->maximum() )
523     {
524         sliderValue = speedSlider->maximum();
525     }
526
527     //Block signals to avoid feedback loop
528     speedSlider->blockSignals( true );
529     speedSlider->setValue( sliderValue );
530     speedSlider->blockSignals( false );
531 }
532
533 void SpeedControlWidget::updateRate( int sliderValue )
534 {
535     double speed = pow( 2, (double)sliderValue / 17 );
536     int rate = INPUT_RATE_DEFAULT / speed;
537
538     THEMIM->getIM()->setRate(rate);
539 }
540
541 void SpeedControlWidget::resetRate()
542 {
543     THEMIM->getIM()->setRate( INPUT_RATE_DEFAULT );
544 }
545
546 CoverArtLabel::CoverArtLabel( QWidget *parent, intf_thread_t *_p_i )
547               : QLabel( parent ), p_intf( _p_i )
548 {
549     setContextMenuPolicy( Qt::ActionsContextMenu );
550     CONNECT( this, updateRequested(), this, askForUpdate() );
551
552     /*setMinimumHeight( 128 );
553     setMinimumWidth( 128 );
554     setMaximumHeight( 128 );
555     setMaximumWidth( 128 );*/
556     setScaledContents( false );
557     setAlignment( Qt::AlignCenter );
558
559     QList< QAction* > artActions = actions();
560     QAction *action = new QAction( qtr( "Download cover art" ), this );
561     CONNECT( action, triggered(), this, askForUpdate() );
562     addAction( action );
563
564     showArtUpdate( "" );
565 }
566
567 CoverArtLabel::~CoverArtLabel()
568 {
569     QList< QAction* > artActions = actions();
570     foreach( QAction *act, artActions )
571         removeAction( act );
572 }
573
574 void CoverArtLabel::showArtUpdate( const QString& url )
575 {
576     QPixmap pix;
577     if( !url.isEmpty()  && pix.load( url ) )
578     {
579         pix = pix.scaled( maximumWidth(), maximumHeight(),
580                           Qt::KeepAspectRatioByExpanding );
581     }
582     else
583     {
584         pix = QPixmap( ":/noart.png" );
585     }
586     setPixmap( pix );
587 }
588
589 void CoverArtLabel::askForUpdate()
590 {
591     THEMIM->getIM()->requestArtUpdate();
592 }
593
594 TimeLabel::TimeLabel( intf_thread_t *_p_intf  ) :QLabel(), p_intf( _p_intf )
595 {
596    b_remainingTime = false;
597    setText( " --:--/--:-- " );
598    setAlignment( Qt::AlignRight | Qt::AlignVCenter );
599    setToolTip( qtr( "Toggle between elapsed and remaining time" ) );
600
601
602    CONNECT( THEMIM->getIM(), cachingChanged( float ),
603             this, setCaching( float ) );
604    CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
605              this, setDisplayPosition( float, int, int ) );
606 }
607
608 void TimeLabel::setDisplayPosition( float pos, int time, int length )
609 {
610     if( pos == -1.f )
611     {
612         setText( " --:--/--:-- " );
613         return;
614     }
615
616     char psz_length[MSTRTIME_MAX_SIZE], psz_time[MSTRTIME_MAX_SIZE];
617     secstotimestr( psz_length, length );
618     secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
619                                                            : time );
620
621     QString timestr;
622     timestr.sprintf( " %s%s/%s ", (b_remainingTime && length) ? "-" : "",
623                      psz_time, ( !length && time ) ? "--:--" : psz_length );
624
625     setText( timestr );
626 }
627
628 void TimeLabel::toggleTimeDisplay()
629 {
630     b_remainingTime = !b_remainingTime;
631 }
632
633 void TimeLabel::setCaching( float f_cache )
634 {
635     QString amount;
636     amount.sprintf("Buff: %i%%", (int)(100*f_cache) );
637     setText( amount );
638 }
639
640