]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.cpp
2e2f278d96c11112712aa64478131325fdcc7f1c
[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)", 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 }
219
220 #if 0
221 #include <QPushButton>
222 #include <QHBoxLayout>
223
224 /**********************************************************************
225  * Visualization selector panel
226  **********************************************************************/
227 VisualSelector::VisualSelector( intf_thread_t *_p_i ) :
228                                 QFrame( NULL ), p_intf( _p_i )
229 {
230     QHBoxLayout *layout = new QHBoxLayout( this );
231     layout->setMargin( 0 );
232     QPushButton *prevButton = new QPushButton( "Prev" );
233     QPushButton *nextButton = new QPushButton( "Next" );
234     layout->addWidget( prevButton );
235     layout->addWidget( nextButton );
236
237     layout->addStretch( 10 );
238     layout->addWidget( new QLabel( qtr( "Current visualization" ) ) );
239
240     current = new QLabel( qtr( "None" ) );
241     layout->addWidget( current );
242
243     BUTTONACT( prevButton, prev() );
244     BUTTONACT( nextButton, next() );
245
246     setLayout( layout );
247     setMaximumHeight( 35 );
248 }
249
250 VisualSelector::~VisualSelector()
251 {}
252
253 void VisualSelector::prev()
254 {
255     char *psz_new = aout_VisualPrev( p_intf );
256     if( psz_new )
257     {
258         current->setText( qfu( psz_new ) );
259         free( psz_new );
260     }
261 }
262
263 void VisualSelector::next()
264 {
265     char *psz_new = aout_VisualNext( p_intf );
266     if( psz_new )
267     {
268         current->setText( qfu( psz_new ) );
269         free( psz_new );
270     }
271 }
272 #endif
273
274 SpeedLabel::SpeedLabel( intf_thread_t *_p_intf, const QString text )
275            : QLabel( text ), p_intf( _p_intf )
276 {
277     setToolTip( qtr( "Current playback speed.\nRight click to adjust" ) );
278     setContextMenuPolicy ( Qt::CustomContextMenu );
279
280     /* Create the Speed Control Widget */
281     speedControl = new SpeedControlWidget( p_intf, this );
282     speedControlMenu = new QMenu( this );
283
284     QWidgetAction *widgetAction = new QWidgetAction( speedControl );
285     widgetAction->setDefaultWidget( speedControl );
286     speedControlMenu->addAction( widgetAction );
287
288     /* Speed Label behaviour:
289        - right click gives the vertical speed slider */
290     CONNECT( this, customContextMenuRequested( QPoint ),
291              this, showSpeedMenu( QPoint ) );
292
293     /* Change the SpeedRate in the Status Bar */
294     CONNECT( THEMIM->getIM(), rateChanged( int ), this, setRate( int ) );
295
296     CONNECT( THEMIM, inputChanged( input_thread_t * ),
297              speedControl, activateOnState() );
298 }
299
300 /****************************************************************************
301  * Small right-click menu for rate control
302  ****************************************************************************/
303 void SpeedLabel::showSpeedMenu( QPoint pos )
304 {
305     speedControlMenu->exec( QCursor::pos() - pos
306                           + QPoint( 0, height() ) );
307 }
308
309 void SpeedLabel::setRate( int rate )
310 {
311     QString str;
312     str.setNum( ( 1000 / (double)rate ), 'f', 2 );
313     str.append( "x" );
314     setText( str );
315     setToolTip( str );
316     speedControl->updateControls( rate );
317 }
318
319 /**********************************************************************
320  * Speed control widget
321  **********************************************************************/
322 SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i, QWidget *_parent )
323                     : QFrame( _parent ), p_intf( _p_i )
324 {
325     QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
326     sizePolicy.setHorizontalStretch( 0 );
327     sizePolicy.setVerticalStretch( 0 );
328
329     speedSlider = new QSlider;
330     speedSlider->setSizePolicy( sizePolicy );
331     speedSlider->setMaximumSize( QSize( 80, 200 ) );
332     speedSlider->setOrientation( Qt::Vertical );
333     speedSlider->setTickPosition( QSlider::TicksRight );
334
335     speedSlider->setRange( -34, 34 );
336     speedSlider->setSingleStep( 1 );
337     speedSlider->setPageStep( 1 );
338     speedSlider->setTickInterval( 17 );
339
340     CONNECT( speedSlider, valueChanged( int ), this, updateRate( int ) );
341
342     QToolButton *normalSpeedButton = new QToolButton( this );
343     normalSpeedButton->setMaximumSize( QSize( 26, 20 ) );
344     normalSpeedButton->setAutoRaise( true );
345     normalSpeedButton->setText( "1x" );
346     normalSpeedButton->setToolTip( qtr( "Revert to normal play speed" ) );
347
348     CONNECT( normalSpeedButton, clicked(), this, resetRate() );
349
350     QVBoxLayout *speedControlLayout = new QVBoxLayout( this );
351     speedControlLayout->setLayoutMargins( 4, 4, 4, 4, 4 );
352     speedControlLayout->setSpacing( 4 );
353     speedControlLayout->addWidget( speedSlider );
354     speedControlLayout->addWidget( normalSpeedButton );
355
356     activateOnState();
357 }
358
359 void SpeedControlWidget::activateOnState()
360 {
361     speedSlider->setEnabled( THEMIM->getIM()->hasInput() );
362 }
363
364 void SpeedControlWidget::updateControls( int rate )
365 {
366     if( speedSlider->isSliderDown() )
367     {
368         //We don't want to change anything if the user is using the slider
369         return;
370     }
371
372     double value = 17 * log( (double)INPUT_RATE_DEFAULT / rate ) / log( 2 );
373     int sliderValue = (int) ( ( value > 0 ) ? value + .5 : value - .5 );
374
375     if( sliderValue < speedSlider->minimum() )
376     {
377         sliderValue = speedSlider->minimum();
378     }
379     else if( sliderValue > speedSlider->maximum() )
380     {
381         sliderValue = speedSlider->maximum();
382     }
383
384     //Block signals to avoid feedback loop
385     speedSlider->blockSignals( true );
386     speedSlider->setValue( sliderValue );
387     speedSlider->blockSignals( false );
388 }
389
390 void SpeedControlWidget::updateRate( int sliderValue )
391 {
392     double speed = pow( 2, (double)sliderValue / 17 );
393     int rate = INPUT_RATE_DEFAULT / speed;
394
395     THEMIM->getIM()->setRate(rate);
396 }
397
398 void SpeedControlWidget::resetRate()
399 {
400     THEMIM->getIM()->setRate( INPUT_RATE_DEFAULT );
401 }
402
403 CoverArtLabel::CoverArtLabel( QWidget *parent, intf_thread_t *_p_i )
404         : QLabel( parent ), p_intf( _p_i )
405 {
406     setContextMenuPolicy( Qt::ActionsContextMenu );
407     CONNECT( this, updateRequested(), this, doUpdate() );
408     CONNECT( THEMIM->getIM(), artChanged( QString ),
409              this, doUpdate( QString ) );
410
411     setMinimumHeight( 128 );
412     setMinimumWidth( 128 );
413     setMaximumHeight( 128 );
414     setMaximumWidth( 128 );
415     setScaledContents( true );
416     QList< QAction* > artActions = actions();
417     QAction *action = new QAction( qtr( "Download cover art" ), this );
418     addAction( action );
419     CONNECT( action, triggered(), this, doUpdate() );
420
421     doUpdate();
422 }
423
424 CoverArtLabel::~CoverArtLabel()
425 {
426     QList< QAction* > artActions = actions();
427     foreach( QAction *act, artActions )
428         removeAction( act );
429 }
430
431 void CoverArtLabel::doUpdate( QString url )
432 {
433     QPixmap pix;
434     if( !url.isEmpty()  && pix.load( url ) )
435     {
436         setPixmap( pix );
437     }
438     else
439     {
440         setPixmap( QPixmap( ":/noart.png" ) );
441     }
442 }
443
444 void CoverArtLabel::doUpdate()
445 {
446     THEMIM->getIM()->requestArtUpdate();
447 }
448
449 TimeLabel::TimeLabel( intf_thread_t *_p_intf  ) :QLabel(), p_intf( _p_intf )
450 {
451    b_remainingTime = false;
452    setText( " --:--/--:-- " );
453    setAlignment( Qt::AlignRight | Qt::AlignVCenter );
454    setToolTip( qtr( "Toggle between elapsed and remaining time" ) );
455
456
457    CONNECT( THEMIM->getIM(), cachingChanged( float ),
458             this, setCaching( float ) );
459    CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
460              this, setDisplayPosition( float, int, int ) );
461 }
462
463 void TimeLabel::setDisplayPosition( float pos, int time, int length )
464 {
465     char psz_length[MSTRTIME_MAX_SIZE], psz_time[MSTRTIME_MAX_SIZE];
466     secstotimestr( psz_length, length );
467     secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
468                                                            : time );
469
470     QString timestr;
471     timestr.sprintf( "%s/%s", psz_time,
472                             ( !length && time ) ? "--:--" : psz_length );
473
474     /* Add a minus to remaining time*/
475     if( b_remainingTime && length ) setText( " -"+timestr+" " );
476     else setText( " "+timestr+" " );
477 }
478
479 void TimeLabel::toggleTimeDisplay()
480 {
481     b_remainingTime = !b_remainingTime;
482 }
483
484 void TimeLabel::setCaching( float f_cache )
485 {
486     QString amount;
487     amount.setNum( (int)(100 * f_cache) );
488     msg_Dbg( p_intf, "New caching: %d", (int)(100*f_cache));
489     setText( "Buffering " + amount + "%" );
490 }
491
492