]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.cpp
2b6a305b9687c9b6bc3f661cab83ef41d96deb14
[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
45 #ifdef Q_WS_X11
46 # include <X11/Xlib.h>
47 # include <qx11info_x11.h>
48 #endif
49
50 #include <math.h>
51
52 /**********************************************************************
53  * Video Widget. A simple frame on which video is drawn
54  * This class handles resize issues
55  **********************************************************************/
56
57 VideoWidget::VideoWidget( intf_thread_t *_p_i ) : QFrame( NULL ), p_intf( _p_i )
58 {
59     /* Init */
60     p_vout = NULL;
61     videoSize.rwidth() = -1;
62     videoSize.rheight() = -1;
63
64     hide();
65
66     /* Set the policy to expand in both directions */
67 //    setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
68
69     /* Black background is more coherent for a Video Widget */
70     QPalette plt =  palette();
71     plt.setColor( QPalette::Window, Qt::black );
72     setPalette( plt );
73     setAutoFillBackground(true);
74
75     /* Indicates that the widget wants to draw directly onto the screen.
76        Widgets with this attribute set do not participate in composition
77        management */
78     setAttribute( Qt::WA_PaintOnScreen, true );
79
80     /* The core can ask through a callback to show the video. */
81     connect( this, SIGNAL(askVideoWidgetToShow( unsigned int, unsigned int)),
82              this, SLOT(SetSizing(unsigned int, unsigned int )),
83              Qt::BlockingQueuedConnection );
84 }
85
86 void VideoWidget::paintEvent(QPaintEvent *ev)
87 {
88     QFrame::paintEvent(ev);
89 #ifdef Q_WS_X11
90     XFlush( QX11Info::display() );
91 #endif
92 }
93
94 VideoWidget::~VideoWidget()
95 {
96     /* Ensure we are not leaking the video output. This would crash. */
97     assert( !p_vout );
98 }
99
100 /**
101  * Request the video to avoid the conflicts
102  **/
103 WId VideoWidget::request( vout_thread_t *p_nvout, int *pi_x, int *pi_y,
104                           unsigned int *pi_width, unsigned int *pi_height,
105                           bool b_keep_size )
106 {
107     msg_Dbg( p_intf, "Video was requested %i, %i", *pi_x, *pi_y );
108
109     if( b_keep_size )
110     {
111         *pi_width  = size().width();
112         *pi_height = size().height();
113     }
114
115     emit askVideoWidgetToShow( *pi_width, *pi_height );
116     if( p_vout )
117     {
118         msg_Dbg( p_intf, "embedded video already in use" );
119         return NULL;
120     }
121     p_vout = p_nvout;
122 #ifndef NDEBUG
123     msg_Dbg( p_intf, "embedded video ready (handle %p)", (void *)winId() );
124 #endif
125     return winId();
126 }
127
128 /* Set the Widget to the correct Size */
129 /* Function has to be called by the parent
130    Parent has to care about resizing himself*/
131 void VideoWidget::SetSizing( unsigned int w, unsigned int h )
132 {
133     msg_Dbg( p_intf, "Video is resizing to: %i %i", w, h );
134     videoSize.rwidth() = w;
135     videoSize.rheight() = h;
136     if( isHidden() ) show();
137     updateGeometry(); // Needed for deinterlace
138 }
139
140 void VideoWidget::release( void )
141 {
142     msg_Dbg( p_intf, "Video is not needed anymore" );
143     p_vout = NULL;
144     videoSize.rwidth() = 0;
145     videoSize.rheight() = 0;
146     updateGeometry();
147     hide();
148 }
149
150 QSize VideoWidget::sizeHint() const
151 {
152     return videoSize;
153 }
154
155 /**********************************************************************
156  * Background Widget. Show a simple image background. Currently,
157  * it's album art if present or cone.
158  **********************************************************************/
159 #define ICON_SIZE 128
160 #define MAX_BG_SIZE 400
161 #define MIN_BG_SIZE 128
162
163 BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
164                  :QWidget( NULL ), p_intf( _p_i )
165 {
166     /* We should use that one to take the more size it can */
167     setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding);
168
169     /* A dark background */
170     setAutoFillBackground( true );
171     plt = palette();
172     plt.setColor( QPalette::Active, QPalette::Window , Qt::black );
173     plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
174     setPalette( plt );
175
176     /* A cone in the middle */
177     label = new QLabel;
178     label->setMargin( 5 );
179     label->setMaximumHeight( MAX_BG_SIZE );
180     label->setMaximumWidth( MAX_BG_SIZE );
181     label->setMinimumHeight( MIN_BG_SIZE );
182     label->setMinimumWidth( MIN_BG_SIZE );
183     if( QDate::currentDate().dayOfYear() >= 354 )
184         label->setPixmap( QPixmap( ":/vlc128-christmas.png" ) );
185     else
186         label->setPixmap( QPixmap( ":/vlc128.png" ) );
187
188     QGridLayout *backgroundLayout = new QGridLayout( this );
189     backgroundLayout->addWidget( label, 0, 1 );
190     backgroundLayout->setColumnStretch( 0, 1 );
191     backgroundLayout->setColumnStretch( 2, 1 );
192
193     CONNECT( THEMIM->getIM(), artChanged( QString ),
194              this, updateArt( QString ) );
195 }
196
197 BackgroundWidget::~BackgroundWidget()
198 {}
199
200 void BackgroundWidget::resizeEvent( QResizeEvent * event )
201 {
202     if( event->size().height() <= MIN_BG_SIZE )
203         label->hide();
204     else
205         label->show();
206 }
207
208 void BackgroundWidget::updateArt( QString url )
209 {
210     if( url.isEmpty() )
211     {
212         if( QDate::currentDate().dayOfYear() >= 354 )
213             label->setPixmap( QPixmap( ":/vlc128-christmas.png" ) );
214         else
215             label->setPixmap( QPixmap( ":/vlc128.png" ) );
216     }
217     else
218     {
219         label->setPixmap( QPixmap( url ) );
220     }
221 }
222
223 void BackgroundWidget::contextMenuEvent( QContextMenuEvent *event )
224 {
225     QVLCMenu::PopupMenu( p_intf, true );
226     event->accept();
227 }
228
229 #if 0
230 #include <QPushButton>
231 #include <QHBoxLayout>
232
233 /**********************************************************************
234  * Visualization selector panel
235  **********************************************************************/
236 VisualSelector::VisualSelector( intf_thread_t *_p_i ) :
237                                 QFrame( NULL ), p_intf( _p_i )
238 {
239     QHBoxLayout *layout = new QHBoxLayout( this );
240     layout->setMargin( 0 );
241     QPushButton *prevButton = new QPushButton( "Prev" );
242     QPushButton *nextButton = new QPushButton( "Next" );
243     layout->addWidget( prevButton );
244     layout->addWidget( nextButton );
245
246     layout->addStretch( 10 );
247     layout->addWidget( new QLabel( qtr( "Current visualization" ) ) );
248
249     current = new QLabel( qtr( "None" ) );
250     layout->addWidget( current );
251
252     BUTTONACT( prevButton, prev() );
253     BUTTONACT( nextButton, next() );
254
255     setLayout( layout );
256     setMaximumHeight( 35 );
257 }
258
259 VisualSelector::~VisualSelector()
260 {}
261
262 void VisualSelector::prev()
263 {
264     char *psz_new = aout_VisualPrev( p_intf );
265     if( psz_new )
266     {
267         current->setText( qfu( psz_new ) );
268         free( psz_new );
269     }
270 }
271
272 void VisualSelector::next()
273 {
274     char *psz_new = aout_VisualNext( p_intf );
275     if( psz_new )
276     {
277         current->setText( qfu( psz_new ) );
278         free( psz_new );
279     }
280 }
281 #endif
282
283 SpeedLabel::SpeedLabel( intf_thread_t *_p_intf, const QString text )
284            : QLabel( text ), p_intf( _p_intf )
285 {
286     setToolTip( qtr( "Current playback speed.\nRight click to adjust" ) );
287     setContextMenuPolicy ( Qt::CustomContextMenu );
288
289     /* Create the Speed Control Widget */
290     speedControl = new SpeedControlWidget( p_intf, this );
291     speedControlMenu = new QMenu( this );
292
293     QWidgetAction *widgetAction = new QWidgetAction( speedControl );
294     widgetAction->setDefaultWidget( speedControl );
295     speedControlMenu->addAction( widgetAction );
296
297     /* Speed Label behaviour:
298        - right click gives the vertical speed slider */
299     CONNECT( this, customContextMenuRequested( QPoint ),
300              this, showSpeedMenu( QPoint ) );
301
302     /* Change the SpeedRate in the Status Bar */
303     CONNECT( THEMIM->getIM(), rateChanged( int ), this, setRate( int ) );
304
305     CONNECT( THEMIM, inputChanged( input_thread_t * ),
306              speedControl, activateOnState() );
307 }
308
309 /****************************************************************************
310  * Small right-click menu for rate control
311  ****************************************************************************/
312 void SpeedLabel::showSpeedMenu( QPoint pos )
313 {
314     speedControlMenu->exec( QCursor::pos() - pos
315                           + QPoint( 0, height() ) );
316 }
317
318 void SpeedLabel::setRate( int rate )
319 {
320     QString str;
321     str.setNum( ( 1000 / (double)rate ), 'f', 2 );
322     str.append( "x" );
323     setText( str );
324     setToolTip( str );
325     speedControl->updateControls( rate );
326 }
327
328 /**********************************************************************
329  * Speed control widget
330  **********************************************************************/
331 SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i, QWidget *_parent )
332                     : QFrame( _parent ), p_intf( _p_i )
333 {
334     QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
335     sizePolicy.setHorizontalStretch( 0 );
336     sizePolicy.setVerticalStretch( 0 );
337
338     speedSlider = new QSlider;
339     speedSlider->setSizePolicy( sizePolicy );
340     speedSlider->setMaximumSize( QSize( 80, 200 ) );
341     speedSlider->setOrientation( Qt::Vertical );
342     speedSlider->setTickPosition( QSlider::TicksRight );
343
344     speedSlider->setRange( -34, 34 );
345     speedSlider->setSingleStep( 1 );
346     speedSlider->setPageStep( 1 );
347     speedSlider->setTickInterval( 17 );
348
349     CONNECT( speedSlider, valueChanged( int ), this, updateRate( int ) );
350
351     QToolButton *normalSpeedButton = new QToolButton( this );
352     normalSpeedButton->setMaximumSize( QSize( 26, 20 ) );
353     normalSpeedButton->setAutoRaise( true );
354     normalSpeedButton->setText( "1x" );
355     normalSpeedButton->setToolTip( qtr( "Revert to normal play speed" ) );
356
357     CONNECT( normalSpeedButton, clicked(), this, resetRate() );
358
359     QVBoxLayout *speedControlLayout = new QVBoxLayout( this );
360     speedControlLayout->setLayoutMargins( 4, 4, 4, 4, 4 );
361     speedControlLayout->setSpacing( 4 );
362     speedControlLayout->addWidget( speedSlider );
363     speedControlLayout->addWidget( normalSpeedButton );
364
365     activateOnState();
366 }
367
368 void SpeedControlWidget::activateOnState()
369 {
370     speedSlider->setEnabled( THEMIM->getIM()->hasInput() );
371 }
372
373 void SpeedControlWidget::updateControls( int rate )
374 {
375     if( speedSlider->isSliderDown() )
376     {
377         //We don't want to change anything if the user is using the slider
378         return;
379     }
380
381     double value = 17 * log( (double)INPUT_RATE_DEFAULT / rate ) / log( 2 );
382     int sliderValue = (int) ( ( value > 0 ) ? value + .5 : value - .5 );
383
384     if( sliderValue < speedSlider->minimum() )
385     {
386         sliderValue = speedSlider->minimum();
387     }
388     else if( sliderValue > speedSlider->maximum() )
389     {
390         sliderValue = speedSlider->maximum();
391     }
392
393     //Block signals to avoid feedback loop
394     speedSlider->blockSignals( true );
395     speedSlider->setValue( sliderValue );
396     speedSlider->blockSignals( false );
397 }
398
399 void SpeedControlWidget::updateRate( int sliderValue )
400 {
401     double speed = pow( 2, (double)sliderValue / 17 );
402     int rate = INPUT_RATE_DEFAULT / speed;
403
404     THEMIM->getIM()->setRate(rate);
405 }
406
407 void SpeedControlWidget::resetRate()
408 {
409     THEMIM->getIM()->setRate( INPUT_RATE_DEFAULT );
410 }
411
412 CoverArtLabel::CoverArtLabel( QWidget *parent, intf_thread_t *_p_i )
413         : QLabel( parent ), p_intf( _p_i )
414 {
415     setContextMenuPolicy( Qt::ActionsContextMenu );
416     CONNECT( this, updateRequested(), this, doUpdate() );
417     CONNECT( THEMIM->getIM(), artChanged( QString ),
418              this, doUpdate( QString ) );
419
420     setMinimumHeight( 128 );
421     setMinimumWidth( 128 );
422     setMaximumHeight( 128 );
423     setMaximumWidth( 128 );
424     setScaledContents( true );
425     QList< QAction* > artActions = actions();
426     QAction *action = new QAction( qtr( "Download cover art" ), this );
427     addAction( action );
428     CONNECT( action, triggered(), this, doUpdate() );
429
430     doUpdate();
431 }
432
433 CoverArtLabel::~CoverArtLabel()
434 {
435     QList< QAction* > artActions = actions();
436     foreach( QAction *act, artActions )
437         removeAction( act );
438 }
439
440 void CoverArtLabel::doUpdate( QString url )
441 {
442     QPixmap pix;
443     if( !url.isEmpty()  && pix.load( url ) )
444     {
445         setPixmap( pix );
446     }
447     else
448     {
449         setPixmap( QPixmap( ":/noart.png" ) );
450     }
451 }
452
453 void CoverArtLabel::doUpdate()
454 {
455     THEMIM->getIM()->requestArtUpdate();
456 }
457
458 TimeLabel::TimeLabel( intf_thread_t *_p_intf  ) :QLabel(), p_intf( _p_intf )
459 {
460    b_remainingTime = false;
461    setText( " --:--/--:-- " );
462    setAlignment( Qt::AlignRight | Qt::AlignVCenter );
463    setToolTip( qtr( "Toggle between elapsed and remaining time" ) );
464
465
466    CONNECT( THEMIM->getIM(), cachingChanged( float ),
467             this, setCaching( float ) );
468    CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
469              this, setDisplayPosition( float, int, int ) );
470 }
471
472 void TimeLabel::setDisplayPosition( float pos, int time, int length )
473 {
474     if( pos == -1.f )
475     {
476         setText( " --:--/--:-- " );
477         return;
478     }
479
480     char psz_length[MSTRTIME_MAX_SIZE], psz_time[MSTRTIME_MAX_SIZE];
481     secstotimestr( psz_length, length );
482     secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
483                                                            : time );
484
485     QString timestr;
486     timestr.sprintf( "%s/%s", psz_time,
487                             ( !length && time ) ? "--:--" : psz_length );
488
489     /* Add a minus to remaining time*/
490     if( b_remainingTime && length ) setText( " -"+timestr+" " );
491     else setText( " "+timestr+" " );
492 }
493
494 void TimeLabel::toggleTimeDisplay()
495 {
496     b_remainingTime = !b_remainingTime;
497 }
498
499 void TimeLabel::setCaching( float f_cache )
500 {
501     QString amount;
502     amount.setNum( (int)(100 * f_cache) );
503     msg_Dbg( p_intf, "New caching: %d", (int)(100*f_cache));
504     setText( "Buffering " + amount + "%" );
505 }
506
507