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