]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.cpp
Qt4 - Spatializer and other audio filter from biodun SoC => Extended panel.
[vlc] / modules / gui / qt4 / components / extended_panels.cpp
1 /*****************************************************************************
2  * extended_panels.cpp : Extended controls panels
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Antoine Cellerier <dionoea .t videolan d@t org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #include <QLabel>
26 #include <QVariant>
27 #include <QString>
28 #include <QFont>
29 #include <QGridLayout>
30 #include <QSignalMapper>
31
32 #include "components/extended_panels.hpp"
33 #include "dialogs/preferences.hpp"
34 #include "dialogs_provider.hpp"
35 #include "qt4.hpp"
36
37 #include "../../audio_filter/equalizer_presets.h"
38 #include <vlc_aout.h>
39 #include <vlc_intf_strings.h>
40 #include <vlc_vout.h>
41 #include <vlc_osd.h>
42
43 #include <iostream>
44 #include <string.h>
45
46 #if 0
47 class ConfClickHandler : public QObject
48 {
49 public:
50     ConfClickHandler( intf_thread_t *_p_intf, ExtVideo *_e ) : QObject (_e) {
51         e = _e; p_intf = _p_intf;
52     }
53     virtual ~ConfClickHandler() {}
54     bool eventFilter( QObject *obj, QEvent *evt )
55     {
56         if( evt->type() == QEvent::MouseButtonPress )
57         {
58             e->gotoConf( obj );
59             return true;
60         }
61         return false;
62     }
63 private:
64     ExtVideo* e;
65     intf_thread_t *p_intf;
66 };
67 #endif
68
69 QString ModuleFromWidgetName( QObject *obj )
70 {
71     return obj->objectName().replace("Enable","");
72 }
73
74 QString OptionFromWidgetName( QObject *obj )
75 {
76     /* Gruik ? ... nah */
77     QString option = obj->objectName().replace( "Slider", "" )
78                                       .replace( "Combo" , "" )
79                                       .replace( "Dial"  , "" )
80                                       .replace( "Check" , "" )
81                                       .replace( "Spin"  , "" )
82                                       .replace( "Text"  , "" );
83     for( char a = 'A'; a <= 'Z'; a++ )
84     {
85         option = option.replace( QString( a ),
86                                  QString( '-' ) + QString( a + 'a' - 'A' ) );
87     }
88     return option;
89 }
90
91 ExtVideo::ExtVideo( intf_thread_t *_p_intf, QWidget *_parent ) :
92                            QWidget( _parent ) , p_intf( _p_intf )
93 {
94     ui.setupUi( this );
95
96 #define SETUP_VFILTER( widget ) \
97     { \
98         vlc_object_t *p_obj = (vlc_object_t *) \
99             vlc_object_find_name( p_intf->p_libvlc, \
100                                   #widget, \
101                                   FIND_CHILD ); \
102         QCheckBox *checkbox = qobject_cast<QCheckBox*>(ui.widget##Enable); \
103         QGroupBox *groupbox = qobject_cast<QGroupBox*>(ui.widget##Enable); \
104         if( p_obj ) \
105         { \
106             vlc_object_release( p_obj ); \
107             if( checkbox ) checkbox->setCheckState( Qt::Checked ); \
108             else groupbox->setChecked( true ); \
109         } \
110         else \
111         { \
112             if( checkbox ) checkbox->setCheckState( Qt::Unchecked ); \
113             else groupbox->setChecked( false ); \
114         } \
115     } \
116     CONNECT( ui.widget##Enable, clicked(), this, updateFilters() );
117 #define SETUP_VFILTER_OPTION( widget, signal ) \
118     initComboBoxItems( ui.widget ); \
119     setWidgetValue( ui.widget ); \
120     CONNECT( ui.widget, signal, this, updateFilterOptions() );
121
122     SETUP_VFILTER( adjust )
123     SETUP_VFILTER_OPTION( hueSlider, valueChanged(int) )
124     SETUP_VFILTER_OPTION( contrastSlider, valueChanged(int) )
125     SETUP_VFILTER_OPTION( brightnessSlider, valueChanged(int) )
126     SETUP_VFILTER_OPTION( saturationSlider, valueChanged(int) )
127     SETUP_VFILTER_OPTION( gammaSlider, valueChanged(int) )
128     SETUP_VFILTER_OPTION( brightnessThresholdCheck, stateChanged(int) )
129
130     SETUP_VFILTER( extract )
131     SETUP_VFILTER_OPTION( extractComponentText, textChanged(QString) )
132
133     SETUP_VFILTER( colorthres )
134     SETUP_VFILTER_OPTION( colorthresColorText, textChanged(QString) )
135     SETUP_VFILTER_OPTION( colorthresSaturationthresSlider, valueChanged(int) )
136     SETUP_VFILTER_OPTION( colorthresSimilaritythresSlider, valueChanged(int) )
137
138     SETUP_VFILTER( invert )
139
140     SETUP_VFILTER( gradient )
141     SETUP_VFILTER_OPTION( gradientModeCombo, currentIndexChanged(QString) )
142     SETUP_VFILTER_OPTION( gradientTypeCheck, stateChanged(int) )
143     SETUP_VFILTER_OPTION( gradientCartoonCheck, stateChanged(int) )
144
145     SETUP_VFILTER( motionblur )
146     SETUP_VFILTER_OPTION( blurFactorSlider, valueChanged(int) )
147
148     SETUP_VFILTER( motiondetect )
149
150     SETUP_VFILTER( noise )
151
152     SETUP_VFILTER( psychedelic )
153
154     SETUP_VFILTER( sharpen )
155     SETUP_VFILTER_OPTION( sharpenSigmaSlider, valueChanged(int) )
156
157     SETUP_VFILTER( ripple )
158
159     SETUP_VFILTER( wave )
160
161     SETUP_VFILTER( transform )
162     SETUP_VFILTER_OPTION( transformTypeCombo, currentIndexChanged(QString) )
163
164     SETUP_VFILTER( rotate )
165     SETUP_VFILTER_OPTION( rotateAngleDial, valueChanged(int) )
166     ui.rotateAngleDial->setWrapping( true );
167     ui.rotateAngleDial->setNotchesVisible( true );
168
169     SETUP_VFILTER( puzzle )
170     SETUP_VFILTER_OPTION( puzzleRowsSpin, valueChanged(int) )
171     SETUP_VFILTER_OPTION( puzzleColsSpin, valueChanged(int) )
172     SETUP_VFILTER_OPTION( puzzleBlackSlotCheck, stateChanged(int) )
173
174     SETUP_VFILTER( magnify )
175
176     SETUP_VFILTER( clone )
177     SETUP_VFILTER_OPTION( cloneCountSpin, valueChanged(int) )
178
179     SETUP_VFILTER( wall )
180     SETUP_VFILTER_OPTION( wallRowsSpin, valueChanged(int) )
181     SETUP_VFILTER_OPTION( wallColsSpin, valueChanged(int) )
182
183     SETUP_VFILTER( erase )
184     SETUP_VFILTER_OPTION( eraseMaskText, editingFinished() )
185     SETUP_VFILTER_OPTION( eraseYSpin, valueChanged(int) )
186     SETUP_VFILTER_OPTION( eraseXSpin, valueChanged(int) )
187
188     SETUP_VFILTER( marq )
189     SETUP_VFILTER_OPTION( marqMarqueeText, textChanged(QString) )
190     SETUP_VFILTER_OPTION( marqPositionCombo, currentIndexChanged(QString) )
191
192     SETUP_VFILTER( logo )
193     SETUP_VFILTER_OPTION( logoFileText, editingFinished() )
194     SETUP_VFILTER_OPTION( logoYSpin, valueChanged(int) )
195     SETUP_VFILTER_OPTION( logoXSpin, valueChanged(int) )
196     SETUP_VFILTER_OPTION( logoTransparencySlider, valueChanged(int) )
197
198 #undef SETUP_VFILTER
199 #undef SETUP_VFILTER_OPTION
200 }
201
202 ExtVideo::~ExtVideo()
203 {
204 }
205
206 void ExtVideo::ChangeVFiltersString( char *psz_name, vlc_bool_t b_add )
207 {
208     vout_thread_t *p_vout;
209     char *psz_parser, *psz_string;
210
211     char *psz_filter_type;
212
213     /* Please leave p_libvlc_global. This is where cached modules are
214      * stored. We're not trying to find a module instance. */
215     module_t *p_obj = module_FindName( p_intf, psz_name );
216     if( !p_obj )
217     {
218         msg_Err( p_intf, "Unable to find filter module \"%s\n.", psz_name );
219         return;
220     }
221
222     if( module_IsCapable( p_obj, "video filter2" ) )
223     {
224         psz_filter_type = "video-filter";
225     }
226     else if( module_IsCapable( p_obj, "video filter" ) )
227     {
228         psz_filter_type = "vout-filter";
229     }
230     else if( module_IsCapable( p_obj, "sub filter" ) )
231     {
232         psz_filter_type = "sub-filter";
233     }
234     else
235     {
236         vlc_object_release( p_obj );
237         msg_Err( p_intf, "Unknown video filter type." );
238         return;
239     }
240     vlc_object_release( p_obj );
241
242     psz_string = config_GetPsz( p_intf, psz_filter_type );
243
244     if( !psz_string ) psz_string = strdup("");
245
246     psz_parser = strstr( psz_string, psz_name );
247
248     if( b_add )
249     {
250         if( !psz_parser )
251         {
252             psz_parser = psz_string;
253             asprintf( &psz_string, (*psz_string) ? "%s:%s" : "%s%s",
254                             psz_string, psz_name );
255             free( psz_parser );
256         }
257         else
258         {
259             return;
260         }
261     }
262     else
263     {
264         if( psz_parser )
265         {
266             if( *(psz_parser + strlen(psz_name)) == ':' )
267             {
268                 memmove( psz_parser, psz_parser + strlen(psz_name) + 1,
269                          strlen(psz_parser + strlen(psz_name) + 1 ) + 1 );
270             }
271             else
272             {
273                 *psz_parser = '\0';
274             }
275
276             /* Remove trailing : : */
277             if( strlen( psz_string ) > 0 &&
278                 *( psz_string + strlen( psz_string ) -1 ) == ':' )
279             {
280                 *( psz_string + strlen( psz_string ) -1 ) = '\0';
281             }
282         }
283         else
284         {
285             free( psz_string );
286             return;
287         }
288     }
289     /* Vout is not kept, so put that in the config */
290     config_PutPsz( p_intf, psz_filter_type, psz_string );
291     if( !strcmp( psz_filter_type, "video-filter" ) )
292         ui.videoFilterText->setText( psz_string );
293     else if( !strcmp( psz_filter_type, "vout-filter" ) )
294         ui.voutFilterText->setText( psz_string );
295     else if( !strcmp( psz_filter_type, "sub-filter" ) )
296         ui.subpictureFilterText->setText( psz_string );
297
298     /* Try to set on the fly */
299     p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
300                                               FIND_ANYWHERE );
301     if( p_vout )
302     {
303         if( !strcmp( psz_filter_type, "sub-filter" ) )
304             var_SetString( p_vout->p_spu, psz_filter_type, psz_string );
305         else
306             var_SetString( p_vout, psz_filter_type, psz_string );
307         vlc_object_release( p_vout );
308     }
309
310     free( psz_string );
311 }
312
313 void ExtVideo::updateFilters()
314 {
315     QString module = ModuleFromWidgetName( sender() );
316     //std::cout << "Module name: " << module.toStdString() << std::endl;
317
318     QCheckBox *checkbox = qobject_cast<QCheckBox*>(sender());
319     QGroupBox *groupbox = qobject_cast<QGroupBox*>(sender());
320
321     ChangeVFiltersString( qtu(module),
322                           checkbox ? checkbox->isChecked()
323                                    : groupbox->isChecked() );
324 }
325
326 void ExtVideo::initComboBoxItems( QObject *widget )
327 {
328     QComboBox *combobox = qobject_cast<QComboBox*>(widget);
329     if( !combobox ) return;
330     QString option = OptionFromWidgetName( widget );
331     module_config_t *p_item = config_FindConfig( VLC_OBJECT(p_intf),
332                                                  option.toStdString().c_str() );
333     if( p_item )
334     {
335         int i_type = p_item->i_type & CONFIG_ITEM;
336         for( int i_index = 0; i_index < p_item->i_list; i_index++ )
337         {
338             if( i_type == CONFIG_ITEM_INTEGER
339              || i_type == CONFIG_ITEM_BOOL )
340                 combobox->addItem( qfu( p_item->ppsz_list_text[i_index] ), p_item->pi_list[i_index] );
341             else if( i_type == CONFIG_ITEM_STRING )
342                 combobox->addItem( qfu( p_item->ppsz_list_text[i_index] ), p_item->ppsz_list[i_index] );
343         }
344     }
345     else
346     {
347         msg_Err( p_intf, "Couldn't find option \"%s\".",
348                  option.toStdString().c_str() );
349     }
350 }
351
352 void ExtVideo::setWidgetValue( QObject *widget )
353 {
354     QString module = ModuleFromWidgetName( widget->parent() );
355     //std::cout << "Module name: " << module.toStdString() << std::endl;
356     QString option = OptionFromWidgetName( widget );
357     //std::cout << "Option name: " << option.toStdString() << std::endl;
358
359     vlc_object_t *p_obj = (vlc_object_t *)
360         vlc_object_find_name( p_intf->p_libvlc,
361                               module.toStdString().c_str(),
362                               FIND_CHILD );
363     int i_type;
364     vlc_value_t val;
365
366     if( !p_obj )
367     {
368         msg_Dbg( p_intf,
369                  "Module instance %s not found, looking in config values.",
370                  module.toStdString().c_str() );
371         i_type = config_GetType( p_intf, option.toStdString().c_str() ) & 0xf0;
372         switch( i_type )
373         {
374             case VLC_VAR_INTEGER:
375             case VLC_VAR_BOOL:
376                 val.i_int = config_GetInt( p_intf, option.toStdString().c_str() );
377                 break;
378             case VLC_VAR_FLOAT:
379                 val.f_float = config_GetFloat( p_intf, option.toStdString().c_str() );
380                 break;
381             case VLC_VAR_STRING:
382                 val.psz_string = config_GetPsz( p_intf, option.toStdString().c_str() );
383                 break;
384         }
385     }
386     else
387     {
388         i_type = var_Type( p_obj, option.toStdString().c_str() ) & 0xf0;
389         var_Get( p_obj, option.toStdString().c_str(), &val );
390         vlc_object_release( p_obj );
391     }
392
393     /* Try to cast to all the widgets we're likely to encounter. Only
394      * one of the casts is expected to work. */
395     QSlider        *slider        = qobject_cast<QSlider*>       (widget);
396     QCheckBox      *checkbox      = qobject_cast<QCheckBox*>     (widget);
397     QSpinBox       *spinbox       = qobject_cast<QSpinBox*>      (widget);
398     QDoubleSpinBox *doublespinbox = qobject_cast<QDoubleSpinBox*>(widget);
399     QDial          *dial          = qobject_cast<QDial*>         (widget);
400     QLineEdit      *lineedit      = qobject_cast<QLineEdit*>     (widget);
401     QComboBox      *combobox      = qobject_cast<QComboBox*>     (widget);
402
403     if( i_type == VLC_VAR_INTEGER || i_type == VLC_VAR_BOOL )
404     {
405         int i_int = 0;
406         if( slider )        slider->setValue( val.i_int );
407         else if( checkbox ) checkbox->setCheckState( val.i_int? Qt::Checked
408                                                               : Qt::Unchecked );
409         else if( spinbox )  spinbox->setValue( val.i_int );
410         else if( dial )     dial->setValue( (540-val.i_int)%360 );
411         else if( lineedit )
412         {
413             char str[30];
414             sprintf( str, "%06X", val.i_int );
415             lineedit->setText( str );
416         }
417         else if( combobox ) combobox->setCurrentIndex(
418                             combobox->findData( val.i_int ) );
419         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
420     }
421     else if( i_type == VLC_VAR_FLOAT )
422     {
423         double f_float = 0;
424         if( slider ) slider->setValue( (int)(val.f_float*(double)slider->tickInterval())); /* hack alert! */
425         else if( doublespinbox ) doublespinbox->setValue(val.f_float);
426         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
427     }
428     else if( i_type == VLC_VAR_STRING )
429     {
430         if( lineedit ) lineedit->setText( qfu(val.psz_string) );
431         else if( combobox ) combobox->setCurrentIndex(
432                             combobox->findData( qfu( val.psz_string ) ) );
433         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
434         free( val.psz_string );
435     }
436     else
437         msg_Err( p_intf,
438                  "Module %s's %s variable is of an unsupported type (%d)",
439                  module.toStdString().c_str(),
440                  option.toStdString().c_str(),
441                  i_type );
442 }
443
444 void ExtVideo::updateFilterOptions()
445 {
446     QString module = ModuleFromWidgetName( sender()->parent() );
447     //std::cout << "Module name: " << module.toStdString() << std::endl;
448     QString option = OptionFromWidgetName( sender() );
449     //std::cout << "Option name: " << option.toStdString() << std::endl;
450
451     vlc_object_t *p_obj = (vlc_object_t *)
452         vlc_object_find_name( p_intf->p_libvlc,
453                               module.toStdString().c_str(),
454                               FIND_CHILD );
455     if( !p_obj )
456     {
457         msg_Err( p_intf, "Module %s not found.", module.toStdString().c_str() );
458         return;
459     }
460
461     int i_type = var_Type( p_obj, option.toStdString().c_str() );
462     bool b_is_command = ( i_type & VLC_VAR_ISCOMMAND );
463     if( !b_is_command )
464     {
465         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.",
466                  module.toStdString().c_str(),
467                  option.toStdString().c_str() );
468         /* FIXME: restart automatically somewhere near the end of this function */
469     }
470
471     /* Try to cast to all the widgets we're likely to encounter. Only
472      * one of the casts is expected to work. */
473     QSlider        *slider        = qobject_cast<QSlider*>       (sender());
474     QCheckBox      *checkbox      = qobject_cast<QCheckBox*>     (sender());
475     QSpinBox       *spinbox       = qobject_cast<QSpinBox*>      (sender());
476     QDoubleSpinBox *doublespinbox = qobject_cast<QDoubleSpinBox*>(sender());
477     QDial          *dial          = qobject_cast<QDial*>         (sender());
478     QLineEdit      *lineedit      = qobject_cast<QLineEdit*>     (sender());
479     QComboBox      *combobox      = qobject_cast<QComboBox*>     (sender());
480
481     i_type &= 0xf0;
482     if( i_type == VLC_VAR_INTEGER || i_type == VLC_VAR_BOOL )
483     {
484         int i_int = 0;
485         if( slider )        i_int = slider->value();
486         else if( checkbox ) i_int = checkbox->checkState() == Qt::Checked;
487         else if( spinbox )  i_int = spinbox->value();
488         else if( dial )     i_int = (540-dial->value())%360;
489         else if( lineedit ) i_int = lineedit->text().toInt(NULL,16);
490         else if( combobox ) i_int = combobox->itemData(combobox->currentIndex()).toInt();
491         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
492         config_PutInt( p_intf, option.toStdString().c_str(), i_int );
493         if( b_is_command )
494         {
495             if( i_type == VLC_VAR_INTEGER )
496                 var_SetInteger( p_obj, option.toStdString().c_str(), i_int );
497             else
498                 var_SetBool( p_obj, option.toStdString().c_str(), i_int );
499         }
500     }
501     else if( i_type == VLC_VAR_FLOAT )
502     {
503         double f_float = 0;
504         if( slider )             f_float = (double)slider->value()
505                                          / (double)slider->tickInterval(); /* hack alert! */
506         else if( doublespinbox ) f_float = doublespinbox->value();
507         else if( lineedit ) f_float = lineedit->text().toDouble();
508         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
509         config_PutFloat( p_intf, option.toStdString().c_str(), f_float );
510         if( b_is_command )
511             var_SetFloat( p_obj, option.toStdString().c_str(), f_float );
512     }
513     else if( i_type == VLC_VAR_STRING )
514     {
515         char *psz_string = NULL;
516         if( lineedit ) psz_string = strdup(qtu(lineedit->text()));
517         else if( combobox ) psz_string = strdup(qtu(combobox->itemData(
518                                          combobox->currentIndex()).toString()));
519         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
520         config_PutPsz( p_intf, option.toStdString().c_str(), psz_string );
521         if( b_is_command )
522             var_SetString( p_obj, option.toStdString().c_str(), psz_string );
523         free( psz_string );
524     }
525     else
526         msg_Err( p_intf,
527                  "Module %s's %s variable is of an unsupported type (%d)",
528                  module.toStdString().c_str(),
529                  option.toStdString().c_str(),
530                  i_type );
531
532     vlc_object_release( p_obj );
533 }
534
535 #if 0
536 void ExtVideo::gotoConf( QObject* src )
537 {
538 #define SHOWCONF(module) \
539     if( src->objectName().contains(module) ) \
540     { \
541         PrefsDialog::getInstance( p_intf )->showModulePrefs( module ); \
542         return; \
543     }
544     SHOWCONF( "clone" );
545     SHOWCONF( "magnify" );
546     SHOWCONF( "wave" );
547     SHOWCONF( "ripple" );
548     SHOWCONF( "invert" );
549     SHOWCONF( "puzzle" );
550     SHOWCONF( "wall" );
551     SHOWCONF( "gradient" );
552     SHOWCONF( "colorthres" )
553 }
554 #endif
555
556 /**********************************************************************
557  * Equalizer
558  **********************************************************************/
559
560 static const QString band_frequencies[] =
561 {
562     "   60Hz  ", " 170 Hz " , " 310 Hz ", " 600 Hz ", "  1 kHz  ",
563     "  3 kHz  " , "  6 kHz ", " 12 kHz ", " 14 kHz ", " 16 kHz "
564 };
565
566 Equalizer::Equalizer( intf_thread_t *_p_intf, QWidget *_parent ) :
567                             QWidget( _parent ) , p_intf( _p_intf )
568 {
569     QFont smallFont = QApplication::font( static_cast<QWidget*>(0) );
570     smallFont.setPointSize( smallFont.pointSize() - 3 );
571
572     ui.setupUi( this );
573
574     ui.preampLabel->setFont( smallFont );
575     ui.preampSlider->setMaximum( 400 );
576     for( int i = 0 ; i < NB_PRESETS ; i ++ )
577     {
578         ui.presetsCombo->addItem( qtr( preset_list_text[i] ),
579                                   QVariant( i ) );
580     }
581     CONNECT( ui.presetsCombo, activated( int ), this, setPreset( int ) );
582
583     BUTTONACT( ui.enableCheck, enable() );
584     BUTTONACT( ui.eq2PassCheck, set2Pass() );
585
586     CONNECT( ui.preampSlider, valueChanged(int), this, setPreamp() );
587
588     QGridLayout *grid = new QGridLayout( ui.frame );
589     grid->setMargin( 0 );
590     for( int i = 0 ; i < BANDS ; i++ )
591     {
592         bands[i] = new QSlider( Qt::Vertical );
593         bands[i]->setMaximum( 400 );
594         bands[i]->setValue( 200 );
595         CONNECT( bands[i], valueChanged(int), this, setBand() );
596         band_texts[i] = new QLabel( band_frequencies[i] + "\n0.0dB" );
597         band_texts[i]->setFont( smallFont );
598         grid->addWidget( bands[i], 0, i );
599         grid->addWidget( band_texts[i], 1, i );
600     }
601
602     /* Write down initial values */
603     aout_instance_t *p_aout = (aout_instance_t *)vlc_object_find(p_intf,
604                                     VLC_OBJECT_AOUT, FIND_ANYWHERE);
605     char *psz_af = NULL;
606     char *psz_bands;
607     float f_preamp;
608     if( p_aout )
609     {
610         psz_af = var_GetString( p_aout, "audio-filter" );
611         if( var_GetBool( p_aout, "equalizer-2pass" ) )
612             ui.eq2PassCheck->setChecked( true );
613         psz_bands = var_GetString( p_aout, "equalizer-bands" );
614         f_preamp = var_GetFloat( p_aout, "equalizer-preamp" );
615         vlc_object_release( p_aout );
616     }
617     else
618     {
619         psz_af = config_GetPsz( p_intf, "audio-filter" );
620         if( config_GetInt( p_intf, "equalizer-2pass" ) )
621             ui.eq2PassCheck->setChecked( true );
622         psz_bands = config_GetPsz( p_intf, "equalizer-bands" );
623         f_preamp = config_GetFloat( p_intf, "equalizer-preamp" );
624     }
625     if( psz_af && strstr( psz_af, "equalizer" ) != NULL )
626         ui.enableCheck->setChecked( true );
627     enable( ui.enableCheck->isChecked() );
628
629     setValues( psz_bands, f_preamp );
630 }
631
632 Equalizer::~Equalizer()
633 {
634 }
635
636 void Equalizer::enable()
637 {
638     bool en = ui.enableCheck->isChecked();
639     aout_EnableFilter( VLC_OBJECT( p_intf ), "equalizer",
640                        en ? VLC_TRUE : VLC_FALSE );
641 //    aout_EnableFilter( VLC_OBJECT( p_intf ), "upmixer",
642 //                       en ? VLC_TRUE : VLC_FALSE );
643 //     aout_EnableFilter( VLC_OBJECT( p_intf ), "vsurround",
644 //                       en ? VLC_TRUE : VLC_FALSE );
645      enable( en );
646 }
647
648 void Equalizer::enable( bool en )
649 {
650     ui.eq2PassCheck->setEnabled( en );
651     ui.preampLabel->setEnabled( en );
652     ui.preampSlider->setEnabled( en  );
653     for( int i = 0 ; i< BANDS; i++ )
654     {
655         bands[i]->setEnabled( en ); band_texts[i]->setEnabled( en );
656     }
657 }
658
659 void Equalizer::set2Pass()
660 {
661     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
662                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
663     vlc_bool_t b_2p = ui.eq2PassCheck->isChecked();
664
665     if( p_aout == NULL )
666         config_PutInt( p_intf, "equalizer-2pass", b_2p );
667     else
668     {
669         var_SetBool( p_aout, "equalizer-2pass", b_2p );
670         config_PutInt( p_intf, "equalizer-2pass", b_2p );
671         for( int i = 0; i < p_aout->i_nb_inputs; i++ )
672         {
673             p_aout->pp_inputs[i]->b_restart = VLC_TRUE;
674         }
675         vlc_object_release( p_aout );
676     }
677 }
678
679 void Equalizer::setPreamp()
680 {
681     float f= (float)(  ui.preampSlider->value() ) /10 - 20;
682     char psz_val[5];
683     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
684                                        VLC_OBJECT_AOUT, FIND_ANYWHERE);
685
686     sprintf( psz_val, "%.1f", f );
687     ui.preampLabel->setText( qtr("Preamp\n") + psz_val + qtr("dB") );
688     if( p_aout )
689     {
690         delCallbacks( p_aout );
691         var_SetFloat( p_aout, "equalizer-preamp", f );
692         addCallbacks( p_aout );
693         vlc_object_release( p_aout );
694     }
695     config_PutFloat( p_intf, "equalizer-preamp", f );
696 }
697
698 void Equalizer::setBand()
699 {
700     char psz_values[102]; memset( psz_values, 0, 102 );
701
702     /**\todo smoothing */
703
704     for( int i = 0 ; i< BANDS ; i++ )
705     {
706         char psz_val[5];
707         float f_val = (float)(  bands[i]->value() ) / 10 - 20 ;
708         sprintf( psz_values, "%s %f", psz_values, f_val );
709         sprintf( psz_val, "% 5.1f", f_val );
710         band_texts[i]->setText( band_frequencies[i] + "\n" + psz_val + "dB" );
711     }
712     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
713                                           VLC_OBJECT_AOUT, FIND_ANYWHERE);
714     if( p_aout )
715     {
716         delCallbacks( p_aout );
717         var_SetString( p_aout, "equalizer-bands", psz_values );
718         addCallbacks( p_aout );
719         vlc_object_release( p_aout );
720     }
721 }
722 void Equalizer::setValues( char *psz_bands, float f_preamp )
723 {
724     char *p = psz_bands;
725     if ( p )
726     {
727         for( int i = 0; i < 10; i++ )
728         {
729             char psz_val[5];
730             float f = strtof( p, &p );
731             int  i_val= (int)( ( f + 20 ) * 10 );
732             bands[i]->setValue(  i_val );
733             sprintf( psz_val, "% 5.1f", f );
734             band_texts[i]->setText( band_frequencies[i] + "\n" + psz_val +
735                                     "dB" );
736             if( p == NULL || *p == '\0' ) break;
737             p++;
738             if( *p == '\0' )  break;
739         }
740     }
741     char psz_val[5];
742     int i_val = (int)( ( f_preamp + 20 ) * 10 );
743     sprintf( psz_val, "%.1f", f_preamp );
744     ui.preampSlider->setValue( i_val );
745     ui.preampLabel->setText( qtr("Preamp\n") + psz_val + qtr("dB") );
746 }
747
748 void Equalizer::setPreset( int preset )
749 {
750     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
751                                                 VLC_OBJECT_AOUT, FIND_ANYWHERE);
752
753     char psz_values[102]; memset( psz_values, 0, 102 );
754     for( int i = 0 ; i< 10 ;i++ )
755         sprintf( psz_values, "%s %.1f", psz_values,
756                                         eqz_preset_10b[preset]->f_amp[i] );
757
758     if( p_aout )
759     {
760         delCallbacks( p_aout );
761         var_SetString( p_aout, "equalizer-bands", psz_values );
762         var_SetFloat( p_aout, "equalizer-preamp",
763                       eqz_preset_10b[preset]->f_preamp );
764         addCallbacks( p_aout );
765         vlc_object_release( p_aout );
766     }
767     config_PutPsz( p_intf, "equalizer-bands", psz_values );
768     config_PutFloat( p_intf, "equalizer-preamp",
769                     eqz_preset_10b[preset]->f_preamp );
770
771     setValues( psz_values, eqz_preset_10b[preset]->f_preamp );
772 }
773
774 void Equalizer::delCallbacks( aout_instance_t *p_aout )
775 {
776 //    var_DelCallback( p_aout, "equalizer-bands", EqzCallback, this );
777 //    var_DelCallback( p_aout, "equalizer-preamp", EqzCallback, this );
778 }
779
780 void Equalizer::addCallbacks( aout_instance_t *p_aout )
781 {
782 //    var_AddCallback( p_aout, "equalizer-bands", EqzCallback, this );
783 //    var_AddCallback( p_aout, "equalizer-preamp", EqzCallback, this );
784 }
785
786
787 /**********************************************************************
788  * Spatializer
789  **********************************************************************/
790 static const char *psz_control_names[] =
791 {
792     "Roomsize", "Width" , "Wet", "Dry", "Damp"
793 };
794 static const QString control_names[] =
795 {
796     "Roomsize", "Width" , "Wet", "Dry", "Damp"
797 };
798
799 Spatializer::Spatializer( intf_thread_t *_p_intf, QWidget *_parent ) :
800     QWidget( _parent ) , p_intf( _p_intf )
801 {
802     QFont smallFont = QApplication::font( static_cast<QWidget*>(0) );
803     smallFont.setPointSize( smallFont.pointSize() - 3 );
804
805     ui.setupUi( this );
806
807     QGridLayout *grid = new QGridLayout( ui.frame );
808     grid->setMargin( 0 );
809
810     for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
811     {
812         spatCtrl[i] = new QSlider( Qt::Vertical );
813         if( i < 2)
814         {
815             spatCtrl[i]->setMaximum( 10 );
816             spatCtrl[i]->setValue( 2 );
817         }
818         else
819         {
820             spatCtrl[i]->setMaximum( 10 );
821             spatCtrl[i]->setValue( 0 );
822             spatCtrl[i]->setMinimum( -10 );
823         }
824         oldControlVars[i] = spatCtrl[i]->value();
825         CONNECT( spatCtrl[i], valueChanged(int), this, setInitValues() );
826         ctrl_texts[i] = new QLabel( control_names[i] + "\n" );
827         ctrl_texts[i]->setFont( smallFont );
828         ctrl_readout[i] = new QLabel( "" );
829         ctrl_readout[i]->setFont( smallFont );
830         grid->addWidget( spatCtrl[i], 0, i );
831         grid->addWidget( ctrl_readout[i],1,i);
832         grid->addWidget( ctrl_texts[i], 2, i );
833     }
834
835     BUTTONACT( ui.enableCheck, enable() );
836
837     /* Write down initial values */
838     aout_instance_t *p_aout = (aout_instance_t *)
839         vlc_object_find(p_intf, VLC_OBJECT_AOUT, FIND_ANYWHERE);
840     char *psz_af = NULL;
841
842     if( p_aout )
843     {
844         psz_af = var_GetString( p_aout, "audio-filter" );
845         for( int i = 0; i < NUM_SP_CTRL ; i++)
846         {
847             controlVars[i] = var_GetFloat( p_aout,  psz_control_names[i] );
848         }
849         vlc_object_release( p_aout );
850     }
851     else
852     {
853         psz_af = config_GetPsz( p_aout, "audio-filter" );
854         for( int i = 0; i < NUM_SP_CTRL ; i++)
855         {
856             controlVars[i] = config_GetFloat( p_intf,  psz_control_names[i] );
857         }
858     }
859     if( psz_af && strstr( psz_af, "spatializer" ) != NULL )
860         ui.enableCheck->setChecked( true );
861     enable( ui.enableCheck->isChecked() );
862     setValues( controlVars );
863
864 }
865
866 Spatializer::~Spatializer()
867 {
868 }
869
870 void Spatializer::enable()
871 {
872     bool en = ui.enableCheck->isChecked();
873     aout_EnableFilter( VLC_OBJECT( p_intf ), "spatializer",
874             en ? VLC_TRUE : VLC_FALSE );
875     enable( en );
876 }
877
878 void Spatializer::enable( bool en )
879 {
880     for( int i = 0 ; i< NUM_SP_CTRL; i++ )
881     {
882         spatCtrl[i]->setEnabled( en );
883         ctrl_texts[i]->setEnabled( en );
884         ctrl_readout[i]->setEnabled( en );
885     }
886 }
887 void Spatializer::setInitValues()
888 {
889     setValues(controlVars);
890 }
891
892 void Spatializer::setValues(float *controlVars)
893 {
894     char psz_val[5];
895     char var_name[5];
896     aout_instance_t *p_aout= (aout_instance_t *)
897         vlc_object_find(p_intf, VLC_OBJECT_AOUT, FIND_ANYWHERE);
898
899     for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
900     {
901         float f= (float)(  spatCtrl[i]->value() );
902         sprintf( psz_val, "%.1f", f );
903         ctrl_readout[i]->setText( psz_val );
904     }
905     if( p_aout )
906     {
907         for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
908         {
909             if( oldControlVars[i] != spatCtrl[i]->value() )
910             {
911                 var_SetFloat( p_aout, psz_control_names[i],
912                         (float)spatCtrl[i]->value() );
913                 config_PutFloat( p_intf, psz_control_names[i],
914                         (float) spatCtrl[i]->value());
915                 oldControlVars[i] = (float) spatCtrl[i]->value();
916             }
917         }
918         vlc_object_release( p_aout );
919     }
920     //    printf("set callback values %s %s %d\n", __FILE__,__func__,__LINE__);
921
922 }
923 void Spatializer::delCallbacks( aout_instance_t *p_aout )
924 {
925     //    var_DelCallback( p_aout, "Spatializer-bands", EqzCallback, this );
926     //    var_DelCallback( p_aout, "Spatializer-preamp", EqzCallback, this );
927 }
928
929 void Spatializer::addCallbacks( aout_instance_t *p_aout )
930 {
931     //    var_AddCallback( p_aout, "Spatializer-bands", EqzCallback, this );
932     //    var_AddCallback( p_aout, "Spatializer-preamp", EqzCallback, this );
933 }
934
935 /**********************************************************************
936  * Video filters / Adjust
937  **********************************************************************/
938
939 /**********************************************************************
940  * Audio filters
941  **********************************************************************/
942
943 /**********************************************************************
944  * Extended playbak controls
945  **********************************************************************/