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