]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.cpp
Attempt to fix crashes on the extended panel.
[vlc] / modules / gui / qt4 / components / extended_panels.cpp
1 /*****************************************************************************
2  * extended_panels.cpp : Extended controls panels
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Antoine Cellerier <dionoea .t videolan d@t org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * ( at your option ) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <QLabel>
29 #include <QVariant>
30 #include <QString>
31 #include <QFont>
32 #include <QGridLayout>
33 #include <QSignalMapper>
34 #include <QComboBox>
35
36 #include "components/extended_panels.hpp"
37 #include "dialogs/preferences.hpp"
38 #include "dialogs_provider.hpp"
39 #include "qt4.hpp"
40 #include "input_manager.hpp"
41
42 #include "../../audio_filter/equalizer_presets.h"
43 #include <vlc_aout.h>
44 #include <vlc_intf_strings.h>
45 #include <vlc_vout.h>
46 #include <vlc_osd.h>
47
48
49 #if 0
50 class ConfClickHandler : public QObject
51 {
52 public:
53     ConfClickHandler( intf_thread_t *_p_intf, ExtVideo *_e ) : QObject ( _e ) {
54         e = _e; p_intf = _p_intf;
55     }
56     virtual ~ConfClickHandler() {}
57     bool eventFilter( QObject *obj, QEvent *evt )
58     {
59         if( evt->type() == QEvent::MouseButtonPress )
60         {
61             e->gotoConf( obj );
62             return true;
63         }
64         return false;
65     }
66 private:
67     ExtVideo* e;
68     intf_thread_t *p_intf;
69 };
70 #endif
71
72 QString ModuleFromWidgetName( QObject *obj )
73 {
74     return obj->objectName().replace( "Enable","" );
75 }
76
77 QString OptionFromWidgetName( QObject *obj )
78 {
79     /* Gruik ? ... nah */
80     QString option = obj->objectName().replace( "Slider", "" )
81                                       .replace( "Combo" , "" )
82                                       .replace( "Dial"  , "" )
83                                       .replace( "Check" , "" )
84                                       .replace( "Spin"  , "" )
85                                       .replace( "Text"  , "" );
86     for( char a = 'A'; a <= 'Z'; a++ )
87     {
88         option = option.replace( QString( a ),
89                                  QString( '-' ) + QString( a + 'a' - 'A' ) );
90     }
91     return option;
92 }
93
94 ExtVideo::ExtVideo( intf_thread_t *_p_intf, QTabWidget *_parent ) :
95                            p_intf( _p_intf )
96 {
97     ui.setupUi( _parent );
98
99 #define SETUP_VFILTER( widget ) \
100     { \
101         vlc_object_t *p_obj = ( vlc_object_t * ) \
102             vlc_object_find_name( p_intf->p_libvlc, \
103                                   #widget, \
104                                   FIND_CHILD ); \
105         QCheckBox *checkbox = qobject_cast<QCheckBox*>( ui.widget##Enable ); \
106         QGroupBox *groupbox = qobject_cast<QGroupBox*>( ui.widget##Enable ); \
107         if( p_obj ) \
108         { \
109             vlc_object_release( p_obj ); \
110             if( checkbox ) checkbox->setChecked( true ); \
111             else groupbox->setChecked( true ); \
112         } \
113         else \
114         { \
115             if( checkbox ) checkbox->setChecked( false ); \
116             else groupbox->setChecked( false ); \
117         } \
118     } \
119     CONNECT( ui.widget##Enable, clicked(), this, updateFilters() );
120 #define SETUP_VFILTER_OPTION( widget, signal ) \
121     initComboBoxItems( ui.widget ); \
122     setWidgetValue( ui.widget ); \
123     CONNECT( ui.widget, signal, this, updateFilterOptions() );
124
125     SETUP_VFILTER( adjust )
126     SETUP_VFILTER_OPTION( hueSlider, valueChanged( int ) )
127     SETUP_VFILTER_OPTION( contrastSlider, valueChanged( int ) )
128     SETUP_VFILTER_OPTION( brightnessSlider, valueChanged( int ) )
129     SETUP_VFILTER_OPTION( saturationSlider, valueChanged( int ) )
130     SETUP_VFILTER_OPTION( gammaSlider, valueChanged( int ) )
131     SETUP_VFILTER_OPTION( brightnessThresholdCheck, stateChanged( int ) )
132
133     SETUP_VFILTER( extract )
134     SETUP_VFILTER_OPTION( extractComponentText, textChanged( QString ) )
135
136     SETUP_VFILTER( colorthres )
137     SETUP_VFILTER_OPTION( colorthresColorText, textChanged( QString ) )
138     SETUP_VFILTER_OPTION( colorthresSaturationthresSlider, valueChanged( int ) )
139     SETUP_VFILTER_OPTION( colorthresSimilaritythresSlider, valueChanged( int ) )
140
141     SETUP_VFILTER( invert )
142
143     SETUP_VFILTER( gradient )
144     SETUP_VFILTER_OPTION( gradientModeCombo, currentIndexChanged( QString ) )
145     SETUP_VFILTER_OPTION( gradientTypeCheck, stateChanged( int ) )
146     SETUP_VFILTER_OPTION( gradientCartoonCheck, stateChanged( int ) )
147
148     SETUP_VFILTER( motionblur )
149     SETUP_VFILTER_OPTION( blurFactorSlider, valueChanged( int ) )
150
151     SETUP_VFILTER( motiondetect )
152
153     SETUP_VFILTER( noise )
154
155     SETUP_VFILTER( psychedelic )
156
157     SETUP_VFILTER( sharpen )
158     SETUP_VFILTER_OPTION( sharpenSigmaSlider, valueChanged( int ) )
159
160     SETUP_VFILTER( ripple )
161
162     SETUP_VFILTER( wave )
163
164     SETUP_VFILTER( transform )
165     SETUP_VFILTER_OPTION( transformTypeCombo, currentIndexChanged( QString ) )
166
167     SETUP_VFILTER( rotate )
168     SETUP_VFILTER_OPTION( rotateAngleDial, valueChanged( int ) )
169     ui.rotateAngleDial->setWrapping( true );
170     ui.rotateAngleDial->setNotchesVisible( true );
171
172     SETUP_VFILTER( puzzle )
173     SETUP_VFILTER_OPTION( puzzleRowsSpin, valueChanged( int ) )
174     SETUP_VFILTER_OPTION( puzzleColsSpin, valueChanged( int ) )
175     SETUP_VFILTER_OPTION( puzzleBlackSlotCheck, stateChanged( int ) )
176
177     SETUP_VFILTER( magnify )
178
179     SETUP_VFILTER( clone )
180     SETUP_VFILTER_OPTION( cloneCountSpin, valueChanged( int ) )
181
182     SETUP_VFILTER( wall )
183     SETUP_VFILTER_OPTION( wallRowsSpin, valueChanged( int ) )
184     SETUP_VFILTER_OPTION( wallColsSpin, valueChanged( int ) )
185
186     SETUP_VFILTER( panoramix )
187     SETUP_VFILTER_OPTION( panoramixRowsSpin, valueChanged( int ) )
188     SETUP_VFILTER_OPTION( panoramixColsSpin, valueChanged( int ) )
189
190
191     SETUP_VFILTER( erase )
192     SETUP_VFILTER_OPTION( eraseMaskText, editingFinished() )
193     SETUP_VFILTER_OPTION( eraseYSpin, valueChanged( int ) )
194     SETUP_VFILTER_OPTION( eraseXSpin, valueChanged( int ) )
195
196     SETUP_VFILTER( marq )
197     SETUP_VFILTER_OPTION( marqMarqueeText, textChanged( QString ) )
198     SETUP_VFILTER_OPTION( marqPositionCombo, currentIndexChanged( QString ) )
199
200     SETUP_VFILTER( logo )
201     SETUP_VFILTER_OPTION( logoFileText, editingFinished() )
202     SETUP_VFILTER_OPTION( logoYSpin, valueChanged( int ) )
203     SETUP_VFILTER_OPTION( logoXSpin, valueChanged( int ) )
204     SETUP_VFILTER_OPTION( logoTransparencySlider, valueChanged( int ) )
205
206 #undef SETUP_VFILTER
207 #undef SETUP_VFILTER_OPTION
208
209     CONNECT( ui.cropTopPx, valueChanged( int ), this, cropChange() );
210     CONNECT( ui.cropBotPx, valueChanged( int ), this, cropChange() );
211     CONNECT( ui.cropLeftPx, valueChanged( int ), this, cropChange() );
212     CONNECT( ui.cropRightPx, valueChanged( int ), this, cropChange() );
213     CONNECT( ui.topBotCropSync, toggled( bool ),
214              ui.cropBotPx, setDisabled( bool ) );
215     CONNECT( ui.leftRightCropSync, toggled( bool ),
216              ui.cropRightPx, setDisabled( bool ) );
217 }
218
219 ExtVideo::~ExtVideo()
220 {
221 }
222
223 void ExtVideo::cropChange()
224 {
225     p_vout = ( vout_thread_t * )vlc_object_find( p_intf,
226                                 VLC_OBJECT_VOUT, FIND_CHILD );
227     if( p_vout )
228     {
229         var_SetInteger( p_vout, "crop-top", ui.cropTopPx->value() );
230         var_SetInteger( p_vout, "crop-bottom", ui.cropBotPx->value() );
231         var_SetInteger( p_vout, "crop-left", ui.cropLeftPx->value() );
232         var_SetInteger( p_vout, "crop-right", ui.cropRightPx->value() );
233     }
234 }
235
236 void ExtVideo::ChangeVFiltersString( char *psz_name, bool b_add )
237 {
238     char *psz_parser, *psz_string;
239     const char *psz_filter_type;
240
241     /* Please leave p_libvlc_global. This is where cached modules are
242      * stored. We're not trying to find a module instance. */
243     module_t *p_obj = module_Find( p_intf, psz_name );
244     if( !p_obj )
245     {
246         msg_Err( p_intf, "Unable to find filter module \"%s\n.", psz_name );
247         return;
248     }
249
250     if( module_IsCapable( p_obj, "video filter2" ) )
251     {
252         psz_filter_type = "video-filter";
253     }
254     else if( module_IsCapable( p_obj, "video filter" ) )
255     {
256         psz_filter_type = "vout-filter";
257     }
258     else if( module_IsCapable( p_obj, "sub filter" ) )
259     {
260         psz_filter_type = "sub-filter";
261     }
262     else
263     {
264         module_Put( p_obj );
265         msg_Err( p_intf, "Unknown video filter type." );
266         return;
267     }
268     module_Put( p_obj );
269
270     psz_string = config_GetPsz( p_intf, psz_filter_type );
271
272     if( !psz_string ) psz_string = strdup( "" );
273
274     psz_parser = strstr( psz_string, psz_name );
275
276     if( b_add )
277     {
278         if( !psz_parser )
279         {
280             psz_parser = psz_string;
281             if( asprintf( &psz_string, ( *psz_string ) ? "%s:%s" : "%s%s",
282                             psz_string, psz_name ) == -1 )
283                 return;
284             free( psz_parser );
285         }
286         else
287         {
288             return;
289         }
290     }
291     else
292     {
293         if( psz_parser )
294         {
295             if( *( psz_parser + strlen( psz_name ) ) == ':' )
296             {
297                 memmove( psz_parser, psz_parser + strlen( psz_name ) + 1,
298                          strlen( psz_parser + strlen( psz_name ) + 1 ) + 1 );
299             }
300             else
301             {
302                 *psz_parser = '\0';
303             }
304
305             /* Remove trailing : : */
306             if( strlen( psz_string ) > 0 &&
307                 *( psz_string + strlen( psz_string ) -1 ) == ':' )
308             {
309                 *( psz_string + strlen( psz_string ) -1 ) = '\0';
310             }
311         }
312         else
313         {
314             free( psz_string );
315             return;
316         }
317     }
318     /* Vout is not kept, so put that in the config */
319     config_PutPsz( p_intf, psz_filter_type, psz_string );
320     if( !strcmp( psz_filter_type, "video-filter" ) )
321         ui.videoFilterText->setText( psz_string );
322     else if( !strcmp( psz_filter_type, "vout-filter" ) )
323         ui.voutFilterText->setText( psz_string );
324     else if( !strcmp( psz_filter_type, "sub-filter" ) )
325         ui.subpictureFilterText->setText( psz_string );
326
327     /* Try to set on the fly */
328     p_vout = ( vout_thread_t * )vlc_object_find( p_intf, VLC_OBJECT_VOUT,
329                                               FIND_ANYWHERE );
330     if( p_vout )
331     {
332         if( !strcmp( psz_filter_type, "sub-filter" ) )
333             var_SetString( p_vout->p_spu, psz_filter_type, psz_string );
334         else
335             var_SetString( p_vout, psz_filter_type, psz_string );
336         vlc_object_release( p_vout );
337     }
338
339     free( psz_string );
340 }
341
342 void ExtVideo::updateFilters()
343 {
344     QString module = ModuleFromWidgetName( sender() );
345     //std::cout << "Module name: " << module.toStdString() << std::endl;
346
347     QCheckBox *checkbox = qobject_cast<QCheckBox*>( sender() );
348     QGroupBox *groupbox = qobject_cast<QGroupBox*>( sender() );
349
350     ChangeVFiltersString( qtu( module ),
351                           checkbox ? checkbox->isChecked()
352                                    : groupbox->isChecked() );
353 }
354
355 void ExtVideo::initComboBoxItems( QObject *widget )
356 {
357     QComboBox *combobox = qobject_cast<QComboBox*>( widget );
358     if( !combobox ) return;
359     QString option = OptionFromWidgetName( widget );
360     module_config_t *p_item = config_FindConfig( VLC_OBJECT( p_intf ),
361                                                  qtu( option ) );
362     if( p_item )
363     {
364         int i_type = p_item->i_type & CONFIG_ITEM;
365         for( int i_index = 0; i_index < p_item->i_list; i_index++ )
366         {
367             if( i_type == CONFIG_ITEM_INTEGER
368              || i_type == CONFIG_ITEM_BOOL )
369                 combobox->addItem( qfu( p_item->ppsz_list_text[i_index] ),
370                                    p_item->pi_list[i_index] );
371             else if( i_type == CONFIG_ITEM_STRING )
372                 combobox->addItem( qfu( p_item->ppsz_list_text[i_index] ),
373                                    p_item->ppsz_list[i_index] );
374         }
375     }
376     else
377     {
378         msg_Err( p_intf, "Couldn't find option \"%s\".",
379                  qtu( option ) );
380     }
381 }
382
383 void ExtVideo::setWidgetValue( QObject *widget )
384 {
385     QString module = ModuleFromWidgetName( widget->parent() );
386     //std::cout << "Module name: " << module.toStdString() << std::endl;
387     QString option = OptionFromWidgetName( widget );
388     //std::cout << "Option name: " << option.toStdString() << std::endl;
389
390     vlc_object_t *p_obj = ( vlc_object_t * )
391         vlc_object_find_name( p_intf->p_libvlc,
392                               qtu( module ),
393                               FIND_CHILD );
394     int i_type;
395     vlc_value_t val;
396
397     if( !p_obj )
398     {
399 #if 0
400         msg_Dbg( p_intf,
401                  "Module instance %s not found, looking in config values.",
402                  qtu( module ) );
403 #endif
404         i_type = config_GetType( p_intf, qtu( option ) ) & 0xf0;
405         switch( i_type )
406         {
407             case VLC_VAR_INTEGER:
408             case VLC_VAR_BOOL:
409                 val.i_int = config_GetInt( p_intf, qtu( option ) );
410                 break;
411             case VLC_VAR_FLOAT:
412                 val.f_float = config_GetFloat( p_intf, qtu( option ) );
413                 break;
414             case VLC_VAR_STRING:
415                 val.psz_string = config_GetPsz( p_intf, qtu( option ) );
416                 break;
417         }
418     }
419     else
420     {
421         i_type = var_Type( p_obj, qtu( option ) ) & 0xf0;
422         var_Get( p_obj, qtu( option ), &val );
423         vlc_object_release( p_obj );
424     }
425
426     /* Try to cast to all the widgets we're likely to encounter. Only
427      * one of the casts is expected to work. */
428     QSlider        *slider        = qobject_cast<QSlider*>       ( widget );
429     QCheckBox      *checkbox      = qobject_cast<QCheckBox*>     ( widget );
430     QSpinBox       *spinbox       = qobject_cast<QSpinBox*>      ( widget );
431     QDoubleSpinBox *doublespinbox = qobject_cast<QDoubleSpinBox*>( widget );
432     QDial          *dial          = qobject_cast<QDial*>         ( widget );
433     QLineEdit      *lineedit      = qobject_cast<QLineEdit*>     ( widget );
434     QComboBox      *combobox      = qobject_cast<QComboBox*>     ( widget );
435
436     if( i_type == VLC_VAR_INTEGER || i_type == VLC_VAR_BOOL )
437     {
438         int i_int = 0;
439         if( slider )        slider->setValue( val.i_int );
440         else if( checkbox ) checkbox->setCheckState( val.i_int? Qt::Checked
441                                                               : Qt::Unchecked );
442         else if( spinbox )  spinbox->setValue( val.i_int );
443         else if( dial )     dial->setValue( ( 540-val.i_int )%360 );
444         else if( lineedit )
445         {
446             char str[30];
447             sprintf( str, "%06X", val.i_int );
448             lineedit->setText( str );
449         }
450         else if( combobox ) combobox->setCurrentIndex(
451                             combobox->findData( val.i_int ) );
452         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
453     }
454     else if( i_type == VLC_VAR_FLOAT )
455     {
456         double f_float = 0;
457         if( slider ) slider->setValue( ( int )( val.f_float*( double )slider->tickInterval() ) ); /* hack alert! */
458         else if( doublespinbox ) doublespinbox->setValue( val.f_float );
459         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
460     }
461     else if( i_type == VLC_VAR_STRING )
462     {
463         if( lineedit ) lineedit->setText( qfu( val.psz_string ) );
464         else if( combobox ) combobox->setCurrentIndex(
465                             combobox->findData( qfu( val.psz_string ) ) );
466         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
467         free( val.psz_string );
468     }
469     else
470         msg_Err( p_intf,
471                  "Module %s's %s variable is of an unsupported type ( %d )",
472                  qtu( module ),
473                  qtu( option ),
474                  i_type );
475 }
476
477 void ExtVideo::updateFilterOptions()
478 {
479     QString module = ModuleFromWidgetName( sender()->parent() );
480     //std::cout << "Module name: " << module.toStdString() << std::endl;
481     QString option = OptionFromWidgetName( sender() );
482     //std::cout << "Option name: " << option.toStdString() << std::endl;
483
484     vlc_object_t *p_obj = ( vlc_object_t * )
485         vlc_object_find_name( p_intf->p_libvlc,
486                               qtu( module ),
487                               FIND_CHILD );
488     if( !p_obj )
489     {
490         msg_Err( p_intf, "Module %s not found.", qtu( module ) );
491         return;
492     }
493
494     int i_type = var_Type( p_obj, qtu( option ) );
495     bool b_is_command = ( i_type & VLC_VAR_ISCOMMAND );
496     if( !b_is_command )
497     {
498         msg_Warn( p_intf, "Module %s's %s variable isn't a command. You'll need to restart the filter to take change into account.",
499                  qtu( module ),
500                  qtu( option ) );
501         /* FIXME: restart automatically somewhere near the end of this function */
502     }
503
504     /* Try to cast to all the widgets we're likely to encounter. Only
505      * one of the casts is expected to work. */
506     QSlider        *slider        = qobject_cast<QSlider*>       ( sender() );
507     QCheckBox      *checkbox      = qobject_cast<QCheckBox*>     ( sender() );
508     QSpinBox       *spinbox       = qobject_cast<QSpinBox*>      ( sender() );
509     QDoubleSpinBox *doublespinbox = qobject_cast<QDoubleSpinBox*>( sender() );
510     QDial          *dial          = qobject_cast<QDial*>         ( sender() );
511     QLineEdit      *lineedit      = qobject_cast<QLineEdit*>     ( sender() );
512     QComboBox      *combobox      = qobject_cast<QComboBox*>     ( sender() );
513
514     i_type &= 0xf0;
515     if( i_type == VLC_VAR_INTEGER || i_type == VLC_VAR_BOOL )
516     {
517         int i_int = 0;
518         if( slider )        i_int = slider->value();
519         else if( checkbox ) i_int = checkbox->checkState() == Qt::Checked;
520         else if( spinbox )  i_int = spinbox->value();
521         else if( dial )     i_int = ( 540-dial->value() )%360;
522         else if( lineedit ) i_int = lineedit->text().toInt( NULL,16 );
523         else if( combobox ) i_int = combobox->itemData( combobox->currentIndex() ).toInt();
524         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
525         config_PutInt( p_intf, qtu( option ), i_int );
526         if( b_is_command )
527         {
528             if( i_type == VLC_VAR_INTEGER )
529                 var_SetInteger( p_obj, qtu( option ), i_int );
530             else
531                 var_SetBool( p_obj, qtu( option ), i_int );
532         }
533     }
534     else if( i_type == VLC_VAR_FLOAT )
535     {
536         double f_float = 0;
537         if( slider )             f_float = ( double )slider->value()
538                                          / ( double )slider->tickInterval(); /* hack alert! */
539         else if( doublespinbox ) f_float = doublespinbox->value();
540         else if( lineedit ) f_float = lineedit->text().toDouble();
541         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
542         config_PutFloat( p_intf, qtu( option ), f_float );
543         if( b_is_command )
544             var_SetFloat( p_obj, qtu( option ), f_float );
545     }
546     else if( i_type == VLC_VAR_STRING )
547     {
548         char *psz_string = NULL;
549         if( lineedit ) psz_string = strdup( qtu( lineedit->text() ) );
550         else if( combobox ) psz_string = strdup( qtu( combobox->itemData(
551                                        combobox->currentIndex() ).toString() ) );
552         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
553         config_PutPsz( p_intf, qtu( option ), psz_string );
554         if( b_is_command )
555             var_SetString( p_obj, qtu( option ), psz_string );
556         free( psz_string );
557     }
558     else
559         msg_Err( p_intf,
560                  "Module %s's %s variable is of an unsupported type ( %d )",
561                  qtu( module ),
562                  qtu( option ),
563                  i_type );
564
565     vlc_object_release( p_obj );
566 }
567
568 #if 0
569 void ExtVideo::gotoConf( QObject* src )
570 {
571 #define SHOWCONF( module ) \
572     if( src->objectName().contains( module ) ) \
573     { \
574         PrefsDialog::getInstance( p_intf )->showModulePrefs( module ); \
575         return; \
576     }
577     SHOWCONF( "clone" );
578     SHOWCONF( "magnify" );
579     SHOWCONF( "wave" );
580     SHOWCONF( "ripple" );
581     SHOWCONF( "invert" );
582     SHOWCONF( "puzzle" );
583     SHOWCONF( "wall" );
584     SHOWCONF( "gradient" );
585     SHOWCONF( "colorthres" )
586 }
587 #endif
588
589 /**********************************************************************
590  * v4l2 controls
591  **********************************************************************/
592
593 ExtV4l2::ExtV4l2( intf_thread_t *_p_intf, QWidget *_parent )
594     : QWidget( _parent ), p_intf( _p_intf )
595 {
596     ui.setupUi( this );
597
598     BUTTONACT( ui.refresh, Refresh() );
599
600     box = NULL;
601 }
602
603 ExtV4l2::~ExtV4l2()
604 {
605     if( box )
606         delete box;
607 }
608
609 void ExtV4l2::showEvent( QShowEvent *event )
610 {
611     QWidget::showEvent( event );
612     Refresh();
613 }
614
615 void ExtV4l2::Refresh( void )
616 {
617     vlc_object_t *p_obj = (vlc_object_t*)vlc_object_find_name( p_intf, "v4l2", FIND_ANYWHERE );
618     ui.help->hide();
619     if( box )
620     {
621         ui.vboxLayout->removeWidget( box );
622         delete box;
623         box = NULL;
624     }
625     if( p_obj )
626     {
627         vlc_value_t val, text, name;
628         int i_ret = var_Change( p_obj, "controls", VLC_VAR_GETCHOICES,
629                                 &val, &text );
630         if( i_ret < 0 )
631         {
632             msg_Err( p_intf, "Oops, v4l2 object doesn't have a 'controls' variable." );
633             ui.help->show();
634             vlc_object_release( p_obj );
635             return;
636         }
637
638         box = new QGroupBox( this );
639         ui.vboxLayout->addWidget( box );
640         QVBoxLayout *layout = new QVBoxLayout( box );
641         box->setLayout( layout );
642
643         for( int i = 0; i < val.p_list->i_count; i++ )
644         {
645             const char *psz_var = text.p_list->p_values[i].psz_string;
646             var_Change( p_obj, psz_var, VLC_VAR_GETTEXT, &name, NULL );
647             const char *psz_label = name.psz_string;
648             msg_Dbg( p_intf, "v4l2 control \"%x\": %s (%s)",
649                      val.p_list->p_values[i].i_int, psz_var, name.psz_string );
650
651             int i_type = var_Type( p_obj, psz_var );
652             switch( i_type & VLC_VAR_TYPE )
653             {
654                 case VLC_VAR_INTEGER:
655                 {
656                     QLabel *label = new QLabel( psz_label, box );
657                     QHBoxLayout *hlayout = new QHBoxLayout();
658                     hlayout->addWidget( label );
659                     int i_val = var_GetInteger( p_obj, psz_var );
660                     if( i_type & VLC_VAR_HASCHOICE )
661                     {
662                         QComboBox *combobox = new QComboBox( box );
663                         combobox->setObjectName( psz_var );
664
665                         vlc_value_t val2, text2;
666                         var_Change( p_obj, psz_var, VLC_VAR_GETCHOICES,
667                                     &val2, &text2 );
668                         for( int j = 0; j < val2.p_list->i_count; j++ )
669                         {
670                             combobox->addItem(
671                                        text2.p_list->p_values[j].psz_string,
672                                        val2.p_list->p_values[j].i_int );
673                             if( i_val == val2.p_list->p_values[j].i_int )
674                                 combobox->setCurrentIndex( j );
675                         }
676                         var_Change( p_obj, psz_var, VLC_VAR_FREELIST,
677                                     &val2, &text2 );
678
679                         CONNECT( combobox, currentIndexChanged( int ), this,
680                                  ValueChange( int ) );
681                         hlayout->addWidget( combobox );
682                     }
683                     else
684                     {
685                         QSlider *slider = new QSlider( box );
686                         slider->setObjectName( psz_var );
687                         slider->setOrientation( Qt::Horizontal );
688                         vlc_value_t val2;
689                         var_Change( p_obj, psz_var, VLC_VAR_GETMIN,
690                                     &val2, NULL );
691                         slider->setMinimum( val2.i_int );
692                         var_Change( p_obj, psz_var, VLC_VAR_GETMAX,
693                                     &val2, NULL );
694                         slider->setMaximum( val2.i_int );
695                         var_Change( p_obj, psz_var, VLC_VAR_GETSTEP,
696                                     &val2, NULL );
697                         slider->setSingleStep( val2.i_int );
698                         slider->setValue( i_val );
699
700                         CONNECT( slider, valueChanged( int ), this,
701                                  ValueChange( int ) );
702                         hlayout->addWidget( slider );
703                     }
704                     layout->addLayout( hlayout );
705                     break;
706                 }
707                 case VLC_VAR_BOOL:
708                 {
709                     QCheckBox *button = new QCheckBox( psz_label, box );
710                     button->setObjectName( psz_var );
711                     button->setChecked( var_GetBool( p_obj, psz_var ) );
712
713                     CONNECT( button, clicked( bool ), this,
714                              ValueChange( bool ) );
715                     layout->addWidget( button );
716                     break;
717                 }
718                 case VLC_VAR_VOID:
719                 {
720                     if( i_type & VLC_VAR_ISCOMMAND )
721                     {
722                         QPushButton *button = new QPushButton( psz_label, box );
723                         button->setObjectName( psz_var );
724
725                         CONNECT( button, clicked( bool ), this,
726                                  ValueChange( bool ) );
727                         layout->addWidget( button );
728                     }
729                     else
730                     {
731                         QLabel *label = new QLabel( psz_label, box );
732                         layout->addWidget( label );
733                     }
734                     break;
735                 }
736                 default:
737                     msg_Warn( p_intf, "Unhandled var type for %s", psz_var );
738                     break;
739             }
740             free( name.psz_string );
741         }
742         var_Change( p_obj, "controls", VLC_VAR_FREELIST, &val, &text );
743         vlc_object_release( p_obj );
744     }
745     else
746     {
747         msg_Dbg( p_intf, "Couldn't find v4l2 instance" );
748         ui.help->show();
749     }
750 }
751
752 void ExtV4l2::ValueChange( bool value )
753 {
754     ValueChange( (int)value );
755 }
756
757 void ExtV4l2::ValueChange( int value )
758 {
759     QObject *s = sender();
760     vlc_object_t *p_obj = (vlc_object_t*)vlc_object_find_name( p_intf, "v4l2", FIND_ANYWHERE );
761     if( p_obj )
762     {
763         char *psz_var = strdup( qtu( s->objectName() ) );
764         int i_type = var_Type( p_obj, psz_var );
765         switch( i_type & VLC_VAR_TYPE )
766         {
767             case VLC_VAR_INTEGER:
768                 if( i_type & VLC_VAR_HASCHOICE )
769                 {
770                     QComboBox *combobox = qobject_cast<QComboBox*>( s );
771                     value = combobox->itemData( value ).toInt();
772                 }
773                 var_SetInteger( p_obj, psz_var, value );
774                 break;
775             case VLC_VAR_BOOL:
776                 var_SetBool( p_obj, psz_var, value );
777                 break;
778             case VLC_VAR_VOID:
779                 var_SetVoid( p_obj, psz_var );
780                 break;
781         }
782         free( psz_var );
783         vlc_object_release( p_obj );
784     }
785     else
786     {
787         msg_Warn( p_intf, "Oops, v4l2 object isn't available anymore" );
788         Refresh();
789     }
790 }
791
792 /**********************************************************************
793  * Equalizer
794  **********************************************************************/
795
796 static const QString band_frequencies[] =
797 {
798     "  60 Hz  ", " 170 Hz ", " 310 Hz ", " 600 Hz ", "  1 kHz ",
799     "  3 kHz  ", "  6 kHz ", " 12 kHz ", " 14 kHz ", " 16 kHz "
800 };
801
802 Equalizer::Equalizer( intf_thread_t *_p_intf, QWidget *_parent ) :
803                             QWidget( _parent ) , p_intf( _p_intf )
804 {
805     QFont smallFont = QApplication::font( static_cast<QWidget*>( 0 ) );
806     smallFont.setPointSize( smallFont.pointSize() - 3 );
807
808     ui.setupUi( this );
809     presetsComboBox = ui.presetsCombo;
810
811     ui.preampLabel->setFont( smallFont );
812     ui.preampSlider->setMaximum( 400 );
813     for( int i = 0 ; i < NB_PRESETS ; i ++ )
814     {
815         ui.presetsCombo->addItem( qtr( preset_list_text[i] ),
816                                   QVariant( i ) );
817     }
818     CONNECT( ui.presetsCombo, activated( int ), this, setPreset( int ) );
819
820     BUTTONACT( ui.enableCheck, enable() );
821     BUTTONACT( ui.eq2PassCheck, set2Pass() );
822
823     CONNECT( ui.preampSlider, valueChanged( int ), this, setPreamp() );
824
825     QGridLayout *grid = new QGridLayout( ui.frame );
826     grid->setMargin( 0 );
827     for( int i = 0 ; i < BANDS ; i++ )
828     {
829         bands[i] = new QSlider( Qt::Vertical );
830         bands[i]->setMaximum( 400 );
831         bands[i]->setValue( 200 );
832         CONNECT( bands[i], valueChanged( int ), this, setBand() );
833         band_texts[i] = new QLabel( band_frequencies[i] + "\n0.0dB" );
834         band_texts[i]->setFont( smallFont );
835         grid->addWidget( bands[i], 0, i );
836         grid->addWidget( band_texts[i], 1, i );
837     }
838
839     /* Write down initial values */
840     aout_instance_t *p_aout = ( aout_instance_t * )vlc_object_find( p_intf,
841                                     VLC_OBJECT_AOUT, FIND_ANYWHERE );
842     char *psz_af;
843     char *psz_bands;
844     float f_preamp;
845     if( p_aout )
846     {
847         psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
848         if( var_GetBool( p_aout, "equalizer-2pass" ) )
849             ui.eq2PassCheck->setChecked( true );
850         psz_bands = var_GetNonEmptyString( p_aout, "equalizer-bands" );
851         f_preamp = var_GetFloat( p_aout, "equalizer-preamp" );
852         vlc_object_release( p_aout );
853     }
854     else
855     {
856         psz_af = config_GetPsz( p_intf, "audio-filter" );
857         if( config_GetInt( p_intf, "equalizer-2pass" ) )
858             ui.eq2PassCheck->setChecked( true );
859         psz_bands = config_GetPsz( p_intf, "equalizer-bands" );
860         f_preamp = config_GetFloat( p_intf, "equalizer-preamp" );
861     }
862     if( psz_af && strstr( psz_af, "equalizer" ) != NULL )
863         ui.enableCheck->setChecked( true );
864     free( psz_af );
865     enable( ui.enableCheck->isChecked() );
866
867     setValues( psz_bands, f_preamp );
868 }
869
870 Equalizer::~Equalizer()
871 {
872 }
873
874 void Equalizer::enable()
875 {
876     bool en = ui.enableCheck->isChecked();
877     aout_EnableFilter( VLC_OBJECT( p_intf ), "equalizer",
878                        en ? true : false );
879 //    aout_EnableFilter( VLC_OBJECT( p_intf ), "upmixer",
880 //                       en ? true : false );
881 //     aout_EnableFilter( VLC_OBJECT( p_intf ), "vsurround",
882 //                       en ? true : false );
883      enable( en );
884 }
885
886 void Equalizer::enable( bool en )
887 {
888     ui.eq2PassCheck->setEnabled( en );
889     ui.preampLabel->setEnabled( en );
890     ui.preampSlider->setEnabled( en  );
891     for( int i = 0 ; i< BANDS; i++ )
892     {
893         bands[i]->setEnabled( en ); band_texts[i]->setEnabled( en );
894     }
895 }
896
897 void Equalizer::set2Pass()
898 {
899     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
900                                  VLC_OBJECT_AOUT, FIND_ANYWHERE );
901     bool b_2p = ui.eq2PassCheck->isChecked();
902
903     if( p_aout == NULL )
904         config_PutInt( p_intf, "equalizer-2pass", b_2p );
905     else
906     {
907         var_SetBool( p_aout, "equalizer-2pass", b_2p );
908         config_PutInt( p_intf, "equalizer-2pass", b_2p );
909         for( int i = 0; i < p_aout->i_nb_inputs; i++ )
910         {
911             p_aout->pp_inputs[i]->b_restart = true;
912         }
913         vlc_object_release( p_aout );
914     }
915 }
916
917 void Equalizer::setPreamp()
918 {
919     float f= ( float )(  ui.preampSlider->value() ) /10 - 20;
920     char psz_val[5];
921     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
922                                        VLC_OBJECT_AOUT, FIND_ANYWHERE );
923
924     sprintf( psz_val, "%.1f", f );
925     ui.preampLabel->setText( qtr( "Preamp\n" ) + psz_val + qtr( "dB" ) );
926     if( p_aout )
927     {
928         delCallbacks( p_aout );
929         var_SetFloat( p_aout, "equalizer-preamp", f );
930         addCallbacks( p_aout );
931         vlc_object_release( p_aout );
932     }
933     config_PutFloat( p_intf, "equalizer-preamp", f );
934 }
935
936 void Equalizer::setBand()
937 {
938     char psz_values[102]; memset( psz_values, 0, 102 );
939
940     /**\todo smoothing */
941
942     for( int i = 0 ; i< BANDS ; i++ )
943     {
944         char psz_val[8];
945         float f_val = ( float )(  bands[i]->value() ) / 10 - 20 ;
946         sprintf( psz_values, "%s %f", psz_values, f_val );
947         sprintf( psz_val, "% 5.1f", f_val );
948         band_texts[i]->setText( band_frequencies[i] + "\n" + psz_val + "dB" );
949     }
950     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
951                                           VLC_OBJECT_AOUT, FIND_ANYWHERE );
952     if( p_aout )
953     {
954         delCallbacks( p_aout );
955         var_SetString( p_aout, "equalizer-bands", psz_values );
956         addCallbacks( p_aout );
957         vlc_object_release( p_aout );
958     }
959 }
960 void Equalizer::setValues( char *psz_bands, float f_preamp )
961 {
962     char *p = psz_bands;
963     if ( p )
964     {
965         for( int i = 0; i < BANDS; i++ )
966         {
967             char psz_val[8];
968             float f = strtof( p, &p );
969             int  i_val= ( int )( ( f + 20 ) * 10 );
970             bands[i]->setValue(  i_val );
971             sprintf( psz_val, "% 5.1f", f );
972             band_texts[i]->setText( band_frequencies[i] + "\n" + psz_val +
973                                     "dB" );
974             if( p == NULL || *p == '\0' ) break;
975             p++;
976             if( *p == '\0' )  break;
977         }
978     }
979     char psz_val[5];
980     int i_val = ( int )( ( f_preamp + 20 ) * 10 );
981     sprintf( psz_val, "%.1f", f_preamp );
982     ui.preampSlider->setValue( i_val );
983     ui.preampLabel->setText( qtr( "Preamp\n" ) + psz_val + qtr( "dB" ) );
984 }
985
986 void Equalizer::setPreset( int preset )
987 {
988     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
989                                                 VLC_OBJECT_AOUT, FIND_ANYWHERE );
990
991     char psz_values[102]; memset( psz_values, 0, 102 );
992     char psz_values2[102];memset( psz_values2, 0, 102 );
993     for( int i = 0 ; i< BANDS ;i++ )
994     {
995         strcpy( psz_values2, psz_values );
996
997         sprintf( psz_values, "%s %5.1f",
998                  psz_values2, eqz_preset_10b[preset]->f_amp[i] );
999     }
1000
1001     if( p_aout )
1002     {
1003         delCallbacks( p_aout );
1004         var_SetString( p_aout, "equalizer-bands", psz_values );
1005         var_SetFloat( p_aout, "equalizer-preamp",
1006                       eqz_preset_10b[preset]->f_preamp );
1007         addCallbacks( p_aout );
1008         vlc_object_release( p_aout );
1009     }
1010     config_PutPsz( p_intf, "equalizer-bands", psz_values );
1011     config_PutFloat( p_intf, "equalizer-preamp",
1012                     eqz_preset_10b[preset]->f_preamp );
1013
1014     setValues( psz_values, eqz_preset_10b[preset]->f_preamp );
1015 }
1016
1017 static int PresetCallback( vlc_object_t *p_this, char const *psz_cmd,
1018                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
1019 {
1020     char *psz_preset = newval.psz_string;
1021     Equalizer *eq = ( Equalizer * )p_data;
1022     eq->presetsComboBox->setCurrentIndex( eq->presetsComboBox->findText( qfu( psz_preset ) ) );
1023     return VLC_SUCCESS;
1024 }
1025
1026 void Equalizer::delCallbacks( aout_instance_t *p_aout )
1027 {
1028     //var_DelCallback( p_aout, "equalizer-bands", EqzCallback, this );
1029     //var_DelCallback( p_aout, "equalizer-preamp", EqzCallback, this );
1030     var_DelCallback( p_aout, "equalizer-preset", PresetCallback, this );
1031 }
1032
1033 void Equalizer::addCallbacks( aout_instance_t *p_aout )
1034 {
1035     //var_AddCallback( p_aout, "equalizer-bands", EqzCallback, this );
1036     //var_AddCallback( p_aout, "equalizer-preamp", EqzCallback, this );
1037     var_AddCallback( p_aout, "equalizer-preset", PresetCallback, this );
1038 }
1039
1040 /**********************************************************************
1041  * Audio filters
1042  **********************************************************************/
1043
1044 /**********************************************************************
1045  * Spatializer
1046  **********************************************************************/
1047 static const char *psz_control_names[] =
1048 {
1049     "Roomsize", "Width" , "Wet", "Dry", "Damp"
1050 };
1051
1052 Spatializer::Spatializer( intf_thread_t *_p_intf, QWidget *_parent ) :
1053     QWidget( _parent ) , p_intf( _p_intf )
1054 {
1055     QFont smallFont = QApplication::font( static_cast<QWidget*>( 0 ) );
1056     smallFont.setPointSize( smallFont.pointSize() - 3 );
1057
1058     QGridLayout *layout = new QGridLayout( this );
1059     layout->setMargin( 0 );
1060
1061     enableCheck = new QCheckBox( qfu( "Enable spatializer" ) );
1062     layout->addWidget( enableCheck, 0, 0, 1, NUM_SP_CTRL );
1063
1064     for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1065     {
1066         spatCtrl[i] = new QSlider( Qt::Vertical );
1067         if( i < 2 )
1068         {
1069             spatCtrl[i]->setMaximum( 10 );
1070             spatCtrl[i]->setValue( 2 );
1071         }
1072         else
1073         {
1074             spatCtrl[i]->setMaximum( 10 );
1075             spatCtrl[i]->setValue( 0 );
1076             spatCtrl[i]->setMinimum( -10 );
1077         }
1078         oldControlVars[i] = spatCtrl[i]->value();
1079         CONNECT( spatCtrl[i], valueChanged( int ), this, setInitValues() );
1080         ctrl_texts[i] = new QLabel( qfu( psz_control_names[i] ) + "\n" );
1081         ctrl_texts[i]->setFont( smallFont );
1082         ctrl_readout[i] = new QLabel( "" );
1083         ctrl_readout[i]->setFont( smallFont );
1084         layout->addWidget( spatCtrl[i], 1, i );
1085         layout->addWidget( ctrl_readout[i], 2, i );
1086         layout->addWidget( ctrl_texts[i], 3, i );
1087     }
1088
1089     BUTTONACT( enableCheck, enable() );
1090
1091     /* Write down initial values */
1092     aout_instance_t *p_aout = ( aout_instance_t * )
1093         vlc_object_find( p_intf, VLC_OBJECT_AOUT, FIND_ANYWHERE );
1094     char *psz_af;
1095
1096     if( p_aout )
1097     {
1098         psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
1099         for( int i = 0; i < NUM_SP_CTRL ; i++ )
1100         {
1101             controlVars[i] = var_GetFloat( p_aout, psz_control_names[i] );
1102         }
1103         vlc_object_release( p_aout );
1104     }
1105     else
1106     {
1107         psz_af = config_GetPsz( p_intf, "audio-filter" );
1108         for( int i = 0; i < NUM_SP_CTRL ; i++ )
1109         {
1110             controlVars[i] = config_GetFloat( p_intf, psz_control_names[i] );
1111         }
1112     }
1113     if( psz_af && strstr( psz_af, "spatializer" ) != NULL )
1114         enableCheck->setChecked( true );
1115     free( psz_af );
1116     enable( enableCheck->isChecked() );
1117     setValues( controlVars );
1118 }
1119
1120 Spatializer::~Spatializer()
1121 {
1122 }
1123
1124 void Spatializer::enable()
1125 {
1126     bool en = enableCheck->isChecked();
1127     aout_EnableFilter( VLC_OBJECT( p_intf ), "spatializer",
1128             en ? true : false );
1129     enable( en );
1130 }
1131
1132 void Spatializer::enable( bool en )
1133 {
1134     for( int i = 0 ; i< NUM_SP_CTRL; i++ )
1135     {
1136         spatCtrl[i]->setEnabled( en );
1137         ctrl_texts[i]->setEnabled( en );
1138         ctrl_readout[i]->setEnabled( en );
1139     }
1140 }
1141 void Spatializer::setInitValues()
1142 {
1143     setValues( controlVars );
1144 }
1145
1146 void Spatializer::setValues( float *controlVars )
1147 {
1148     char psz_val[5];
1149     char var_name[5];
1150     aout_instance_t *p_aout= ( aout_instance_t * )
1151         vlc_object_find( p_intf, VLC_OBJECT_AOUT, FIND_ANYWHERE );
1152
1153     for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1154     {
1155         float f= ( float )(  spatCtrl[i]->value() );
1156         sprintf( psz_val, "%.1f", f );
1157         ctrl_readout[i]->setText( psz_val );
1158     }
1159     if( p_aout )
1160     {
1161         for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1162         {
1163             if( oldControlVars[i] != spatCtrl[i]->value() )
1164             {
1165                 var_SetFloat( p_aout, psz_control_names[i],
1166                         ( float )spatCtrl[i]->value() );
1167                 config_PutFloat( p_intf, psz_control_names[i],
1168                         ( float ) spatCtrl[i]->value() );
1169                 oldControlVars[i] = ( float ) spatCtrl[i]->value();
1170             }
1171         }
1172         vlc_object_release( p_aout );
1173     }
1174
1175 }
1176 void Spatializer::delCallbacks( aout_instance_t *p_aout )
1177 {
1178     //    var_DelCallback( p_aout, "Spatializer-bands", EqzCallback, this );
1179     //    var_DelCallback( p_aout, "Spatializer-preamp", EqzCallback, this );
1180 }
1181
1182 void Spatializer::addCallbacks( aout_instance_t *p_aout )
1183 {
1184     //    var_AddCallback( p_aout, "Spatializer-bands", EqzCallback, this );
1185     //    var_AddCallback( p_aout, "Spatializer-preamp", EqzCallback, this );
1186 }
1187
1188 #include <QToolButton>
1189 #include <QGridLayout>
1190
1191 SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
1192                             QWidget( _parent ) , p_intf( _p_intf )
1193 {
1194     QGroupBox *AVBox, *subsBox;
1195
1196     QToolButton *moinsAV, *plusAV;
1197     QToolButton *moinssubs, *plussubs;
1198     QToolButton *moinssubSpeed, *plussubSpeed;
1199
1200     QToolButton *updateButton;
1201
1202     QGridLayout *mainLayout = new QGridLayout( this );
1203
1204     /* AV sync */
1205     AVBox = new QGroupBox( qtr( "Audio/Video" ) );
1206     QGridLayout *AVLayout = new QGridLayout( AVBox );
1207
1208     moinsAV = new QToolButton;
1209     moinsAV->setToolButtonStyle( Qt::ToolButtonTextOnly );
1210     moinsAV->setAutoRaise( true );
1211     moinsAV->setText( "-" );
1212     AVLayout->addWidget( moinsAV, 0, 1, 1, 1 );
1213
1214     plusAV = new QToolButton;
1215     plusAV->setToolButtonStyle( Qt::ToolButtonTextOnly );
1216     plusAV->setAutoRaise( true );
1217     plusAV->setText( "+" );
1218     AVLayout->addWidget( plusAV, 0, 3, 1, 1 );
1219
1220     QLabel *AVLabel = new QLabel;
1221     AVLabel->setText( qtr( "Advance of audio over video:" ) );
1222     AVLayout->addWidget( AVLabel, 0, 0, 1, 1 );
1223
1224     AVSpin = new QDoubleSpinBox;
1225     AVSpin->setAlignment( Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter );
1226     AVSpin->setDecimals( 3 );
1227     AVSpin->setMinimum( -100 );
1228     AVSpin->setMaximum( 100 );
1229     AVSpin->setSingleStep( 0.1 );
1230     AVSpin->setToolTip( qtr( "A positive value means that\n"
1231                              "the audio is ahead of the video" ) );
1232     AVSpin->setSuffix( "s" );
1233     AVLayout->addWidget( AVSpin, 0, 2, 1, 1 );
1234     mainLayout->addWidget( AVBox, 1, 0, 1, 5 );
1235
1236
1237     /* Subs */
1238     subsBox = new QGroupBox( qtr( "Subtitles/Video" ) );
1239     QGridLayout *subsLayout = new QGridLayout( subsBox );
1240
1241     moinssubs = new QToolButton;
1242     moinssubs->setToolButtonStyle( Qt::ToolButtonTextOnly );
1243     moinssubs->setAutoRaise( true );
1244     moinssubs->setText( "-" );
1245     subsLayout->addWidget( moinssubs, 0, 1, 1, 1 );
1246
1247     plussubs = new QToolButton;
1248     plussubs->setToolButtonStyle( Qt::ToolButtonTextOnly );
1249     plussubs->setAutoRaise( true );
1250     plussubs->setText( "+" );
1251     subsLayout->addWidget( plussubs, 0, 3, 1, 1 );
1252
1253     QLabel *subsLabel = new QLabel;
1254     subsLabel->setText( qtr( "Advance of subtitles over video:" ) );
1255     subsLayout->addWidget( subsLabel, 0, 0, 1, 1 );
1256
1257     subsSpin = new QDoubleSpinBox;
1258     subsSpin->setAlignment( Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter );
1259     subsSpin->setDecimals( 3 );
1260     subsSpin->setMinimum( -100 );
1261     subsSpin->setMaximum( 100 );
1262     subsSpin->setSingleStep( 0.1 );
1263     subsSpin->setToolTip( qtr( "A positive value means that\n"
1264                              "the subtitles are ahead of the video" ) );
1265     subsSpin->setSuffix( "s" );
1266     subsLayout->addWidget( subsSpin, 0, 2, 1, 1 );
1267
1268
1269     moinssubSpeed = new QToolButton;
1270     moinssubSpeed->setToolButtonStyle( Qt::ToolButtonTextOnly );
1271     moinssubSpeed->setAutoRaise( true );
1272     moinssubSpeed->setText( "-" );
1273     subsLayout->addWidget( moinssubSpeed, 1, 1, 1, 1 );
1274
1275     plussubSpeed = new QToolButton;
1276     plussubSpeed->setToolButtonStyle( Qt::ToolButtonTextOnly );
1277     plussubSpeed->setAutoRaise( true );
1278     plussubSpeed->setText( "+" );
1279     subsLayout->addWidget( plussubSpeed, 1, 3, 1, 1 );
1280
1281     QLabel *subSpeedLabel = new QLabel;
1282     subSpeedLabel->setText( qtr( "Speed of the subtitles:" ) );
1283     subsLayout->addWidget( subSpeedLabel, 1, 0, 1, 3 );
1284
1285     subSpeedSpin = new QDoubleSpinBox;
1286     subSpeedSpin->setAlignment( Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter );
1287     subSpeedSpin->setDecimals( 3 );
1288     subSpeedSpin->setMinimum( 1 );
1289     subSpeedSpin->setMaximum( 100 );
1290     subSpeedSpin->setSingleStep( 0.2 );
1291     subsLayout->addWidget( subSpeedSpin, 1, 2, 1, 1 );
1292
1293     mainLayout->addWidget( subsBox, 2, 0, 2, 5 );
1294
1295     updateButton = new QToolButton;
1296     updateButton->setAutoRaise( true );
1297     updateButton->setText( "u" );
1298     updateButton->setToolTip( qtr( "Force update of the values in this dialog" ) );
1299     mainLayout->addWidget( updateButton, 0, 4, 1, 1 );
1300
1301
1302     /* Various Connects */
1303     CONNECT( moinsAV, clicked(), AVSpin, stepDown () );
1304     CONNECT( plusAV, clicked(), AVSpin, stepUp () );
1305     CONNECT( moinssubs, clicked(), subsSpin, stepDown () );
1306     CONNECT( plussubs, clicked(), subsSpin, stepUp () );
1307     CONNECT( moinssubSpeed, clicked(), subSpeedSpin, stepDown () );
1308     CONNECT( plussubSpeed, clicked(), subSpeedSpin, stepUp () );
1309     CONNECT( AVSpin, valueChanged ( double ), this, advanceAudio( double ) ) ;
1310     CONNECT( subsSpin, valueChanged ( double ), this, advanceSubs( double ) ) ;
1311     CONNECT( subSpeedSpin, valueChanged ( double ),
1312              this, adjustSubsSpeed( double ) );
1313     BUTTONACT( updateButton, update() );
1314
1315     /* Set it */
1316     update();
1317 }
1318
1319 void SyncControls::update()
1320 {
1321     int64_t i_delay;
1322     if( THEMIM->getInput() )
1323     {
1324         i_delay = var_GetTime( THEMIM->getInput(), "spu-delay" );
1325         AVSpin->setValue( ( (double)i_delay ) / 1000000 );
1326         i_delay = var_GetTime( THEMIM->getInput(), "audio-delay" );
1327         subsSpin->setValue( ( (double)i_delay ) / 1000000 );
1328         subSpeedSpin->setValue( var_GetFloat( THEMIM->getInput(), "sub-fps" ) );
1329     }
1330 }
1331
1332 void SyncControls::advanceAudio( double f_advance )
1333 {
1334     if( THEMIM->getInput() )
1335     {
1336         int64_t i_delay = var_GetTime( THEMIM->getInput(), "audio-delay" );
1337         i_delay += f_advance * 1000000;
1338         var_SetTime( THEMIM->getInput(), "audio-delay", i_delay );
1339         msg_Dbg( p_intf, "I am advancing Audio %d", f_advance );
1340     }
1341 }
1342
1343 void SyncControls::advanceSubs( double f_advance )
1344 {
1345     if( THEMIM->getInput() )
1346     {
1347         int64_t i_delay = var_GetTime( THEMIM->getInput(), "spu-delay" );
1348         i_delay += f_advance * 1000000;
1349         var_SetTime( THEMIM->getInput(), "spu-delay", i_delay );
1350         msg_Dbg( p_intf, "I am advancing subtitles %d", f_advance );
1351     }
1352 }
1353
1354 void SyncControls::adjustSubsSpeed( double f_fps )
1355 {
1356     if( THEMIM->getInput() )
1357     {
1358         var_SetFloat( THEMIM->getInput(), "sub-fps", f_fps );
1359     }
1360 }
1361
1362 /**********************************************************************
1363  * Video filters / Adjust
1364  **********************************************************************/
1365
1366 /**********************************************************************
1367  * Extended playbak controls
1368  **********************************************************************/