]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.cpp
Qt: compressor UI, foolproofing the controls values
[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
1126 typedef struct
1127 {
1128     const char *psz_name;
1129     const char *psz_descs;
1130     const char *psz_units;
1131     const float f_min;      // min
1132     const float f_max;      // max
1133     const float f_value;    // value
1134     const float f_resolution; // resolution
1135 } comp_controls_t;
1136
1137 static const comp_controls_t controls[] =
1138 {
1139     { "compressor-rms-peak",    _("RMS/peak"),       "",       0.0f,   1.0f,   0.00f, 0.001f },
1140     { "compressor-attack",      _("Attack"),       _(" ms"),   1.5f, 400.0f,  25.00f, 0.100f },
1141     { "compressor-release",     _("Release"),      _(" ms"),   2.0f, 800.0f, 100.00f, 0.100f },
1142     { "compressor-threshold",   _("Threshold"),    _(" dB"), -30.0f,   0.0f, -11.00f, 0.010f },
1143     { "compressor-ratio",       _("Ratio"),          ":1",     1.0f,  20.0f,   8.00f, 0.010f },
1144     { "compressor-knee",        _("Knee\nradius"), _(" dB"),   1.0f,  10.0f,   2.50f, 0.010f },
1145     { "compressor-makeup-gain", _("Makeup\ngain"), _(" dB"),   0.0f,  24.0f,   7.00f, 0.010f },
1146 };
1147
1148 Compressor::Compressor( intf_thread_t *_p_intf, QWidget *_parent ) :
1149     QWidget( _parent ) , p_intf( _p_intf )
1150 {
1151     QFont smallFont = QApplication::font( static_cast<QWidget*>( 0 ) );
1152     smallFont.setPointSize( smallFont.pointSize() - 3 );
1153
1154     QGridLayout *layout = new QGridLayout( this );
1155     layout->setMargin( 0 );
1156
1157     enableCheck = new QCheckBox( qtr( "Enable dynamic range compressor" ) );
1158     layout->addWidget( enableCheck, 0, 0, 1, NUM_CP_CTRL );
1159
1160     for( int i = 0 ; i < NUM_CP_CTRL ; i++ )
1161     {
1162         compCtrl[i] = new QSlider( Qt::Vertical );
1163
1164         const int i_min = (int)( controls[i].f_min
1165                                / controls[i].f_resolution );
1166         const int i_max = (int)( controls[i].f_max
1167                                / controls[i].f_resolution );
1168         const int i_val = (int)( controls[i].f_value
1169                                / controls[i].f_resolution );
1170
1171         compCtrl[i]->setMinimum( i_min );
1172         compCtrl[i]->setMaximum( i_max );
1173         compCtrl[i]->setValue(   i_val );
1174         oldControlVars[i] = controls[i].f_value;
1175         CONNECT( compCtrl[i], valueChanged( int ), this, setInitValues() );
1176         ctrl_texts[i] = new QLabel( qtr( controls[i].psz_descs )
1177                                   + qtr( "\n" ) );
1178         ctrl_texts[i]->setFont( smallFont );
1179         ctrl_texts[i]->setAlignment( Qt::AlignHCenter );
1180         ctrl_readout[i] = new QLabel( qtr( "" ) );
1181         ctrl_readout[i]->setFont( smallFont );
1182         ctrl_readout[i]->setAlignment( Qt::AlignHCenter );
1183         layout->addWidget( compCtrl[i], 1, i, Qt::AlignHCenter );
1184         layout->addWidget( ctrl_readout[i], 2, i, Qt::AlignHCenter );
1185         layout->addWidget( ctrl_texts[i], 3, i, Qt::AlignHCenter );
1186     }
1187
1188     BUTTONACT( enableCheck, enable() );
1189
1190     /* Write down initial values */
1191     aout_instance_t *p_aout = THEMIM->getAout();
1192     char *psz_af;
1193
1194     if( p_aout )
1195     {
1196         psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
1197         for( int i = 0; i < NUM_CP_CTRL; i++ )
1198         {
1199             controlVars[i] = var_GetFloat( p_aout,
1200                                            controls[i].psz_name );
1201         }
1202         vlc_object_release( p_aout );
1203     }
1204     else
1205     {
1206         psz_af = config_GetPsz( p_intf, "audio-filter" );
1207         for( int i = 0; i < NUM_CP_CTRL; i++ )
1208         {
1209             controlVars[i] = config_GetFloat( p_intf,
1210                                               controls[i].psz_name );
1211         }
1212     }
1213     if( psz_af && strstr( psz_af, "compressor" ) != NULL )
1214     {
1215         enableCheck->setChecked( true );
1216     }
1217     free( psz_af );
1218     enable( enableCheck->isChecked() );
1219     updateSliders( controlVars );
1220     setValues( controlVars );
1221 }
1222
1223 void Compressor::enable()
1224 {
1225     bool en = enableCheck->isChecked();
1226     aout_EnableFilter( THEPL, "compressor", en );
1227     enable( en );
1228 }
1229
1230 void Compressor::enable( bool en )
1231 {
1232     for( int i = 0 ; i < NUM_CP_CTRL ; i++ )
1233     {
1234         compCtrl[i]->setEnabled( en );
1235         ctrl_texts[i]->setEnabled( en );
1236         ctrl_readout[i]->setEnabled( en );
1237     }
1238 }
1239
1240 void Compressor::updateSliders( float * controlVars )
1241 {
1242     for( int i = 0 ; i < NUM_CP_CTRL ; i++ )
1243     {
1244         if( oldControlVars[i] != controlVars[i] )
1245         {
1246             const int i_val = (int)( controlVars[i]
1247                                    / controls[i].f_resolution );
1248             compCtrl[i]->setValue( i_val );
1249         }
1250     }
1251 }
1252
1253 void Compressor::setInitValues()
1254 {
1255     setValues( controlVars );
1256 }
1257
1258 void Compressor::setValues( float * controlVars )
1259 {
1260     aout_instance_t *p_aout = THEMIM->getAout();
1261
1262     for( int i = 0 ; i < NUM_CP_CTRL ; i++ )
1263     {
1264         float f = (float)( compCtrl[i]->value() )
1265                 * ( controls[i].f_resolution );
1266         ctrl_readout[i]->setText( QString::number( f, 'f', 1 )
1267                                 + qtr( controls[i].psz_units ) );
1268         if( oldControlVars[i] != f )
1269         {
1270             if( p_aout )
1271             {
1272                 var_SetFloat( p_aout, controls[i].psz_name, f );
1273             }
1274             config_PutFloat( p_intf, controls[i].psz_name, f );
1275             oldControlVars[i] = f;
1276         }
1277     }
1278     if( p_aout )
1279     {
1280         vlc_object_release( p_aout );
1281     }
1282 }
1283
1284 /**********************************************************************
1285  * Spatializer
1286  **********************************************************************/
1287 static const char *psz_control_names[] =
1288 {
1289     "spatializer-roomsize", "spatializer-width",
1290     "spatializer-wet", "spatializer-dry", "spatializer-damp"
1291 };
1292
1293 Spatializer::Spatializer( intf_thread_t *_p_intf, QWidget *_parent ) :
1294     QWidget( _parent ) , p_intf( _p_intf )
1295 {
1296     QFont smallFont = QApplication::font();
1297     smallFont.setPointSize( smallFont.pointSize() - 3 );
1298
1299     QGridLayout *layout = new QGridLayout( this );
1300     layout->setMargin( 0 );
1301
1302     enableCheck = new QCheckBox( qtr( "Enable spatializer" ) );
1303     layout->addWidget( enableCheck, 0, 0, 1, NUM_SP_CTRL );
1304
1305     for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1306     {
1307         spatCtrl[i] = new QSlider( Qt::Vertical );
1308         if( i < 2 )
1309         {
1310             spatCtrl[i]->setMaximum( 10 );
1311             spatCtrl[i]->setValue( 2 );
1312         }
1313         else
1314         {
1315             spatCtrl[i]->setMaximum( 10 );
1316             spatCtrl[i]->setValue( 0 );
1317             spatCtrl[i]->setMinimum( -10 );
1318         }
1319         oldControlVars[i] = spatCtrl[i]->value();
1320         CONNECT( spatCtrl[i], valueChanged( int ), this, setInitValues() );
1321         ctrl_texts[i] = new QLabel( qfu( psz_control_names[i] ) + "\n" );
1322         ctrl_texts[i]->setFont( smallFont );
1323         ctrl_readout[i] = new QLabel( "" );
1324         ctrl_readout[i]->setFont( smallFont );
1325         layout->addWidget( spatCtrl[i], 1, i );
1326         layout->addWidget( ctrl_readout[i], 2, i );
1327         layout->addWidget( ctrl_texts[i], 3, i );
1328     }
1329
1330     BUTTONACT( enableCheck, enable() );
1331
1332     /* Write down initial values */
1333     aout_instance_t *p_aout = THEMIM->getAout();
1334     char *psz_af;
1335
1336     if( p_aout )
1337     {
1338         psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
1339         for( int i = 0; i < NUM_SP_CTRL ; i++ )
1340         {
1341             controlVars[i] = var_GetFloat( p_aout, psz_control_names[i] );
1342         }
1343         vlc_object_release( p_aout );
1344     }
1345     else
1346     {
1347         psz_af = config_GetPsz( p_intf, "audio-filter" );
1348         for( int i = 0; i < NUM_SP_CTRL ; i++ )
1349         {
1350             controlVars[i] = config_GetFloat( p_intf, psz_control_names[i] );
1351         }
1352     }
1353     if( psz_af && strstr( psz_af, "spatializer" ) != NULL )
1354         enableCheck->setChecked( true );
1355     free( psz_af );
1356     enable( enableCheck->isChecked() );
1357     setValues( controlVars );
1358 }
1359
1360 Spatializer::~Spatializer()
1361 {
1362 }
1363
1364 void Spatializer::enable()
1365 {
1366     bool en = enableCheck->isChecked();
1367     aout_EnableFilter( THEPL, "spatializer", en );
1368     enable( en );
1369 }
1370
1371 void Spatializer::enable( bool en )
1372 {
1373     for( int i = 0 ; i< NUM_SP_CTRL; i++ )
1374     {
1375         spatCtrl[i]->setEnabled( en );
1376         ctrl_texts[i]->setEnabled( en );
1377         ctrl_readout[i]->setEnabled( en );
1378     }
1379 }
1380 void Spatializer::setInitValues()
1381 {
1382     setValues( controlVars );
1383 }
1384
1385 void Spatializer::setValues( float *controlVars )
1386 {
1387     aout_instance_t *p_aout = THEMIM->getAout();
1388
1389     for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1390     {
1391         float f = (float)(  spatCtrl[i]->value() );
1392         ctrl_readout[i]->setText( QString::number( f, 'f',  1 ) );
1393     }
1394     if( p_aout )
1395     {
1396         for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1397         {
1398             if( oldControlVars[i] != spatCtrl[i]->value() )
1399             {
1400                 var_SetFloat( p_aout, psz_control_names[i],
1401                         ( float )spatCtrl[i]->value() );
1402                 config_PutFloat( p_intf, psz_control_names[i],
1403                         ( float ) spatCtrl[i]->value() );
1404                 oldControlVars[i] = ( float ) spatCtrl[i]->value();
1405             }
1406         }
1407         vlc_object_release( p_aout );
1408     }
1409
1410 }
1411 void Spatializer::delCallbacks( aout_instance_t *p_aout )
1412 {
1413     //    var_DelCallback( p_aout, "Spatializer-bands", EqzCallback, this );
1414     //    var_DelCallback( p_aout, "Spatializer-preamp", EqzCallback, this );
1415 }
1416
1417 void Spatializer::addCallbacks( aout_instance_t *p_aout )
1418 {
1419     //    var_AddCallback( p_aout, "Spatializer-bands", EqzCallback, this );
1420     //    var_AddCallback( p_aout, "Spatializer-preamp", EqzCallback, this );
1421 }
1422
1423 #include <QToolButton>
1424 #include <QGridLayout>
1425
1426 SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
1427                             QWidget( _parent ) , p_intf( _p_intf )
1428 {
1429     QGroupBox *AVBox, *subsBox;
1430
1431     QToolButton *moinsAV, *plusAV;
1432     QToolButton *moinssubs, *plussubs;
1433     QToolButton *moinssubSpeed, *plussubSpeed;
1434
1435     QToolButton *updateButton;
1436
1437     b_userAction = true;
1438
1439     QGridLayout *mainLayout = new QGridLayout( this );
1440
1441     /* AV sync */
1442     AVBox = new QGroupBox( qtr( "Audio/Video" ) );
1443     QGridLayout *AVLayout = new QGridLayout( AVBox );
1444
1445     moinsAV = new QToolButton;
1446     moinsAV->setToolButtonStyle( Qt::ToolButtonTextOnly );
1447     moinsAV->setAutoRaise( true );
1448     moinsAV->setText( "-" );
1449     AVLayout->addWidget( moinsAV, 0, 1, 1, 1 );
1450
1451     plusAV = new QToolButton;
1452     plusAV->setToolButtonStyle( Qt::ToolButtonTextOnly );
1453     plusAV->setAutoRaise( true );
1454     plusAV->setText( "+" );
1455     AVLayout->addWidget( plusAV, 0, 3, 1, 1 );
1456
1457     QLabel *AVLabel = new QLabel;
1458     AVLabel->setText( qtr( "Advance of audio over video:" ) );
1459     AVLayout->addWidget( AVLabel, 0, 0, 1, 1 );
1460
1461     AVSpin = new QDoubleSpinBox;
1462     AVSpin->setAlignment( Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter );
1463     AVSpin->setDecimals( 3 );
1464     AVSpin->setMinimum( -600.0 );
1465     AVSpin->setMaximum( 600.0 );
1466     AVSpin->setSingleStep( 0.1 );
1467     AVSpin->setToolTip( qtr( "A positive value means that\n"
1468                              "the audio is ahead of the video" ) );
1469     AVSpin->setSuffix( " s" );
1470     AVLayout->addWidget( AVSpin, 0, 2, 1, 1 );
1471     mainLayout->addWidget( AVBox, 1, 0, 1, 5 );
1472
1473
1474     /* Subs */
1475     subsBox = new QGroupBox( qtr( "Subtitles/Video" ) );
1476     QGridLayout *subsLayout = new QGridLayout( subsBox );
1477
1478     moinssubs = new QToolButton;
1479     moinssubs->setToolButtonStyle( Qt::ToolButtonTextOnly );
1480     moinssubs->setAutoRaise( true );
1481     moinssubs->setText( "-" );
1482     subsLayout->addWidget( moinssubs, 0, 1, 1, 1 );
1483
1484     plussubs = new QToolButton;
1485     plussubs->setToolButtonStyle( Qt::ToolButtonTextOnly );
1486     plussubs->setAutoRaise( true );
1487     plussubs->setText( "+" );
1488     subsLayout->addWidget( plussubs, 0, 3, 1, 1 );
1489
1490     QLabel *subsLabel = new QLabel;
1491     subsLabel->setText( qtr( "Advance of subtitles over video:" ) );
1492     subsLayout->addWidget( subsLabel, 0, 0, 1, 1 );
1493
1494     subsSpin = new QDoubleSpinBox;
1495     subsSpin->setAlignment( Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter );
1496     subsSpin->setDecimals( 3 );
1497     subsSpin->setMinimum( -600.0 );
1498     subsSpin->setMaximum( 600.0 );
1499     subsSpin->setSingleStep( 0.1 );
1500     subsSpin->setToolTip( qtr( "A positive value means that\n"
1501                              "the subtitles are ahead of the video" ) );
1502     subsSpin->setSuffix( " s" );
1503     subsLayout->addWidget( subsSpin, 0, 2, 1, 1 );
1504
1505
1506     moinssubSpeed = new QToolButton;
1507     moinssubSpeed->setToolButtonStyle( Qt::ToolButtonTextOnly );
1508     moinssubSpeed->setAutoRaise( true );
1509     moinssubSpeed->setText( "-" );
1510     subsLayout->addWidget( moinssubSpeed, 1, 1, 1, 1 );
1511
1512     plussubSpeed = new QToolButton;
1513     plussubSpeed->setToolButtonStyle( Qt::ToolButtonTextOnly );
1514     plussubSpeed->setAutoRaise( true );
1515     plussubSpeed->setText( "+" );
1516     subsLayout->addWidget( plussubSpeed, 1, 3, 1, 1 );
1517
1518     QLabel *subSpeedLabel = new QLabel;
1519     subSpeedLabel->setText( qtr( "Speed of the subtitles:" ) );
1520     subsLayout->addWidget( subSpeedLabel, 1, 0, 1, 1 );
1521
1522     subSpeedSpin = new QDoubleSpinBox;
1523     subSpeedSpin->setAlignment( Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter );
1524     subSpeedSpin->setDecimals( 3 );
1525     subSpeedSpin->setMinimum( 1 );
1526     subSpeedSpin->setMaximum( 100 );
1527     subSpeedSpin->setSingleStep( 0.2 );
1528     subSpeedSpin->setSuffix( " fps" );
1529     subsLayout->addWidget( subSpeedSpin, 1, 2, 1, 1 );
1530
1531     mainLayout->addWidget( subsBox, 2, 0, 2, 5 );
1532
1533     updateButton = new QToolButton;
1534     updateButton->setAutoRaise( true );
1535     mainLayout->addWidget( updateButton, 0, 4, 1, 1 );
1536
1537
1538     /* Various Connects */
1539     CONNECT( moinsAV, clicked(), AVSpin, stepDown () );
1540     CONNECT( plusAV, clicked(), AVSpin, stepUp () );
1541     CONNECT( moinssubs, clicked(), subsSpin, stepDown () );
1542     CONNECT( plussubs, clicked(), subsSpin, stepUp () );
1543     CONNECT( moinssubSpeed, clicked(), subSpeedSpin, stepDown () );
1544     CONNECT( plussubSpeed, clicked(), subSpeedSpin, stepUp () );
1545     CONNECT( AVSpin, valueChanged ( double ), this, advanceAudio( double ) ) ;
1546     CONNECT( subsSpin, valueChanged ( double ), this, advanceSubs( double ) ) ;
1547     CONNECT( subSpeedSpin, valueChanged ( double ),
1548              this, adjustSubsSpeed( double ) );
1549
1550     CONNECT( THEMIM->getIM(), synchroChanged(), this, update() );
1551     BUTTON_SET_ACT_I( updateButton, "", update,
1552             qtr( "Force update of this dialog's values" ), update() );
1553
1554     /* Set it */
1555     update();
1556 }
1557
1558 void SyncControls::clean()
1559 {
1560     b_userAction = false;
1561     AVSpin->setValue( 0.0 );
1562     subsSpin->setValue( 0.0 );
1563     subSpeedSpin->setValue( 1.0 );
1564     b_userAction = true;
1565 }
1566
1567 void SyncControls::update()
1568 {
1569     b_userAction = false;
1570
1571     int64_t i_delay;
1572     if( THEMIM->getInput() )
1573     {
1574         i_delay = var_GetTime( THEMIM->getInput(), "audio-delay" );
1575         AVSpin->setValue( ( (double)i_delay ) / 1000000 );
1576         i_delay = var_GetTime( THEMIM->getInput(), "spu-delay" );
1577         subsSpin->setValue( ( (double)i_delay ) / 1000000 );
1578         subSpeedSpin->setValue( var_GetFloat( THEMIM->getInput(), "sub-fps" ) );
1579     }
1580     b_userAction = true;
1581 }
1582
1583 void SyncControls::advanceAudio( double f_advance )
1584 {
1585     if( THEMIM->getInput() && b_userAction )
1586     {
1587         int64_t i_delay = f_advance * 1000000;
1588         var_SetTime( THEMIM->getInput(), "audio-delay", i_delay );
1589     }
1590 }
1591
1592 void SyncControls::advanceSubs( double f_advance )
1593 {
1594     if( THEMIM->getInput() && b_userAction )
1595     {
1596         int64_t i_delay = f_advance * 1000000;
1597         var_SetTime( THEMIM->getInput(), "spu-delay", i_delay );
1598     }
1599 }
1600
1601 void SyncControls::adjustSubsSpeed( double f_fps )
1602 {
1603     if( THEMIM->getInput() && b_userAction )
1604     {
1605         var_SetFloat( THEMIM->getInput(), "sub-fps", f_fps );
1606     }
1607 }
1608
1609 /**********************************************************************
1610  * Video filters / Adjust
1611  **********************************************************************/
1612
1613 /**********************************************************************
1614  * Extended playbak controls
1615  **********************************************************************/