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