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