Qt: code cosmetics
[vlc/solaris.git] / modules / gui / qt4 / components / interface_widgets.cpp
blob7f09e59872e72249dd4dfff85e4fb2ebf8427b22
1 /*****************************************************************************
2 * interface_widgets.cpp : Custom widgets for the main interface
3 ****************************************************************************
4 * Copyright (C) 2006-2008 the VideoLAN team
5 * $Id$
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>
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.
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.
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 *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
31 #include "components/interface_widgets.hpp"
33 #include "menus.hpp" /* Popup menu on bgWidget */
35 #include <vlc_vout.h>
37 #include <QLabel>
38 #include <QToolButton>
39 #include <QPalette>
40 #include <QResizeEvent>
41 #include <QDate>
42 #include <QMenu>
43 #include <QWidgetAction>
44 #include <QDesktopWidget>
46 #ifdef Q_WS_X11
47 # include <X11/Xlib.h>
48 # include <qx11info_x11.h>
49 static void videoSync( void )
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 );
56 #else
57 # define videoSync() (void)0
58 #endif
60 #include <math.h>
62 class ReparentableWidget : public QWidget
64 private:
65 VideoWidget *owner;
66 public:
67 ReparentableWidget( VideoWidget *owner ) : owner( owner )
71 protected:
72 void keyPressEvent( QKeyEvent *e )
74 emit owner->keyPressed( e );
78 /**********************************************************************
79 * Video Widget. A simple frame on which video is drawn
80 * This class handles resize issues
81 **********************************************************************/
83 VideoWidget::VideoWidget( intf_thread_t *_p_i )
84 : QFrame( NULL )
85 , p_intf( _p_i )
86 , reparentable( NULL )
88 /* Set the policy to expand in both directions */
89 // setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
91 layout = new QHBoxLayout( this );
92 layout->setContentsMargins( 0, 0, 0, 0 );
93 setLayout( layout );
96 VideoWidget::~VideoWidget()
98 /* Ensure we are not leaking the video output. This would crash. */
99 assert( reparentable == NULL );
103 * Request the video to avoid the conflicts
105 WId VideoWidget::request( int *pi_x, int *pi_y,
106 unsigned int *pi_width, unsigned int *pi_height,
107 bool b_keep_size )
109 msg_Dbg( p_intf, "Video was requested %i, %i", *pi_x, *pi_y );
111 if( reparentable != NULL )
113 msg_Dbg( p_intf, "embedded video already in use" );
114 return NULL;
116 if( b_keep_size )
118 *pi_width = size().width();
119 *pi_height = size().height();
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.
127 reparentable = new ReparentableWidget( this );
128 QLayout *innerLayout = new QHBoxLayout( reparentable );
129 innerLayout->setContentsMargins( 0, 0, 0, 0 );
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 );
144 innerLayout->addWidget( stable );
146 layout->addWidget( reparentable );
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;
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();
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 )
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();
183 void VideoWidget::SetFullScreen( bool b_fs )
185 const Qt::WindowStates curstate = reparentable->windowState();
186 Qt::WindowStates newstate = curstate;
187 Qt::WindowFlags newflags = reparentable->windowFlags();
190 if( b_fs )
192 newstate |= Qt::WindowFullScreen;
193 newflags |= Qt::WindowStaysOnTopHint;
195 else
197 newstate &= ~Qt::WindowFullScreen;
198 newflags &= ~Qt::WindowStaysOnTopHint;
200 if( newstate == curstate )
201 return; /* no changes needed */
203 if( b_fs )
204 { /* Go full-screen */
205 int numscreen = var_InheritInteger( 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
210 if( numscreen == -1 || numscreen > QApplication::desktop()->numScreens() )
211 numscreen = QApplication::desktop()->screenNumber( p_intf->p_sys->p_mi );
213 QRect screenres = QApplication::desktop()->screenGeometry( numscreen );
215 reparentable->setParent( NULL, newflags );
216 reparentable->setWindowState( newstate );
217 /* To be sure window is on proper-screen in xinerama */
218 if( !screenres.contains( reparentable->pos() ) )
220 msg_Dbg( p_intf, "Moving video to correct screen");
221 reparentable->move( QPoint( screenres.x(), screenres.y() ) );
223 reparentable->show();
225 else
226 { /* Go windowed */
227 reparentable->setWindowFlags( newflags );
228 reparentable->setWindowState( newstate );
229 layout->addWidget( reparentable );
231 videoSync();
234 void VideoWidget::release( void )
236 msg_Dbg( p_intf, "Video is not needed anymore" );
237 //layout->removeWidget( reparentable );
239 #ifdef WIN32
240 /* Come back to default thumbnail for Windows 7 taskbar */
241 LPTASKBARLIST3 p_taskbl;
243 CoInitialize( 0 );
245 if( S_OK == CoCreateInstance( &clsid_ITaskbarList,
246 NULL, CLSCTX_INPROC_SERVER,
247 &IID_ITaskbarList3,
248 (void **)&p_taskbl) )
250 p_taskbl->vt->HrInit(p_taskbl);
252 HWND hroot = GetAncestor(reparentable->winId(),GA_ROOT);
254 if (S_OK != p_taskbl->vt->SetThumbnailClip(p_taskbl, hroot, NULL))
255 msg_Err(p_intf, "SetThumbNailClip failed");
256 msg_Err(p_intf, "Releasing taskbar | root handle = %08x", hroot);
257 p_taskbl->vt->Release(p_taskbl);
259 CoUninitialize();
261 #endif
263 delete reparentable;
264 reparentable = NULL;
265 videoSize = QSize();
266 updateGeometry();
267 hide();
271 QSize VideoWidget::sizeHint() const
273 return videoSize;
276 /**********************************************************************
277 * Background Widget. Show a simple image background. Currently,
278 * it's album art if present or cone.
279 **********************************************************************/
280 #define ICON_SIZE 128
281 #define MAX_BG_SIZE 400
282 #define MIN_BG_SIZE 128
284 BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
285 :QWidget( NULL ), p_intf( _p_i )
287 /* We should use that one to take the more size it can */
288 setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding);
290 /* A dark background */
291 setAutoFillBackground( true );
292 QPalette plt = palette();
293 plt.setColor( QPalette::Active, QPalette::Window , Qt::black );
294 plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
295 setPalette( plt );
297 /* A cone in the middle */
298 label = new QLabel;
299 label->setMargin( 5 );
300 /* label->setMaximumHeight( MAX_BG_SIZE );
301 label->setMaximumWidth( MAX_BG_SIZE );
302 label->setMinimumHeight( MIN_BG_SIZE );
303 label->setMinimumWidth( MIN_BG_SIZE );*/
304 label->setAlignment( Qt::AlignCenter );
305 if( QDate::currentDate().dayOfYear() >= 354 )
306 label->setPixmap( QPixmap( ":/logo/vlc128-christmas.png" ) );
307 else
308 label->setPixmap( QPixmap( ":/logo/vlc128.png" ) );
310 QGridLayout *backgroundLayout = new QGridLayout( this );
311 backgroundLayout->addWidget( label, 0, 1 );
312 backgroundLayout->setColumnStretch( 0, 1 );
313 backgroundLayout->setColumnStretch( 2, 1 );
315 CONNECT( THEMIM->getIM(), artChanged( QString ),
316 this, updateArt( const QString& ) );
319 BackgroundWidget::~BackgroundWidget()
322 void BackgroundWidget::resizeEvent( QResizeEvent * event )
324 if( event->size().height() <= MIN_BG_SIZE )
325 label->hide();
326 else
327 label->show();
330 void BackgroundWidget::updateArt( const QString& url )
332 if( url.isEmpty() )
334 if( QDate::currentDate().dayOfYear() >= 354 )
335 label->setPixmap( QPixmap( ":/logo/vlc128-christmas.png" ) );
336 else
337 label->setPixmap( QPixmap( ":/logo/vlc128.png" ) );
339 else
341 QPixmap pixmap( url );
342 if( pixmap.width() > label->maximumWidth() ||
343 pixmap.height() > label->maximumHeight() )
345 pixmap = pixmap.scaled( label->maximumWidth(),
346 label->maximumHeight(), Qt::KeepAspectRatio );
349 label->setPixmap( pixmap );
353 void BackgroundWidget::contextMenuEvent( QContextMenuEvent *event )
355 QVLCMenu::PopupMenu( p_intf, true );
356 event->accept();
359 #if 0
360 #include <QPushButton>
361 #include <QHBoxLayout>
363 /**********************************************************************
364 * Visualization selector panel
365 **********************************************************************/
366 VisualSelector::VisualSelector( intf_thread_t *_p_i ) :
367 QFrame( NULL ), p_intf( _p_i )
369 QHBoxLayout *layout = new QHBoxLayout( this );
370 layout->setMargin( 0 );
371 QPushButton *prevButton = new QPushButton( "Prev" );
372 QPushButton *nextButton = new QPushButton( "Next" );
373 layout->addWidget( prevButton );
374 layout->addWidget( nextButton );
376 layout->addStretch( 10 );
377 layout->addWidget( new QLabel( qtr( "Current visualization" ) ) );
379 current = new QLabel( qtr( "None" ) );
380 layout->addWidget( current );
382 BUTTONACT( prevButton, prev() );
383 BUTTONACT( nextButton, next() );
385 setLayout( layout );
386 setMaximumHeight( 35 );
389 VisualSelector::~VisualSelector()
392 void VisualSelector::prev()
394 char *psz_new = aout_VisualPrev( p_intf );
395 if( psz_new )
397 current->setText( qfu( psz_new ) );
398 free( psz_new );
402 void VisualSelector::next()
404 char *psz_new = aout_VisualNext( p_intf );
405 if( psz_new )
407 current->setText( qfu( psz_new ) );
408 free( psz_new );
411 #endif
413 SpeedLabel::SpeedLabel( intf_thread_t *_p_intf, const QString& text,
414 QWidget *parent )
415 : QLabel( text, parent ), p_intf( _p_intf )
417 setToolTip( qtr( "Current playback speed.\nClick to adjust" ) );
419 /* Create the Speed Control Widget */
420 speedControl = new SpeedControlWidget( p_intf, this );
421 speedControlMenu = new QMenu( this );
423 QWidgetAction *widgetAction = new QWidgetAction( speedControl );
424 widgetAction->setDefaultWidget( speedControl );
425 speedControlMenu->addAction( widgetAction );
427 /* Change the SpeedRate in the Status Bar */
428 CONNECT( THEMIM->getIM(), rateChanged( int ), this, setRate( int ) );
430 CONNECT( THEMIM, inputChanged( input_thread_t * ),
431 speedControl, activateOnState() );
434 SpeedLabel::~SpeedLabel()
436 delete speedControl;
437 delete speedControlMenu;
439 /****************************************************************************
440 * Small right-click menu for rate control
441 ****************************************************************************/
442 void SpeedLabel::showSpeedMenu( QPoint pos )
444 speedControlMenu->exec( QCursor::pos() - pos
445 + QPoint( 0, height() ) );
448 void SpeedLabel::setRate( int rate )
450 QString str;
451 str.setNum( ( 1000 / (double)rate ), 'f', 2 );
452 str.append( "x" );
453 setText( str );
454 setToolTip( str );
455 speedControl->updateControls( rate );
458 /**********************************************************************
459 * Speed control widget
460 **********************************************************************/
461 SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i, QWidget *_parent )
462 : QFrame( _parent ), p_intf( _p_i )
464 QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
465 sizePolicy.setHorizontalStretch( 0 );
466 sizePolicy.setVerticalStretch( 0 );
468 speedSlider = new QSlider( this );
469 speedSlider->setSizePolicy( sizePolicy );
470 speedSlider->setMaximumSize( QSize( 80, 200 ) );
471 speedSlider->setOrientation( Qt::Vertical );
472 speedSlider->setTickPosition( QSlider::TicksRight );
474 speedSlider->setRange( -34, 34 );
475 speedSlider->setSingleStep( 1 );
476 speedSlider->setPageStep( 1 );
477 speedSlider->setTickInterval( 17 );
479 CONNECT( speedSlider, valueChanged( int ), this, updateRate( int ) );
481 QToolButton *normalSpeedButton = new QToolButton( this );
482 normalSpeedButton->setMaximumSize( QSize( 26, 20 ) );
483 normalSpeedButton->setAutoRaise( true );
484 normalSpeedButton->setText( "1x" );
485 normalSpeedButton->setToolTip( qtr( "Revert to normal play speed" ) );
487 CONNECT( normalSpeedButton, clicked(), this, resetRate() );
489 QVBoxLayout *speedControlLayout = new QVBoxLayout( this );
490 speedControlLayout->setContentsMargins( 4, 4, 4, 4 );
491 speedControlLayout->setSpacing( 4 );
492 speedControlLayout->addWidget( speedSlider );
493 speedControlLayout->addWidget( normalSpeedButton );
495 activateOnState();
498 void SpeedControlWidget::activateOnState()
500 speedSlider->setEnabled( THEMIM->getIM()->hasInput() );
503 void SpeedControlWidget::updateControls( int rate )
505 if( speedSlider->isSliderDown() )
507 //We don't want to change anything if the user is using the slider
508 return;
511 double value = 17 * log( (double)INPUT_RATE_DEFAULT / rate ) / log( 2 );
512 int sliderValue = (int) ( ( value > 0 ) ? value + .5 : value - .5 );
514 if( sliderValue < speedSlider->minimum() )
516 sliderValue = speedSlider->minimum();
518 else if( sliderValue > speedSlider->maximum() )
520 sliderValue = speedSlider->maximum();
523 //Block signals to avoid feedback loop
524 speedSlider->blockSignals( true );
525 speedSlider->setValue( sliderValue );
526 speedSlider->blockSignals( false );
529 void SpeedControlWidget::updateRate( int sliderValue )
531 double speed = pow( 2, (double)sliderValue / 17 );
532 int rate = INPUT_RATE_DEFAULT / speed;
534 THEMIM->getIM()->setRate(rate);
537 void SpeedControlWidget::resetRate()
539 THEMIM->getIM()->setRate( INPUT_RATE_DEFAULT );
542 CoverArtLabel::CoverArtLabel( QWidget *parent, intf_thread_t *_p_i )
543 : QLabel( parent ), p_intf( _p_i )
545 setContextMenuPolicy( Qt::ActionsContextMenu );
546 CONNECT( this, updateRequested(), this, askForUpdate() );
548 setMinimumHeight( 128 );
549 setMinimumWidth( 128 );
550 setMaximumHeight( 128 );
551 setMaximumWidth( 128 );
552 setScaledContents( false );
553 setAlignment( Qt::AlignCenter );
555 QList< QAction* > artActions = actions();
556 QAction *action = new QAction( qtr( "Download cover art" ), this );
557 CONNECT( action, triggered(), this, askForUpdate() );
558 addAction( action );
560 showArtUpdate( "" );
563 CoverArtLabel::~CoverArtLabel()
565 QList< QAction* > artActions = actions();
566 foreach( QAction *act, artActions )
567 removeAction( act );
570 void CoverArtLabel::showArtUpdate( const QString& url )
572 QPixmap pix;
573 if( !url.isEmpty() && pix.load( url ) )
575 pix = pix.scaled( maximumWidth(), maximumHeight(),
576 Qt::KeepAspectRatioByExpanding );
578 else
580 pix = QPixmap( ":/noart.png" );
582 setPixmap( pix );
585 void CoverArtLabel::askForUpdate()
587 THEMIM->getIM()->requestArtUpdate();
590 TimeLabel::TimeLabel( intf_thread_t *_p_intf ) :QLabel(), p_intf( _p_intf )
592 b_remainingTime = false;
593 setText( " --:--/--:-- " );
594 setAlignment( Qt::AlignRight | Qt::AlignVCenter );
595 setToolTip( qtr( "Toggle between elapsed and remaining time" ) );
598 CONNECT( THEMIM->getIM(), cachingChanged( float ),
599 this, setCaching( float ) );
600 CONNECT( THEMIM->getIM(), positionUpdated( float, int64_t, int ),
601 this, setDisplayPosition( float, int64_t, int ) );
604 void TimeLabel::setDisplayPosition( float pos, int64_t t, int length )
606 if( pos == -1.f )
608 setText( " --:--/--:-- " );
609 return;
612 int time = t / 1000000;
613 char psz_length[MSTRTIME_MAX_SIZE], psz_time[MSTRTIME_MAX_SIZE];
614 secstotimestr( psz_length, length );
615 secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
616 : time );
618 QString timestr;
619 timestr.sprintf( " %s%s/%s ", (b_remainingTime && length) ? "-" : "",
620 psz_time, ( !length && time ) ? "--:--" : psz_length );
622 setText( timestr );
625 void TimeLabel::toggleTimeDisplay()
627 b_remainingTime = !b_remainingTime;
630 void TimeLabel::setCaching( float f_cache )
632 QString amount;
633 amount.sprintf("Buff: %i%%", (int)(100*f_cache) );
634 setText( amount );