Implement 'i' hotkey to show FSC.
[vlc/davidf-public.git] / modules / gui / qt4 / components / interface_widgets.cpp
blob49cda26567f850c8bf6fbb712894c90400aaba00
1 /*****************************************************************************
2 * interface_widgets.cpp : Custom widgets for the main interface
3 ****************************************************************************
4 * Copyright ( C ) 2006 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 <vlc_vout.h>
33 #include "dialogs_provider.hpp"
34 #include "components/interface_widgets.hpp"
35 #include "main_interface.hpp"
36 #include "input_manager.hpp"
37 #include "menus.hpp"
38 #include "util/input_slider.hpp"
39 #include "util/customwidgets.hpp"
41 #include <QLabel>
42 #include <QSpacerItem>
43 #include <QCursor>
44 #include <QPushButton>
45 #include <QToolButton>
46 #include <QHBoxLayout>
47 #include <QMenu>
48 #include <QPalette>
49 #include <QResizeEvent>
50 #include <QDate>
52 #ifdef Q_WS_X11
53 # include <X11/Xlib.h>
54 # include <qx11info_x11.h>
55 #endif
57 #include <math.h>
59 #define I_PLAY_TOOLTIP N_("Play\nIf the playlist is empty, open a media")
61 /**********************************************************************
62 * Video Widget. A simple frame on which video is drawn
63 * This class handles resize issues
64 **********************************************************************/
66 VideoWidget::VideoWidget( intf_thread_t *_p_i ) : QFrame( NULL ), p_intf( _p_i )
68 /* Init */
69 i_vout = 0;
70 hide(); setMinimumSize( 16, 16 );
71 videoSize.rwidth() = -1;
72 videoSize.rheight() = -1;
73 setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
75 /* Black background is more coherent for a Video Widget IMVHO */
76 QPalette plt = palette();
77 plt.setColor( QPalette::Active, QPalette::Window , Qt::black );
78 plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
79 setPalette( plt );
80 setAttribute( Qt::WA_PaintOnScreen, true );
82 /* The core can ask through a callback to show the video. */
83 #if HAS_QT43
84 connect( this, SIGNAL(askVideoWidgetToShow( unsigned int, unsigned int)),
85 this, SLOT(SetSizing(unsigned int, unsigned int )),
86 Qt::BlockingQueuedConnection );
87 #else
88 #error This is broken. Fix it with a QEventLoop with a processEvents ()
89 connect( this, SIGNAL(askVideoWidgetToShow( unsigned int, unsigned int)),
90 this, SLOT(SetSizing(unsigned int, unsigned int )) );
91 #endif
94 void VideoWidget::paintEvent(QPaintEvent *ev)
96 QFrame::paintEvent(ev);
97 #ifdef Q_WS_X11
98 XFlush( QX11Info::display() );
99 #endif
102 VideoWidget::~VideoWidget()
104 vout_thread_t *p_vout = i_vout
105 ? (vout_thread_t *)vlc_object_get( i_vout ) : NULL;
107 if( p_vout )
109 if( !p_intf->psz_switch_intf )
111 if( vout_Control( p_vout, VOUT_CLOSE ) != VLC_SUCCESS )
112 vout_Control( p_vout, VOUT_REPARENT );
114 else
116 if( vout_Control( p_vout, VOUT_REPARENT ) != VLC_SUCCESS )
117 vout_Control( p_vout, VOUT_CLOSE );
119 vlc_object_release( p_vout );
124 * Request the video to avoid the conflicts
126 void *VideoWidget::request( vout_thread_t *p_nvout, int *pi_x, int *pi_y,
127 unsigned int *pi_width, unsigned int *pi_height )
129 msg_Dbg( p_intf, "Video was requested %i, %i", *pi_x, *pi_y );
130 emit askVideoWidgetToShow( *pi_width, *pi_height );
131 if( i_vout )
133 msg_Dbg( p_intf, "embedded video already in use" );
134 return NULL;
136 i_vout = p_nvout->i_object_id;
137 msg_Dbg( p_intf, "embedded video ready (handle %p)", winId() );
138 return ( void* )winId();
141 /* Set the Widget to the correct Size */
142 /* Function has to be called by the parent
143 Parent has to care about resizing himself*/
144 void VideoWidget::SetSizing( unsigned int w, unsigned int h )
146 msg_Dbg( p_intf, "Video is resizing to: %i %i", w, h );
147 videoSize.rwidth() = w;
148 videoSize.rheight() = h;
149 if( isHidden() ) show();
150 updateGeometry(); // Needed for deinterlace
153 void VideoWidget::release( void *p_win )
155 msg_Dbg( p_intf, "Video is not needed anymore" );
156 i_vout = 0;
157 videoSize.rwidth() = 0;
158 videoSize.rheight() = 0;
159 hide();
160 updateGeometry(); // Needed for deinterlace
163 QSize VideoWidget::sizeHint() const
165 return videoSize;
168 /**********************************************************************
169 * Background Widget. Show a simple image background. Currently,
170 * it's album art if present or cone.
171 **********************************************************************/
172 #define ICON_SIZE 128
173 #define MAX_BG_SIZE 400
174 #define MIN_BG_SIZE 64
176 BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
177 :QWidget( NULL ), p_intf( _p_i )
179 /* We should use that one to take the more size it can */
180 setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding);
182 /* A dark background */
183 setAutoFillBackground( true );
184 plt = palette();
185 plt.setColor( QPalette::Active, QPalette::Window , Qt::black );
186 plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
187 setPalette( plt );
189 /* A cone in the middle */
190 label = new QLabel;
191 label->setMargin( 5 );
192 label->setMaximumHeight( MAX_BG_SIZE );
193 label->setMaximumWidth( MAX_BG_SIZE );
194 label->setMinimumHeight( MIN_BG_SIZE );
195 label->setMinimumWidth( MIN_BG_SIZE );
196 if( QDate::currentDate().dayOfYear() >= 354 )
197 label->setPixmap( QPixmap( ":/vlc128-christmas.png" ) );
198 else
199 label->setPixmap( QPixmap( ":/vlc128.png" ) );
201 QGridLayout *backgroundLayout = new QGridLayout( this );
202 backgroundLayout->addWidget( label, 0, 1 );
203 backgroundLayout->setColumnStretch( 0, 1 );
204 backgroundLayout->setColumnStretch( 2, 1 );
206 CONNECT( THEMIM->getIM(), artChanged( QString ), this, updateArt( QString ) );
209 BackgroundWidget::~BackgroundWidget()
212 void BackgroundWidget::resizeEvent( QResizeEvent * event )
214 if( event->size().height() <= MIN_BG_SIZE )
215 label->hide();
216 else
217 label->show();
220 void BackgroundWidget::updateArt( QString url )
222 if( url.isEmpty() )
224 if( QDate::currentDate().dayOfYear() >= 354 )
225 label->setPixmap( QPixmap( ":/vlc128-christmas.png" ) );
226 else
227 label->setPixmap( QPixmap( ":/vlc128.png" ) );
228 return;
230 else
232 label->setPixmap( QPixmap( url ) );
236 void BackgroundWidget::contextMenuEvent( QContextMenuEvent *event )
238 QVLCMenu::PopupMenu( p_intf, true );
241 #if 0
242 /**********************************************************************
243 * Visualization selector panel
244 **********************************************************************/
245 VisualSelector::VisualSelector( intf_thread_t *_p_i ) :
246 QFrame( NULL ), p_intf( _p_i )
248 QHBoxLayout *layout = new QHBoxLayout( this );
249 layout->setMargin( 0 );
250 QPushButton *prevButton = new QPushButton( "Prev" );
251 QPushButton *nextButton = new QPushButton( "Next" );
252 layout->addWidget( prevButton );
253 layout->addWidget( nextButton );
255 layout->addStretch( 10 );
256 layout->addWidget( new QLabel( qtr( "Current visualization" ) ) );
258 current = new QLabel( qtr( "None" ) );
259 layout->addWidget( current );
261 BUTTONACT( prevButton, prev() );
262 BUTTONACT( nextButton, next() );
264 setLayout( layout );
265 setMaximumHeight( 35 );
268 VisualSelector::~VisualSelector()
271 void VisualSelector::prev()
273 char *psz_new = aout_VisualPrev( p_intf );
274 if( psz_new )
276 current->setText( qfu( psz_new ) );
277 free( psz_new );
281 void VisualSelector::next()
283 char *psz_new = aout_VisualNext( p_intf );
284 if( psz_new )
286 current->setText( qfu( psz_new ) );
287 free( psz_new );
290 #endif
292 /**********************************************************************
293 * TEH controls
294 **********************************************************************/
296 #define setupSmallButton( aButton ){ \
297 aButton->setMaximumSize( QSize( 26, 26 ) ); \
298 aButton->setMinimumSize( QSize( 26, 26 ) ); \
299 aButton->setIconSize( QSize( 20, 20 ) ); }
301 /* init static variables in advanced controls */
302 mtime_t AdvControlsWidget::timeA = 0;
303 mtime_t AdvControlsWidget::timeB = 0;
305 AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i, bool b_fsCreation = false ) :
306 QFrame( NULL ), p_intf( _p_i )
308 QHBoxLayout *advLayout = new QHBoxLayout( this );
309 advLayout->setMargin( 0 );
310 advLayout->setSpacing( 0 );
311 advLayout->setAlignment( Qt::AlignBottom );
313 /* A to B Button */
314 ABButton = new QPushButton;
315 setupSmallButton( ABButton );
316 advLayout->addWidget( ABButton );
317 BUTTON_SET_ACT_I( ABButton, "", atob_nob,
318 qtr( "Loop from point A to point B continuously.\nClick to set point A" ),
319 fromAtoB() );
320 timeA = timeB = 0;
321 /* in FS controller we skip this, because we dont want to have it double
322 controlled */
323 if( !b_fsCreation )
324 CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
325 this, AtoBLoop( float, int, int ) );
326 /* set up synchronization between main controller and fs controller */
327 CONNECT( THEMIM->getIM(), advControlsSetIcon(), this, setIcon() );
328 connect( this, SIGNAL( timeChanged() ),
329 THEMIM->getIM(), SIGNAL( advControlsSetIcon()));
330 #if 0
331 frameButton = new QPushButton( "Fr" );
332 frameButton->setMaximumSize( QSize( 26, 26 ) );
333 frameButton->setIconSize( QSize( 20, 20 ) );
334 advLayout->addWidget( frameButton );
335 BUTTON_SET_ACT( frameButton, "Fr", qtr( "Frame by frame" ), frame() );
336 #endif
338 recordButton = new QPushButton;
339 setupSmallButton( recordButton );
340 advLayout->addWidget( recordButton );
341 BUTTON_SET_ACT_I( recordButton, "", record,
342 qtr( "Record" ), record() );
344 /* Snapshot Button */
345 snapshotButton = new QPushButton;
346 setupSmallButton( snapshotButton );
347 advLayout->addWidget( snapshotButton );
348 BUTTON_SET_ACT_I( snapshotButton, "", snapshot,
349 qtr( "Take a snapshot" ), snapshot() );
352 AdvControlsWidget::~AdvControlsWidget()
355 void AdvControlsWidget::enableInput( bool enable )
357 ABButton->setEnabled( enable );
358 recordButton->setEnabled( enable );
361 void AdvControlsWidget::enableVideo( bool enable )
363 snapshotButton->setEnabled( enable );
364 #if 0
365 frameButton->setEnabled( enable );
366 #endif
369 void AdvControlsWidget::snapshot()
371 vout_thread_t *p_vout =
372 (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
373 if( p_vout ) vout_Control( p_vout, VOUT_SNAPSHOT );
376 /* Function called when the button is clicked() */
377 void AdvControlsWidget::fromAtoB()
379 if( !timeA )
381 timeA = var_GetTime( THEMIM->getInput(), "time" );
382 emit timeChanged();
383 return;
385 if( !timeB )
387 timeB = var_GetTime( THEMIM->getInput(), "time" );
388 var_SetTime( THEMIM->getInput(), "time" , timeA );
389 emit timeChanged();
390 return;
392 timeA = 0;
393 timeB = 0;
394 emit timeChanged();
397 /* setting/synchro icons after click on main or fs controller */
398 void AdvControlsWidget::setIcon()
400 if( !timeA && !timeB)
402 ABButton->setIcon( QIcon( ":/atob_nob" ) );
403 ABButton->setToolTip( qtr( "Loop from point A to point B continuously\nClick to set point A" ) );
405 else if( timeA && !timeB )
407 ABButton->setIcon( QIcon( ":/atob_noa" ) );
408 ABButton->setToolTip( qtr( "Click to set point B" ) );
410 else if( timeA && timeB )
412 ABButton->setIcon( QIcon( ":/atob" ) );
413 ABButton->setToolTip( qtr( "Stop the A to B loop" ) );
417 /* Function called regularly when in an AtoB loop */
418 void AdvControlsWidget::AtoBLoop( float f_pos, int i_time, int i_length )
420 if( timeB )
422 if( i_time >= (int)(timeB/1000000) )
423 var_SetTime( THEMIM->getInput(), "time" , timeA );
427 /* FIXME Record function */
428 void AdvControlsWidget::record(){}
430 #if 0
431 //FIXME Frame by frame function
432 void AdvControlsWidget::frame(){}
433 #endif
435 /*****************************
436 * DA Control Widget !
437 *****************************/
438 ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
439 MainInterface *_p_mi,
440 bool b_advControls,
441 bool b_shiny,
442 bool b_fsCreation) :
443 QFrame( _p_mi ), p_intf( _p_i )
445 setSizePolicy( QSizePolicy::Preferred , QSizePolicy::Maximum );
447 /** The main Slider **/
448 slider = new InputSlider( Qt::Horizontal, NULL );
449 /* Update the position when the IM has changed */
450 CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
451 slider, setPosition( float, int, int ) );
452 /* And update the IM, when the position has changed */
453 CONNECT( slider, sliderDragged( float ),
454 THEMIM->getIM(), sliderUpdate( float ) );
456 /** Slower and faster Buttons **/
457 slowerButton = new QToolButton;
458 slowerButton->setAutoRaise( true );
459 slowerButton->setMaximumSize( QSize( 26, 20 ) );
461 BUTTON_SET_ACT( slowerButton, "-", qtr( "Slower" ), slower() );
463 fasterButton = new QToolButton;
464 fasterButton->setAutoRaise( true );
465 fasterButton->setMaximumSize( QSize( 26, 20 ) );
467 BUTTON_SET_ACT( fasterButton, "+", qtr( "Faster" ), faster() );
469 /* advanced Controls handling */
470 b_advancedVisible = b_advControls;
472 advControls = new AdvControlsWidget( p_intf, b_fsCreation );
473 if( !b_advancedVisible ) advControls->hide();
475 /** Disc and Menus handling */
476 discFrame = new QWidget( this );
478 QHBoxLayout *discLayout = new QHBoxLayout( discFrame );
479 discLayout->setSpacing( 0 );
480 discLayout->setMargin( 0 );
482 prevSectionButton = new QPushButton( discFrame );
483 setupSmallButton( prevSectionButton );
484 discLayout->addWidget( prevSectionButton );
486 menuButton = new QPushButton( discFrame );
487 setupSmallButton( menuButton );
488 discLayout->addWidget( menuButton );
490 nextSectionButton = new QPushButton( discFrame );
491 setupSmallButton( nextSectionButton );
492 discLayout->addWidget( nextSectionButton );
494 BUTTON_SET_IMG( prevSectionButton, "", dvd_prev, "" );
495 BUTTON_SET_IMG( nextSectionButton, "", dvd_next, "" );
496 BUTTON_SET_IMG( menuButton, "", dvd_menu, qtr( "Menu" ) );
498 discFrame->hide();
500 /* Change the navigation button display when the IM navigation changes */
501 CONNECT( THEMIM->getIM(), navigationChanged( int ),
502 this, setNavigation( int ) );
503 /* Changes the IM navigation when triggered on the nav buttons */
504 CONNECT( prevSectionButton, clicked(), THEMIM->getIM(),
505 sectionPrev() );
506 CONNECT( nextSectionButton, clicked(), THEMIM->getIM(),
507 sectionNext() );
508 CONNECT( menuButton, clicked(), THEMIM->getIM(),
509 sectionMenu() );
512 * Telextext QFrame
513 * TODO: Merge with upper menu in a StackLayout
515 telexFrame = new QWidget( this );
516 QHBoxLayout *telexLayout = new QHBoxLayout( telexFrame );
517 telexLayout->setSpacing( 0 );
518 telexLayout->setMargin( 0 );
520 telexOn = new QPushButton;
521 setupSmallButton( telexOn );
522 telexLayout->addWidget( telexOn );
524 telexTransparent = new QPushButton;
525 setupSmallButton( telexTransparent );
526 telexLayout->addWidget( telexTransparent );
527 b_telexTransparent = false;
529 telexPage = new QSpinBox;
530 telexPage->setRange( 0, 999 );
531 telexPage->setValue( 100 );
532 telexPage->setAccelerated( true );
533 telexPage->setWrapping( true );
534 telexPage->setAlignment( Qt::AlignRight );
535 telexPage->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Minimum );
536 telexLayout->addWidget( telexPage );
538 telexFrame->hide(); /* default hidden */
540 CONNECT( telexPage, valueChanged( int ), THEMIM->getIM(),
541 telexGotoPage( int ) );
542 CONNECT( THEMIM->getIM(), setNewTelexPage( int ),
543 telexPage, setValue( int ) );
545 BUTTON_SET_IMG( telexOn, "", tv, qtr( "Teletext on" ) );
547 CONNECT( telexOn, clicked(), THEMIM->getIM(),
548 telexToggleButtons() );
549 CONNECT( telexOn, clicked( bool ), THEMIM->getIM(),
550 telexToggle( bool ) );
551 CONNECT( THEMIM->getIM(), toggleTelexButtons(),
552 this, toggleTeletext() );
553 b_telexEnabled = false;
554 telexTransparent->setEnabled( false );
555 telexPage->setEnabled( false );
557 BUTTON_SET_IMG( telexTransparent, "", tvtelx, qtr( "Teletext" ) );
558 CONNECT( telexTransparent, clicked( bool ),
559 THEMIM->getIM(), telexSetTransparency() );
560 CONNECT( THEMIM->getIM(), toggleTelexTransparency(),
561 this, toggleTeletextTransparency() );
562 CONNECT( THEMIM->getIM(), teletextEnabled( bool ),
563 this, enableTeletext( bool ) );
565 /** Play Buttons **/
566 QSizePolicy sizePolicy( QSizePolicy::Fixed, QSizePolicy::Fixed );
567 sizePolicy.setHorizontalStretch( 0 );
568 sizePolicy.setVerticalStretch( 0 );
570 /* Play */
571 playButton = new QPushButton;
572 playButton->setSizePolicy( sizePolicy );
573 playButton->setMaximumSize( QSize( 36, 36 ) );
574 playButton->setMinimumSize( QSize( 36, 36 ) );
575 playButton->setIconSize( QSize( 30, 30 ) );
578 /** Prev + Stop + Next Block **/
579 controlButLayout = new QHBoxLayout;
580 controlButLayout->setSpacing( 0 ); /* Don't remove that, will be useful */
582 /* Prev */
583 QPushButton *prevButton = new QPushButton;
584 prevButton->setSizePolicy( sizePolicy );
585 setupSmallButton( prevButton );
587 controlButLayout->addWidget( prevButton );
589 /* Stop */
590 QPushButton *stopButton = new QPushButton;
591 stopButton->setSizePolicy( sizePolicy );
592 setupSmallButton( stopButton );
594 controlButLayout->addWidget( stopButton );
596 /* next */
597 QPushButton *nextButton = new QPushButton;
598 nextButton->setSizePolicy( sizePolicy );
599 setupSmallButton( nextButton );
601 controlButLayout->addWidget( nextButton );
603 /* Add this block to the main layout */
605 BUTTON_SET_ACT_I( playButton, "", play_b, qtr( I_PLAY_TOOLTIP ), play() );
606 BUTTON_SET_ACT_I( prevButton, "" , previous_b,
607 qtr( "Previous media in the playlist" ), prev() );
608 BUTTON_SET_ACT_I( nextButton, "", next_b,
609 qtr( "Next media in the playlist" ), next() );
610 BUTTON_SET_ACT_I( stopButton, "", stop_b, qtr( "Stop playback" ), stop() );
613 * Other first Line buttons
615 /** Fullscreen/Visualisation **/
616 fullscreenButton = new QPushButton;
617 BUTTON_SET_ACT_I( fullscreenButton, "", fullscreen,
618 qtr( "Toggle the video in fullscreen" ), fullscreen() );
619 setupSmallButton( fullscreenButton );
621 if( !b_fsCreation )
623 /** Playlist Button **/
624 playlistButton = new QPushButton;
625 setupSmallButton( playlistButton );
626 BUTTON_SET_IMG( playlistButton, "" , playlist, qtr( "Show playlist" ) );
627 CONNECT( playlistButton, clicked(), _p_mi, togglePlaylist() );
629 /** extended Settings **/
630 extSettingsButton = new QPushButton;
631 BUTTON_SET_ACT_I( extSettingsButton, "", extended,
632 qtr( "Show extended settings" ), extSettings() );
633 setupSmallButton( extSettingsButton );
636 /* Volume */
637 hVolLabel = new VolumeClickHandler( p_intf, this );
639 volMuteLabel = new QLabel;
640 volMuteLabel->setPixmap( QPixmap( ":/volume-medium" ) );
641 volMuteLabel->installEventFilter( hVolLabel );
643 if( b_shiny )
645 volumeSlider = new SoundSlider( this,
646 config_GetInt( p_intf, "volume-step" ),
647 config_GetInt( p_intf, "qt-volume-complete" ),
648 config_GetPsz( p_intf, "qt-slider-colours" ) );
650 else
652 volumeSlider = new QSlider( this );
653 volumeSlider->setOrientation( Qt::Horizontal );
655 volumeSlider->setMaximumSize( QSize( 200, 40 ) );
656 volumeSlider->setMinimumSize( QSize( 85, 30 ) );
657 volumeSlider->setFocusPolicy( Qt::NoFocus );
659 /* Set the volume from the config */
660 volumeSlider->setValue( ( config_GetInt( p_intf, "volume" ) ) *
661 VOLUME_MAX / (AOUT_VOLUME_MAX/2) );
663 /* Force the update at build time in order to have a muted icon if needed */
664 updateVolume( volumeSlider->value() );
666 /* Volume control connection */
667 CONNECT( volumeSlider, valueChanged( int ), this, updateVolume( int ) );
668 CONNECT( THEMIM, volumeChanged( void ), this, updateVolume( void ) );
670 if( !b_fsCreation )
672 controlLayout = new QGridLayout( this );
674 controlLayout->setSpacing( 0 );
675 controlLayout->setLayoutMargins( 7, 5, 7, 3, 6 );
677 controlLayout->addWidget( slider, 0, 1, 1, 18 );
678 controlLayout->addWidget( slowerButton, 0, 0 );
679 controlLayout->addWidget( fasterButton, 0, 19 );
681 controlLayout->addWidget( discFrame, 1, 8, 2, 3, Qt::AlignBottom );
682 controlLayout->addWidget( telexFrame, 1, 8, 2, 5, Qt::AlignBottom );
684 controlLayout->addWidget( playButton, 2, 0, 2, 2, Qt::AlignBottom );
685 controlLayout->setColumnMinimumWidth( 2, 10 );
686 controlLayout->setColumnStretch( 2, 0 );
688 controlLayout->addLayout( controlButLayout, 3, 3, 1, 3, Qt::AlignBottom );
689 /* Column 6 is unused */
690 controlLayout->setColumnStretch( 6, 0 );
691 controlLayout->setColumnStretch( 7, 0 );
692 controlLayout->setColumnMinimumWidth( 7, 10 );
694 controlLayout->addWidget( fullscreenButton, 3, 8, Qt::AlignBottom );
695 controlLayout->addWidget( playlistButton, 3, 9, Qt::AlignBottom );
696 controlLayout->addWidget( extSettingsButton, 3, 10, Qt::AlignBottom );
697 controlLayout->setColumnStretch( 11, 0 ); /* telex alignment */
699 controlLayout->setColumnStretch( 12, 0 );
700 controlLayout->setColumnMinimumWidth( 12, 10 );
702 controlLayout->addWidget( advControls, 3, 13, 1, 3, Qt::AlignBottom );
704 controlLayout->setColumnStretch( 16, 10 );
705 controlLayout->setColumnMinimumWidth( 16, 10 );
707 controlLayout->addWidget( volMuteLabel, 3, 17, Qt::AlignBottom );
708 controlLayout->addWidget( volumeSlider, 3, 18, 1 , 2, Qt::AlignBottom );
711 updateInput();
714 ControlsWidget::~ControlsWidget()
717 void ControlsWidget::toggleTeletext()
719 bool b_enabled = THEMIM->teletextState();
720 if( b_telexEnabled )
722 telexTransparent->setEnabled( false );
723 telexPage->setEnabled( false );
724 b_telexEnabled = false;
726 else if( b_enabled )
728 telexTransparent->setEnabled( true );
729 telexPage->setEnabled( true );
730 b_telexEnabled = true;
734 void ControlsWidget::enableTeletext( bool b_enable )
736 telexFrame->setVisible( b_enable );
737 bool b_on = THEMIM->teletextState();
739 telexOn->setChecked( b_on );
740 telexTransparent->setEnabled( b_on );
741 telexPage->setEnabled( b_on );
742 b_telexEnabled = b_on;
745 void ControlsWidget::toggleTeletextTransparency()
747 if( b_telexTransparent )
749 telexTransparent->setIcon( QIcon( ":/tvtelx" ) );
750 telexTransparent->setToolTip( qtr( "Teletext" ) );
751 b_telexTransparent = false;
753 else
755 telexTransparent->setIcon( QIcon( ":/tvtelx-transparent" ) );
756 telexTransparent->setToolTip( qtr( "Transparent" ) );
757 b_telexTransparent = true;
761 void ControlsWidget::stop()
763 THEMIM->stop();
766 void ControlsWidget::play()
768 if( THEPL->current.i_size == 0 )
770 /* The playlist is empty, open a file requester */
771 THEDP->openFileDialog();
772 setStatus( 0 );
773 return;
775 THEMIM->togglePlayPause();
778 void ControlsWidget::prev()
780 THEMIM->prev();
783 void ControlsWidget::next()
785 THEMIM->next();
788 void ControlsWidget::setNavigation( int navigation )
790 #define HELP_PCH N_( "Previous chapter" )
791 #define HELP_NCH N_( "Next chapter" )
793 // 1 = chapter, 2 = title, 0 = no
794 if( navigation == 0 )
796 discFrame->hide();
797 } else if( navigation == 1 ) {
798 prevSectionButton->setToolTip( qfu( HELP_PCH ) );
799 nextSectionButton->setToolTip( qfu( HELP_NCH ) );
800 menuButton->show();
801 discFrame->show();
802 } else {
803 prevSectionButton->setToolTip( qfu( HELP_PCH ) );
804 nextSectionButton->setToolTip( qfu( HELP_NCH ) );
805 menuButton->hide();
806 discFrame->show();
810 static bool b_my_volume;
811 void ControlsWidget::updateVolume( int i_sliderVolume )
813 if( !b_my_volume )
815 int i_res = i_sliderVolume * (AOUT_VOLUME_MAX / 2) / VOLUME_MAX;
816 aout_VolumeSet( p_intf, i_res );
818 if( i_sliderVolume == 0 )
820 volMuteLabel->setPixmap( QPixmap(":/volume-muted" ) );
821 volMuteLabel->setToolTip( qtr( "Unmute" ) );
822 return;
825 if( i_sliderVolume < VOLUME_MAX / 3 )
826 volMuteLabel->setPixmap( QPixmap( ":/volume-low" ) );
827 else if( i_sliderVolume > (VOLUME_MAX * 2 / 3 ) )
828 volMuteLabel->setPixmap( QPixmap( ":/volume-high" ) );
829 else volMuteLabel->setPixmap( QPixmap( ":/volume-medium" ) );
830 volMuteLabel->setToolTip( qtr( "Mute" ) );
833 void ControlsWidget::updateVolume()
835 /* Audio part */
836 audio_volume_t i_volume;
837 aout_VolumeGet( p_intf, &i_volume );
838 i_volume = ( i_volume * VOLUME_MAX )/ (AOUT_VOLUME_MAX/2);
839 int i_gauge = volumeSlider->value();
840 b_my_volume = false;
841 if( i_volume - i_gauge > 1 || i_gauge - i_volume > 1 )
843 b_my_volume = true;
844 volumeSlider->setValue( i_volume );
845 b_my_volume = false;
849 void ControlsWidget::updateInput()
851 /* Activate the interface buttons according to the presence of the input */
852 enableInput( THEMIM->getIM()->hasInput() );
853 enableVideo( THEMIM->getIM()->hasVideo() && THEMIM->getIM()->hasInput() );
856 void ControlsWidget::setStatus( int status )
858 if( status == PLAYING_S ) /* Playing */
860 playButton->setIcon( QIcon( ":/pause_b" ) );
861 playButton->setToolTip( qtr( "Pause the playback" ) );
863 else
865 playButton->setIcon( QIcon( ":/play_b" ) );
866 playButton->setToolTip( qtr( I_PLAY_TOOLTIP ) );
871 * TODO
872 * This functions toggle the fullscreen mode
873 * If there is no video, it should first activate Visualisations...
874 * This has also to be fixed in enableVideo()
876 void ControlsWidget::fullscreen()
878 vout_thread_t *p_vout =
879 (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
880 if( p_vout)
882 var_SetBool( p_vout, "fullscreen", !var_GetBool( p_vout, "fullscreen" ) );
883 vlc_object_release( p_vout );
887 void ControlsWidget::extSettings()
889 THEDP->extendedDialog();
892 void ControlsWidget::slower()
894 THEMIM->getIM()->slower();
897 void ControlsWidget::faster()
899 THEMIM->getIM()->faster();
902 void ControlsWidget::enableInput( bool enable )
904 slowerButton->setEnabled( enable );
905 slider->setEnabled( enable );
906 slider->setSliderPosition ( 0 );
907 fasterButton->setEnabled( enable );
909 /* Advanced Buttons too */
910 advControls->enableInput( enable );
913 void ControlsWidget::enableVideo( bool enable )
915 // TODO Later make the fullscreenButton toggle Visualisation and so on.
916 fullscreenButton->setEnabled( enable );
918 /* Advanced Buttons too */
919 advControls->enableVideo( enable );
922 void ControlsWidget::toggleAdvanced()
924 if( advControls && !b_advancedVisible )
926 advControls->show();
927 b_advancedVisible = true;
929 else
931 advControls->hide();
932 b_advancedVisible = false;
934 emit advancedControlsToggled( b_advancedVisible );
938 /**********************************************************************
939 * Fullscrenn control widget
940 **********************************************************************/
941 FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i,
942 MainInterface *_p_mi, bool b_advControls, bool b_shiny )
943 : ControlsWidget( _p_i, _p_mi, b_advControls, b_shiny, true ),
944 i_mouse_last_x( -1 ), i_mouse_last_y( -1 ), b_mouse_over(false),
945 b_slow_hide_begin(false), i_slow_hide_timeout(1),
946 b_fullscreen( false ), i_hide_timeout( 1 ), p_vout(NULL)
948 setWindowFlags( Qt::ToolTip );
950 setFrameShape( QFrame::StyledPanel );
951 setFrameStyle( QFrame::Sunken );
952 setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum );
954 QGridLayout *fsLayout = new QGridLayout( this );
955 fsLayout->setLayoutMargins( 5, 1, 5, 1, 5 );
957 /* First line */
958 slider->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum);
959 fsLayout->addWidget( slowerButton, 0, 0 );
960 fsLayout->addWidget( slider, 0, 1, 1, 8 );
961 fsLayout->addWidget( fasterButton, 0, 9 );
963 fsLayout->addWidget( playButton, 1, 0, 1, 2 );
964 fsLayout->addLayout( controlButLayout, 1, 2 );
966 fsLayout->addWidget( discFrame, 1, 3 );
967 fsLayout->addWidget( telexFrame, 1, 4 );
968 fsLayout->addWidget( advControls, 1, 5, Qt::AlignVCenter );
969 fsLayout->addWidget( fullscreenButton, 1, 6 );
971 fsLayout->addWidget( volMuteLabel, 1, 7 );
972 fsLayout->addWidget( volumeSlider, 1, 8, 1, 2 );
974 /* hiding timer */
975 p_hideTimer = new QTimer( this );
976 CONNECT( p_hideTimer, timeout(), this, hideFSC() );
977 p_hideTimer->setSingleShot( true );
979 /* slow hiding timer */
980 #if HAVE_TRANSPARENCY
981 p_slowHideTimer = new QTimer( this );
982 CONNECT( p_slowHideTimer, timeout(), this, slowHideFSC() );
983 #endif
985 adjustSize (); /* need to get real width and height for moving */
987 /* center down */
988 QDesktopWidget * p_desktop = QApplication::desktop();
990 move( p_desktop->width() / 2 - width() / 2,
991 p_desktop->height() - height() );
993 #ifdef WIN32TRICK
994 setWindowOpacity( 0.0 );
995 fscHidden = true;
996 adjustSize();
997 show();
998 #endif
1000 vlc_mutex_init_recursive( &lock );
1003 FullscreenControllerWidget::~FullscreenControllerWidget()
1005 detachVout();
1006 vlc_mutex_destroy( &lock );
1010 * Show fullscreen controller
1012 void FullscreenControllerWidget::showFSC()
1014 adjustSize();
1015 #ifdef WIN32TRICK
1016 // after quiting and going to fs, we need to call show()
1017 if( isHidden() )
1018 show();
1020 if( fscHidden )
1022 fscHidden = false;
1023 setWindowOpacity( 1.0 );
1025 #else
1026 show();
1027 #endif
1029 #if HAVE_TRANSPARENCY
1030 setWindowOpacity( DEFAULT_OPACITY );
1031 #endif
1035 * Hide fullscreen controller
1036 * FIXME: under windows it have to be done by moving out of screen
1037 * because hide() doesnt work
1039 void FullscreenControllerWidget::hideFSC()
1041 #ifdef WIN32TRICK
1042 fscHidden = true;
1043 setWindowOpacity( 0.0 ); // simulate hidding
1044 #else
1045 hide();
1046 #endif
1050 * Plane to hide fullscreen controller
1052 void FullscreenControllerWidget::planHideFSC()
1054 vlc_mutex_lock( &lock );
1055 int i_timeout = i_hide_timeout;
1056 vlc_mutex_unlock( &lock );
1058 p_hideTimer->start( i_timeout );
1060 #if HAVE_TRANSPARENCY
1061 b_slow_hide_begin = true;
1062 i_slow_hide_timeout = i_timeout;
1063 p_slowHideTimer->start( i_slow_hide_timeout / 2 );
1064 #endif
1068 * Hidding fullscreen controller slowly
1069 * Linux: need composite manager
1070 * Windows: it is blinking, so it can be enabled by define TRASPARENCY
1072 void FullscreenControllerWidget::slowHideFSC()
1074 #if HAVE_TRANSPARENCY
1075 if( b_slow_hide_begin )
1077 b_slow_hide_begin = false;
1079 p_slowHideTimer->stop();
1080 /* the last part of time divided to 100 pieces */
1081 p_slowHideTimer->start( (int)( i_slow_hide_timeout / 2 / ( windowOpacity() * 100 ) ) );
1084 else
1086 #ifdef WIN32TRICK
1087 if ( windowOpacity() > 0.0 && !fscHidden )
1088 #else
1089 if ( windowOpacity() > 0.0 )
1090 #endif
1092 /* we should use 0.01 because of 100 pieces ^^^
1093 but than it cannt be done in time */
1094 setWindowOpacity( windowOpacity() - 0.02 );
1097 if ( windowOpacity() <= 0.0 )
1098 p_slowHideTimer->stop();
1100 #endif
1104 * event handling
1105 * events: show, hide, start timer for hidding
1107 void FullscreenControllerWidget::customEvent( QEvent *event )
1109 bool b_fs;
1111 switch( event->type() )
1113 case FullscreenControlToggle_Type:
1114 // FIXME
1115 TOGGLEV( this );
1116 break;
1117 case FullscreenControlShow_Type:
1118 vlc_mutex_lock( &lock );
1119 b_fs = b_fullscreen;
1120 vlc_mutex_unlock( &lock );
1122 if( b_fs ) // FIXME I am not sure about that one
1123 showFSC();
1124 break;
1125 case FullscreenControlHide_Type:
1126 hideFSC();
1127 break;
1128 case FullscreenControlPlanHide_Type:
1129 if( !b_mouse_over ) // Only if the mouse is not over FSC
1130 planHideFSC();
1131 break;
1136 * On mouse move
1137 * moving with FSC
1139 void FullscreenControllerWidget::mouseMoveEvent( QMouseEvent *event )
1141 if ( event->buttons() == Qt::LeftButton )
1143 int i_moveX = event->globalX() - i_mouse_last_x;
1144 int i_moveY = event->globalY() - i_mouse_last_y;
1146 move( x() + i_moveX, y() + i_moveY );
1148 i_mouse_last_x = event->globalX();
1149 i_mouse_last_y = event->globalY();
1154 * On mouse press
1155 * store position of cursor
1157 void FullscreenControllerWidget::mousePressEvent( QMouseEvent *event )
1159 i_mouse_last_x = event->globalX();
1160 i_mouse_last_y = event->globalY();
1164 * On mouse go above FSC
1166 void FullscreenControllerWidget::enterEvent( QEvent *event )
1168 b_mouse_over = true;
1170 p_hideTimer->stop();
1171 #if HAVE_TRANSPARENCY
1172 p_slowHideTimer->stop();
1173 #endif
1177 * On mouse go out from FSC
1179 void FullscreenControllerWidget::leaveEvent( QEvent *event )
1181 planHideFSC();
1183 b_mouse_over = false;
1187 * When you get pressed key, send it to video output
1188 * FIXME: clearing focus by clearFocus() to not getting
1189 * key press events didnt work
1191 void FullscreenControllerWidget::keyPressEvent( QKeyEvent *event )
1193 int i_vlck = qtEventToVLCKey( event );
1194 if( i_vlck > 0 )
1196 var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlck );
1197 event->accept();
1199 else
1200 event->ignore();
1203 /* */
1204 static int FullscreenControllerWidgetFullscreenChanged( vlc_object_t *vlc_object, const char *variable,
1205 vlc_value_t old_val, vlc_value_t new_val,
1206 void *data )
1208 vout_thread_t *p_vout = (vout_thread_t *) vlc_object;
1209 FullscreenControllerWidget *p_fs = (FullscreenControllerWidget *)data;
1211 p_fs->fullscreenChanged( p_vout, new_val.b_bool, var_GetInteger( p_vout, "mouse-hide-timeout" ) );
1213 return VLC_SUCCESS;
1215 /* */
1216 static int FullscreenControllerWidgetMouseMoved( vlc_object_t *vlc_object, const char *variable,
1217 vlc_value_t old_val, vlc_value_t new_val,
1218 void *data )
1220 FullscreenControllerWidget *p_fs = (FullscreenControllerWidget *)data;
1222 /* Show event */
1223 IMEvent *eShow = new IMEvent( FullscreenControlShow_Type, 0 );
1224 QApplication::postEvent( p_fs, static_cast<QEvent *>(eShow) );
1226 /* Plan hide event */
1227 IMEvent *eHide = new IMEvent( FullscreenControlPlanHide_Type, 0 );
1228 QApplication::postEvent( p_fs, static_cast<QEvent *>(eHide) );
1230 return VLC_SUCCESS;
1235 * It is called when video start
1237 void FullscreenControllerWidget::attachVout( vout_thread_t *p_nvout )
1239 assert( p_nvout && !p_vout );
1241 p_vout = p_nvout;
1243 vlc_mutex_lock( &lock );
1244 var_AddCallback( p_vout, "fullscreen", FullscreenControllerWidgetFullscreenChanged, this ); /* I miss a add and fire */
1245 fullscreenChanged( p_vout, var_GetBool( p_vout, "fullscreen" ), var_GetInteger( p_vout, "mouse-hide-timeout" ) );
1246 vlc_mutex_unlock( &lock );
1249 * It is called after turn off video.
1251 void FullscreenControllerWidget::detachVout()
1253 if( p_vout )
1255 var_DelCallback( p_vout, "fullscreen", FullscreenControllerWidgetFullscreenChanged, this );
1256 vlc_mutex_lock( &lock );
1257 fullscreenChanged( p_vout, false, 0 );
1258 vlc_mutex_unlock( &lock );
1259 p_vout = NULL;
1264 * Register and unregister callback for mouse moving
1266 void FullscreenControllerWidget::fullscreenChanged( vout_thread_t *p_vout, bool b_fs, int i_timeout )
1268 vlc_mutex_lock( &lock );
1269 if( b_fs && !b_fullscreen )
1271 b_fullscreen = true;
1272 i_hide_timeout = i_timeout;
1273 var_AddCallback( p_vout, "mouse-moved", FullscreenControllerWidgetMouseMoved, this );
1275 else if( !b_fs && b_fullscreen )
1277 b_fullscreen = false;
1278 i_hide_timeout = i_timeout;
1279 var_DelCallback( p_vout, "mouse-moved", FullscreenControllerWidgetMouseMoved, this );
1281 /* Force fs hidding */
1282 IMEvent *eHide = new IMEvent( FullscreenControlHide_Type, 0 );
1283 QApplication::postEvent( this, static_cast<QEvent *>(eHide) );
1285 vlc_mutex_unlock( &lock );
1288 /**********************************************************************
1289 * Speed control widget
1290 **********************************************************************/
1291 SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i ) :
1292 QFrame( NULL ), p_intf( _p_i )
1294 QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
1295 sizePolicy.setHorizontalStretch( 0 );
1296 sizePolicy.setVerticalStretch( 0 );
1298 speedSlider = new QSlider;
1299 speedSlider->setSizePolicy( sizePolicy );
1300 speedSlider->setMaximumSize( QSize( 80, 200 ) );
1301 speedSlider->setOrientation( Qt::Vertical );
1302 speedSlider->setTickPosition( QSlider::TicksRight );
1304 speedSlider->setRange( -24, 24 );
1305 speedSlider->setSingleStep( 1 );
1306 speedSlider->setPageStep( 1 );
1307 speedSlider->setTickInterval( 12 );
1309 CONNECT( speedSlider, valueChanged( int ), this, updateRate( int ) );
1311 QToolButton *normalSpeedButton = new QToolButton( this );
1312 normalSpeedButton->setMaximumSize( QSize( 26, 20 ) );
1313 normalSpeedButton->setAutoRaise( true );
1314 normalSpeedButton->setText( "1x" );
1315 normalSpeedButton->setToolTip( qtr( "Revert to normal play speed" ) );
1317 CONNECT( normalSpeedButton, clicked(), this, resetRate() );
1319 QVBoxLayout *speedControlLayout = new QVBoxLayout;
1320 speedControlLayout->setLayoutMargins( 4, 4, 4, 4, 4 );
1321 speedControlLayout->setSpacing( 4 );
1322 speedControlLayout->addWidget( speedSlider );
1323 speedControlLayout->addWidget( normalSpeedButton );
1324 setLayout( speedControlLayout );
1327 SpeedControlWidget::~SpeedControlWidget()
1330 void SpeedControlWidget::setEnable( bool b_enable )
1332 speedSlider->setEnabled( b_enable );
1335 void SpeedControlWidget::updateControls( int rate )
1337 if( speedSlider->isSliderDown() )
1339 //We don't want to change anything if the user is using the slider
1340 return;
1343 double value = 12 * log( (double)INPUT_RATE_DEFAULT / rate ) / log( 2 );
1344 int sliderValue = (int) ( ( value > 0 ) ? value + .5 : value - .5 );
1346 if( sliderValue < speedSlider->minimum() )
1348 sliderValue = speedSlider->minimum();
1350 else if( sliderValue > speedSlider->maximum() )
1352 sliderValue = speedSlider->maximum();
1355 //Block signals to avoid feedback loop
1356 speedSlider->blockSignals( true );
1357 speedSlider->setValue( sliderValue );
1358 speedSlider->blockSignals( false );
1361 void SpeedControlWidget::updateRate( int sliderValue )
1363 double speed = pow( 2, (double)sliderValue / 12 );
1364 int rate = INPUT_RATE_DEFAULT / speed;
1366 THEMIM->getIM()->setRate(rate);
1369 void SpeedControlWidget::resetRate()
1371 THEMIM->getIM()->setRate(INPUT_RATE_DEFAULT);