]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.cpp
Add v4l2 section in extended pannel. The code isn't v4l2 specific at all so it could...
[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 #include <QComboBox>
32
33 #include "components/extended_panels.hpp"
34 #include "dialogs/preferences.hpp"
35 #include "dialogs_provider.hpp"
36 #include "qt4.hpp"
37
38 #include "../../audio_filter/equalizer_presets.h"
39 #include <vlc_aout.h>
40 #include <vlc_intf_strings.h>
41 #include <vlc_vout.h>
42 #include <vlc_osd.h>
43
44 #include <iostream>
45 #include <string.h>
46
47 #if 0
48 class ConfClickHandler : public QObject
49 {
50 public:
51     ConfClickHandler( intf_thread_t *_p_intf, ExtVideo *_e ) : QObject ( _e ) {
52         e = _e; p_intf = _p_intf;
53     }
54     virtual ~ConfClickHandler() {}
55     bool eventFilter( QObject *obj, QEvent *evt )
56     {
57         if( evt->type() == QEvent::MouseButtonPress )
58         {
59             e->gotoConf( obj );
60             return true;
61         }
62         return false;
63     }
64 private:
65     ExtVideo* e;
66     intf_thread_t *p_intf;
67 };
68 #endif
69
70 QString ModuleFromWidgetName( QObject *obj )
71 {
72     return obj->objectName().replace( "Enable","" );
73 }
74
75 QString OptionFromWidgetName( QObject *obj )
76 {
77     /* Gruik ? ... nah */
78     QString option = obj->objectName().replace( "Slider", "" )
79                                       .replace( "Combo" , "" )
80                                       .replace( "Dial"  , "" )
81                                       .replace( "Check" , "" )
82                                       .replace( "Spin"  , "" )
83                                       .replace( "Text"  , "" );
84     for( char a = 'A'; a <= 'Z'; a++ )
85     {
86         option = option.replace( QString( a ),
87                                  QString( '-' ) + QString( a + 'a' - 'A' ) );
88     }
89     return option;
90 }
91
92 ExtVideo::ExtVideo( intf_thread_t *_p_intf, QWidget *_parent ) :
93                            QWidget( _parent ) , p_intf( _p_intf )
94 {
95     ui.setupUi( this );
96
97 #define SETUP_VFILTER( widget ) \
98     { \
99         vlc_object_t *p_obj = ( vlc_object_t * ) \
100             vlc_object_find_name( p_intf->p_libvlc, \
101                                   #widget, \
102                                   FIND_CHILD ); \
103         QCheckBox *checkbox = qobject_cast<QCheckBox*>( ui.widget##Enable ); \
104         QGroupBox *groupbox = qobject_cast<QGroupBox*>( ui.widget##Enable ); \
105         if( p_obj ) \
106         { \
107             vlc_object_release( p_obj ); \
108             if( checkbox ) checkbox->setCheckState( Qt::Checked ); \
109             else groupbox->setChecked( true ); \
110         } \
111         else \
112         { \
113             if( checkbox ) checkbox->setCheckState( Qt::Unchecked ); \
114             else groupbox->setChecked( false ); \
115         } \
116     } \
117     CONNECT( ui.widget##Enable, clicked(), this, updateFilters() );
118 #define SETUP_VFILTER_OPTION( widget, signal ) \
119     initComboBoxItems( ui.widget ); \
120     setWidgetValue( ui.widget ); \
121     CONNECT( ui.widget, signal, this, updateFilterOptions() );
122
123     SETUP_VFILTER( adjust )
124     SETUP_VFILTER_OPTION( hueSlider, valueChanged( int ) )
125     SETUP_VFILTER_OPTION( contrastSlider, valueChanged( int ) )
126     SETUP_VFILTER_OPTION( brightnessSlider, valueChanged( int ) )
127     SETUP_VFILTER_OPTION( saturationSlider, valueChanged( int ) )
128     SETUP_VFILTER_OPTION( gammaSlider, valueChanged( int ) )
129     SETUP_VFILTER_OPTION( brightnessThresholdCheck, stateChanged( int ) )
130
131     SETUP_VFILTER( extract )
132     SETUP_VFILTER_OPTION( extractComponentText, textChanged( QString ) )
133
134     SETUP_VFILTER( colorthres )
135     SETUP_VFILTER_OPTION( colorthresColorText, textChanged( QString ) )
136     SETUP_VFILTER_OPTION( colorthresSaturationthresSlider, valueChanged( int ) )
137     SETUP_VFILTER_OPTION( colorthresSimilaritythresSlider, valueChanged( int ) )
138
139     SETUP_VFILTER( invert )
140
141     SETUP_VFILTER( gradient )
142     SETUP_VFILTER_OPTION( gradientModeCombo, currentIndexChanged( QString ) )
143     SETUP_VFILTER_OPTION( gradientTypeCheck, stateChanged( int ) )
144     SETUP_VFILTER_OPTION( gradientCartoonCheck, stateChanged( int ) )
145
146     SETUP_VFILTER( motionblur )
147     SETUP_VFILTER_OPTION( blurFactorSlider, valueChanged( int ) )
148
149     SETUP_VFILTER( motiondetect )
150
151     SETUP_VFILTER( noise )
152
153     SETUP_VFILTER( psychedelic )
154
155     SETUP_VFILTER( sharpen )
156     SETUP_VFILTER_OPTION( sharpenSigmaSlider, valueChanged( int ) )
157
158     SETUP_VFILTER( ripple )
159
160     SETUP_VFILTER( wave )
161
162     SETUP_VFILTER( transform )
163     SETUP_VFILTER_OPTION( transformTypeCombo, currentIndexChanged( QString ) )
164
165     SETUP_VFILTER( rotate )
166     SETUP_VFILTER_OPTION( rotateAngleDial, valueChanged( int ) )
167     ui.rotateAngleDial->setWrapping( true );
168     ui.rotateAngleDial->setNotchesVisible( true );
169
170     SETUP_VFILTER( puzzle )
171     SETUP_VFILTER_OPTION( puzzleRowsSpin, valueChanged( int ) )
172     SETUP_VFILTER_OPTION( puzzleColsSpin, valueChanged( int ) )
173     SETUP_VFILTER_OPTION( puzzleBlackSlotCheck, stateChanged( int ) )
174
175     SETUP_VFILTER( magnify )
176
177     SETUP_VFILTER( clone )
178     SETUP_VFILTER_OPTION( cloneCountSpin, valueChanged( int ) )
179
180     SETUP_VFILTER( wall )
181     SETUP_VFILTER_OPTION( wallRowsSpin, valueChanged( int ) )
182     SETUP_VFILTER_OPTION( wallColsSpin, valueChanged( int ) )
183
184     SETUP_VFILTER( erase )
185     SETUP_VFILTER_OPTION( eraseMaskText, editingFinished() )
186     SETUP_VFILTER_OPTION( eraseYSpin, valueChanged( int ) )
187     SETUP_VFILTER_OPTION( eraseXSpin, valueChanged( int ) )
188
189     SETUP_VFILTER( marq )
190     SETUP_VFILTER_OPTION( marqMarqueeText, textChanged( QString ) )
191     SETUP_VFILTER_OPTION( marqPositionCombo, currentIndexChanged( QString ) )
192
193     SETUP_VFILTER( logo )
194     SETUP_VFILTER_OPTION( logoFileText, editingFinished() )
195     SETUP_VFILTER_OPTION( logoYSpin, valueChanged( int ) )
196     SETUP_VFILTER_OPTION( logoXSpin, valueChanged( int ) )
197     SETUP_VFILTER_OPTION( logoTransparencySlider, valueChanged( int ) )
198
199 #undef SETUP_VFILTER
200 #undef SETUP_VFILTER_OPTION
201 }
202
203 ExtVideo::~ExtVideo()
204 {
205 }
206
207 void ExtVideo::ChangeVFiltersString( char *psz_name, vlc_bool_t b_add )
208 {
209     vout_thread_t *p_vout;
210     char *psz_parser, *psz_string;
211     const 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] ),
341                                    p_item->pi_list[i_index] );
342             else if( i_type == CONFIG_ITEM_STRING )
343                 combobox->addItem( qfu( p_item->ppsz_list_text[i_index] ),
344                                    p_item->ppsz_list[i_index] );
345         }
346     }
347     else
348     {
349         msg_Err( p_intf, "Couldn't find option \"%s\".",
350                  option.toStdString().c_str() );
351     }
352 }
353
354 void ExtVideo::setWidgetValue( QObject *widget )
355 {
356     QString module = ModuleFromWidgetName( widget->parent() );
357     //std::cout << "Module name: " << module.toStdString() << std::endl;
358     QString option = OptionFromWidgetName( widget );
359     //std::cout << "Option name: " << option.toStdString() << std::endl;
360
361     vlc_object_t *p_obj = ( vlc_object_t * )
362         vlc_object_find_name( p_intf->p_libvlc,
363                               module.toStdString().c_str(),
364                               FIND_CHILD );
365     int i_type;
366     vlc_value_t val;
367
368     if( !p_obj )
369     {
370 #if 0
371         msg_Dbg( p_intf,
372                  "Module instance %s not found, looking in config values.",
373                  module.toStdString().c_str() );
374 #endif
375         i_type = config_GetType( p_intf, option.toStdString().c_str() ) & 0xf0;
376         switch( i_type )
377         {
378             case VLC_VAR_INTEGER:
379             case VLC_VAR_BOOL:
380                 val.i_int = config_GetInt( p_intf, option.toStdString().c_str() );
381                 break;
382             case VLC_VAR_FLOAT:
383                 val.f_float = config_GetFloat( p_intf, option.toStdString().c_str() );
384                 break;
385             case VLC_VAR_STRING:
386                 val.psz_string = config_GetPsz( p_intf, option.toStdString().c_str() );
387                 break;
388         }
389     }
390     else
391     {
392         i_type = var_Type( p_obj, option.toStdString().c_str() ) & 0xf0;
393         var_Get( p_obj, option.toStdString().c_str(), &val );
394         vlc_object_release( p_obj );
395     }
396
397     /* Try to cast to all the widgets we're likely to encounter. Only
398      * one of the casts is expected to work. */
399     QSlider        *slider        = qobject_cast<QSlider*>       ( widget );
400     QCheckBox      *checkbox      = qobject_cast<QCheckBox*>     ( widget );
401     QSpinBox       *spinbox       = qobject_cast<QSpinBox*>      ( widget );
402     QDoubleSpinBox *doublespinbox = qobject_cast<QDoubleSpinBox*>( widget );
403     QDial          *dial          = qobject_cast<QDial*>         ( widget );
404     QLineEdit      *lineedit      = qobject_cast<QLineEdit*>     ( widget );
405     QComboBox      *combobox      = qobject_cast<QComboBox*>     ( widget );
406
407     if( i_type == VLC_VAR_INTEGER || i_type == VLC_VAR_BOOL )
408     {
409         int i_int = 0;
410         if( slider )        slider->setValue( val.i_int );
411         else if( checkbox ) checkbox->setCheckState( val.i_int? Qt::Checked
412                                                               : Qt::Unchecked );
413         else if( spinbox )  spinbox->setValue( val.i_int );
414         else if( dial )     dial->setValue( ( 540-val.i_int )%360 );
415         else if( lineedit )
416         {
417             char str[30];
418             sprintf( str, "%06X", val.i_int );
419             lineedit->setText( str );
420         }
421         else if( combobox ) combobox->setCurrentIndex(
422                             combobox->findData( val.i_int ) );
423         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
424     }
425     else if( i_type == VLC_VAR_FLOAT )
426     {
427         double f_float = 0;
428         if( slider ) slider->setValue( ( int )( val.f_float*( double )slider->tickInterval() ) ); /* hack alert! */
429         else if( doublespinbox ) doublespinbox->setValue( val.f_float );
430         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
431     }
432     else if( i_type == VLC_VAR_STRING )
433     {
434         if( lineedit ) lineedit->setText( qfu( val.psz_string ) );
435         else if( combobox ) combobox->setCurrentIndex(
436                             combobox->findData( qfu( val.psz_string ) ) );
437         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
438         free( val.psz_string );
439     }
440     else
441         msg_Err( p_intf,
442                  "Module %s's %s variable is of an unsupported type ( %d )",
443                  module.toStdString().c_str(),
444                  option.toStdString().c_str(),
445                  i_type );
446 }
447
448 void ExtVideo::updateFilterOptions()
449 {
450     QString module = ModuleFromWidgetName( sender()->parent() );
451     //std::cout << "Module name: " << module.toStdString() << std::endl;
452     QString option = OptionFromWidgetName( sender() );
453     //std::cout << "Option name: " << option.toStdString() << std::endl;
454
455     vlc_object_t *p_obj = ( vlc_object_t * )
456         vlc_object_find_name( p_intf->p_libvlc,
457                               module.toStdString().c_str(),
458                               FIND_CHILD );
459     if( !p_obj )
460     {
461         msg_Err( p_intf, "Module %s not found.", module.toStdString().c_str() );
462         return;
463     }
464
465     int i_type = var_Type( p_obj, option.toStdString().c_str() );
466     bool b_is_command = ( i_type & VLC_VAR_ISCOMMAND );
467     if( !b_is_command )
468     {
469         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.",
470                  module.toStdString().c_str(),
471                  option.toStdString().c_str() );
472         /* FIXME: restart automatically somewhere near the end of this function */
473     }
474
475     /* Try to cast to all the widgets we're likely to encounter. Only
476      * one of the casts is expected to work. */
477     QSlider        *slider        = qobject_cast<QSlider*>       ( sender() );
478     QCheckBox      *checkbox      = qobject_cast<QCheckBox*>     ( sender() );
479     QSpinBox       *spinbox       = qobject_cast<QSpinBox*>      ( sender() );
480     QDoubleSpinBox *doublespinbox = qobject_cast<QDoubleSpinBox*>( sender() );
481     QDial          *dial          = qobject_cast<QDial*>         ( sender() );
482     QLineEdit      *lineedit      = qobject_cast<QLineEdit*>     ( sender() );
483     QComboBox      *combobox      = qobject_cast<QComboBox*>     ( sender() );
484
485     i_type &= 0xf0;
486     if( i_type == VLC_VAR_INTEGER || i_type == VLC_VAR_BOOL )
487     {
488         int i_int = 0;
489         if( slider )        i_int = slider->value();
490         else if( checkbox ) i_int = checkbox->checkState() == Qt::Checked;
491         else if( spinbox )  i_int = spinbox->value();
492         else if( dial )     i_int = ( 540-dial->value() )%360;
493         else if( lineedit ) i_int = lineedit->text().toInt( NULL,16 );
494         else if( combobox ) i_int = combobox->itemData( combobox->currentIndex() ).toInt();
495         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
496         config_PutInt( p_intf, option.toStdString().c_str(), i_int );
497         if( b_is_command )
498         {
499             if( i_type == VLC_VAR_INTEGER )
500                 var_SetInteger( p_obj, option.toStdString().c_str(), i_int );
501             else
502                 var_SetBool( p_obj, option.toStdString().c_str(), i_int );
503         }
504     }
505     else if( i_type == VLC_VAR_FLOAT )
506     {
507         double f_float = 0;
508         if( slider )             f_float = ( double )slider->value()
509                                          / ( double )slider->tickInterval(); /* hack alert! */
510         else if( doublespinbox ) f_float = doublespinbox->value();
511         else if( lineedit ) f_float = lineedit->text().toDouble();
512         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
513         config_PutFloat( p_intf, option.toStdString().c_str(), f_float );
514         if( b_is_command )
515             var_SetFloat( p_obj, option.toStdString().c_str(), f_float );
516     }
517     else if( i_type == VLC_VAR_STRING )
518     {
519         char *psz_string = NULL;
520         if( lineedit ) psz_string = strdup( qtu( lineedit->text() ) );
521         else if( combobox ) psz_string = strdup( qtu( combobox->itemData(
522                                          combobox->currentIndex() ).toString() ) );
523         else msg_Warn( p_intf, "Oops %s %s %d", __FILE__, __func__, __LINE__ );
524         config_PutPsz( p_intf, option.toStdString().c_str(), psz_string );
525         if( b_is_command )
526             var_SetString( p_obj, option.toStdString().c_str(), psz_string );
527         free( psz_string );
528     }
529     else
530         msg_Err( p_intf,
531                  "Module %s's %s variable is of an unsupported type ( %d )",
532                  module.toStdString().c_str(),
533                  option.toStdString().c_str(),
534                  i_type );
535
536     vlc_object_release( p_obj );
537 }
538
539 #if 0
540 void ExtVideo::gotoConf( QObject* src )
541 {
542 #define SHOWCONF( module ) \
543     if( src->objectName().contains( module ) ) \
544     { \
545         PrefsDialog::getInstance( p_intf )->showModulePrefs( module ); \
546         return; \
547     }
548     SHOWCONF( "clone" );
549     SHOWCONF( "magnify" );
550     SHOWCONF( "wave" );
551     SHOWCONF( "ripple" );
552     SHOWCONF( "invert" );
553     SHOWCONF( "puzzle" );
554     SHOWCONF( "wall" );
555     SHOWCONF( "gradient" );
556     SHOWCONF( "colorthres" )
557 }
558 #endif
559
560 /**********************************************************************
561  * v4l2 controls
562  **********************************************************************/
563
564 ExtV4l2::ExtV4l2( intf_thread_t *_p_intf, QWidget *_parent )
565     : QWidget( _parent ), p_intf( _p_intf )
566 {
567     ui.setupUi( this );
568
569     BUTTONACT( ui.refresh, Refresh() );
570
571     layout = new QVBoxLayout;
572     ui.vboxLayout->addLayout( layout );
573
574     help = new QLabel( qtr( "No v4l2 instance found. Press the refresh button to try again." ) );
575     layout->addWidget( help );
576 }
577
578 ExtV4l2::~ExtV4l2()
579 {
580     delete help;
581     delete layout;
582 }
583
584 void ExtV4l2::Refresh( void )
585 {
586     vlc_object_t *p_obj = (vlc_object_t*)vlc_object_find_name( p_intf, "v4l2", FIND_ANYWHERE );
587     help->hide();
588     if( p_obj )
589     {
590         msg_Dbg( p_intf, "Found v4l2 instance" );
591         vlc_value_t val, text, name;
592         int i_ret = var_Change( p_obj, "controls", VLC_VAR_GETCHOICES,
593                                 &val, &text );
594         if( i_ret < 0 )
595         {
596             msg_Err( p_intf, "Oops" );
597             vlc_object_release( p_obj );
598             return;
599         }
600         for( int i = 0; i < val.p_list->i_count; i++ )
601         {
602             const char *psz_var = text.p_list->p_values[i].psz_string;
603             var_Change( p_obj, psz_var, VLC_VAR_GETTEXT, &name, NULL );
604             const char *psz_label = name.psz_string;
605             msg_Dbg( p_intf, "v4l2 control \"%x\": %s (%s)",
606                      val.p_list->p_values[i].i_int, psz_var, name.psz_string );
607
608             int i_type = var_Type( p_obj, psz_var );
609             switch( i_type & VLC_VAR_TYPE )
610             {
611                 case VLC_VAR_INTEGER:
612                 {
613                     QLabel *label = new QLabel( psz_label );
614                     QHBoxLayout *hlayout = new QHBoxLayout;
615                     hlayout->addWidget( label );
616                     int i_val = var_GetInteger( p_obj, psz_var );
617                     if( i_type & VLC_VAR_HASCHOICE )
618                     {
619                         QComboBox *combobox = new QComboBox;
620                         combobox->setObjectName( psz_var );
621
622                         vlc_value_t val2, text2;
623                         var_Change( p_obj, psz_var, VLC_VAR_GETCHOICES,
624                                     &val2, &text2 );
625                         for( int j = 0; j < val2.p_list->i_count; j++ )
626                         {
627                             combobox->addItem(
628                                        text2.p_list->p_values[j].psz_string,
629                                        val2.p_list->p_values[j].i_int );
630                             if( i_val == val2.p_list->p_values[j].i_int )
631                                 combobox->setCurrentIndex( j );
632                         }
633                         var_Change( p_obj, psz_var, VLC_VAR_FREELIST,
634                                     &val2, &text2 );
635
636                         CONNECT( combobox, currentIndexChanged( int ), this,
637                                  ValueChange( int ) );
638                         hlayout->addWidget( combobox );
639                     }
640                     else
641                     {
642                         QSlider *slider = new QSlider;
643                         slider->setObjectName( psz_var );
644                         slider->setOrientation( Qt::Horizontal );
645                         vlc_value_t val2;
646                         var_Change( p_obj, psz_var, VLC_VAR_GETMIN,
647                                     &val2, NULL );
648                         slider->setMinimum( val2.i_int );
649                         var_Change( p_obj, psz_var, VLC_VAR_GETMAX,
650                                     &val2, NULL );
651                         slider->setMaximum( val2.i_int );
652                         var_Change( p_obj, psz_var, VLC_VAR_GETSTEP,
653                                     &val2, NULL );
654                         slider->setSingleStep( val2.i_int );
655                         slider->setValue( i_val );
656
657                         CONNECT( slider, valueChanged( int ), this,
658                                  ValueChange( int ) );
659                         hlayout->addWidget( slider );
660                     }
661                     layout->addLayout( hlayout );
662                     break;
663                 }
664                 case VLC_VAR_BOOL:
665                 {
666                     QRadioButton *button = new QRadioButton( psz_label );
667                     button->setObjectName( psz_var );
668                     button->setChecked( var_GetBool( p_obj, psz_var ) );
669
670                     CONNECT( button, clicked( bool ), this,
671                              ValueChange( bool ) );
672                     layout->addWidget( button );
673                     break;
674                 }
675                 case VLC_VAR_VOID:
676                 {
677                     QPushButton *button = new QPushButton( psz_label );
678                     button->setObjectName( psz_var );
679
680                     CONNECT( button, clicked( bool ), this,
681                              ValueChange( bool ) );
682                     layout->addWidget( button );
683                     break;
684                 }
685                 default:
686                     msg_Warn( p_intf, "Unhandled var type for %s", psz_var );
687                     break;
688             }
689             free( name.psz_string );
690         }
691         var_Change( p_obj, "controls", VLC_VAR_FREELIST, &val, &text );
692         vlc_object_release( p_obj );
693     }
694     else
695     {
696         msg_Dbg( p_intf, "Couldn't find v4l2 instance" );
697         help->show();
698     }
699
700 }
701
702 void ExtV4l2::ValueChange( bool value )
703 {
704     ValueChange( (int)value );
705 }
706
707 void ExtV4l2::ValueChange( int value )
708 {
709     QObject *s = sender();
710     vlc_object_t *p_obj = (vlc_object_t*)vlc_object_find_name( p_intf, "v4l2", FIND_ANYWHERE );
711     if( p_obj )
712     {
713         char *psz_var = strdup( s->objectName().toStdString().c_str() );
714         int i_type = var_Type( p_obj, psz_var );
715         switch( i_type & VLC_VAR_TYPE )
716         {
717             case VLC_VAR_INTEGER:
718                 if( i_type & VLC_VAR_HASCHOICE )
719                 {
720                     QComboBox *combobox = qobject_cast<QComboBox*>( s );
721                     value = combobox->itemData( value ).toInt();
722                 }
723                 var_SetInteger( p_obj, psz_var, value );
724                 break;
725             case VLC_VAR_BOOL:
726                 var_SetBool( p_obj, psz_var, value );
727                 break;
728             case VLC_VAR_VOID:
729                 var_SetVoid( p_obj, psz_var );
730                 break;
731         }
732         free( psz_var );
733         vlc_object_release( p_obj );
734     }
735     else
736     {
737         msg_Warn( p_intf, "Oops, v4l2 object isn't available anymore" );
738         Refresh();
739     }
740 }
741
742 /**********************************************************************
743  * Equalizer
744  **********************************************************************/
745
746 static const QString band_frequencies[] =
747 {
748     "  60 Hz  ", " 170 Hz ", " 310 Hz ", " 600 Hz ", "  1 kHz ",
749     "  3 kHz  ", "  6 kHz ", " 12 kHz ", " 14 kHz ", " 16 kHz "
750 };
751
752 Equalizer::Equalizer( intf_thread_t *_p_intf, QWidget *_parent ) :
753                             QWidget( _parent ) , p_intf( _p_intf )
754 {
755     QFont smallFont = QApplication::font( static_cast<QWidget*>( 0 ) );
756     smallFont.setPointSize( smallFont.pointSize() - 3 );
757
758     ui.setupUi( this );
759     presetsComboBox = ui.presetsCombo;
760
761     ui.preampLabel->setFont( smallFont );
762     ui.preampSlider->setMaximum( 400 );
763     for( int i = 0 ; i < NB_PRESETS ; i ++ )
764     {
765         ui.presetsCombo->addItem( qtr( preset_list_text[i] ),
766                                   QVariant( i ) );
767     }
768     CONNECT( ui.presetsCombo, activated( int ), this, setPreset( int ) );
769
770     BUTTONACT( ui.enableCheck, enable() );
771     BUTTONACT( ui.eq2PassCheck, set2Pass() );
772
773     CONNECT( ui.preampSlider, valueChanged( int ), this, setPreamp() );
774
775     QGridLayout *grid = new QGridLayout( ui.frame );
776     grid->setMargin( 0 );
777     for( int i = 0 ; i < BANDS ; i++ )
778     {
779         bands[i] = new QSlider( Qt::Vertical );
780         bands[i]->setMaximum( 400 );
781         bands[i]->setValue( 200 );
782         CONNECT( bands[i], valueChanged( int ), this, setBand() );
783         band_texts[i] = new QLabel( band_frequencies[i] + "\n0.0dB" );
784         band_texts[i]->setFont( smallFont );
785         grid->addWidget( bands[i], 0, i );
786         grid->addWidget( band_texts[i], 1, i );
787     }
788
789     /* Write down initial values */
790     aout_instance_t *p_aout = ( aout_instance_t * )vlc_object_find( p_intf,
791                                     VLC_OBJECT_AOUT, FIND_ANYWHERE );
792     char *psz_af;
793     char *psz_bands;
794     float f_preamp;
795     if( p_aout )
796     {
797         psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
798         if( var_GetBool( p_aout, "equalizer-2pass" ) )
799             ui.eq2PassCheck->setChecked( true );
800         psz_bands = var_GetNonEmptyString( p_aout, "equalizer-bands" );
801         f_preamp = var_GetFloat( p_aout, "equalizer-preamp" );
802         vlc_object_release( p_aout );
803     }
804     else
805     {
806         psz_af = config_GetPsz( p_intf, "audio-filter" );
807         if( config_GetInt( p_intf, "equalizer-2pass" ) )
808             ui.eq2PassCheck->setChecked( true );
809         psz_bands = config_GetPsz( p_intf, "equalizer-bands" );
810         f_preamp = config_GetFloat( p_intf, "equalizer-preamp" );
811     }
812     if( psz_af && strstr( psz_af, "equalizer" ) != NULL )
813         ui.enableCheck->setChecked( true );
814     free( psz_af );
815     enable( ui.enableCheck->isChecked() );
816
817     setValues( psz_bands, f_preamp );
818 }
819
820 Equalizer::~Equalizer()
821 {
822 }
823
824 void Equalizer::enable()
825 {
826     bool en = ui.enableCheck->isChecked();
827     aout_EnableFilter( VLC_OBJECT( p_intf ), "equalizer",
828                        en ? VLC_TRUE : VLC_FALSE );
829 //    aout_EnableFilter( VLC_OBJECT( p_intf ), "upmixer",
830 //                       en ? VLC_TRUE : VLC_FALSE );
831 //     aout_EnableFilter( VLC_OBJECT( p_intf ), "vsurround",
832 //                       en ? VLC_TRUE : VLC_FALSE );
833      enable( en );
834 }
835
836 void Equalizer::enable( bool en )
837 {
838     ui.eq2PassCheck->setEnabled( en );
839     ui.preampLabel->setEnabled( en );
840     ui.preampSlider->setEnabled( en  );
841     for( int i = 0 ; i< BANDS; i++ )
842     {
843         bands[i]->setEnabled( en ); band_texts[i]->setEnabled( en );
844     }
845 }
846
847 void Equalizer::set2Pass()
848 {
849     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
850                                  VLC_OBJECT_AOUT, FIND_ANYWHERE );
851     vlc_bool_t b_2p = ui.eq2PassCheck->isChecked();
852
853     if( p_aout == NULL )
854         config_PutInt( p_intf, "equalizer-2pass", b_2p );
855     else
856     {
857         var_SetBool( p_aout, "equalizer-2pass", b_2p );
858         config_PutInt( p_intf, "equalizer-2pass", b_2p );
859         for( int i = 0; i < p_aout->i_nb_inputs; i++ )
860         {
861             p_aout->pp_inputs[i]->b_restart = VLC_TRUE;
862         }
863         vlc_object_release( p_aout );
864     }
865 }
866
867 void Equalizer::setPreamp()
868 {
869     float f= ( float )(  ui.preampSlider->value() ) /10 - 20;
870     char psz_val[5];
871     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
872                                        VLC_OBJECT_AOUT, FIND_ANYWHERE );
873
874     sprintf( psz_val, "%.1f", f );
875     ui.preampLabel->setText( qtr( "Preamp\n" ) + psz_val + qtr( "dB" ) );
876     if( p_aout )
877     {
878         delCallbacks( p_aout );
879         var_SetFloat( p_aout, "equalizer-preamp", f );
880         addCallbacks( p_aout );
881         vlc_object_release( p_aout );
882     }
883     config_PutFloat( p_intf, "equalizer-preamp", f );
884 }
885
886 void Equalizer::setBand()
887 {
888     char psz_values[102]; memset( psz_values, 0, 102 );
889
890     /**\todo smoothing */
891
892     for( int i = 0 ; i< BANDS ; i++ )
893     {
894         char psz_val[5];
895         float f_val = ( float )(  bands[i]->value() ) / 10 - 20 ;
896         sprintf( psz_values, "%s %f", psz_values, f_val );
897         sprintf( psz_val, "% 5.1f", f_val );
898         band_texts[i]->setText( band_frequencies[i] + "\n" + psz_val + "dB" );
899     }
900     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
901                                           VLC_OBJECT_AOUT, FIND_ANYWHERE );
902     if( p_aout )
903     {
904         delCallbacks( p_aout );
905         var_SetString( p_aout, "equalizer-bands", psz_values );
906         addCallbacks( p_aout );
907         vlc_object_release( p_aout );
908     }
909 }
910 void Equalizer::setValues( char *psz_bands, float f_preamp )
911 {
912     char *p = psz_bands;
913     if ( p )
914     {
915         for( int i = 0; i < 10; i++ )
916         {
917             char psz_val[5];
918             float f = strtof( p, &p );
919             int  i_val= ( int )( ( f + 20 ) * 10 );
920             bands[i]->setValue(  i_val );
921             sprintf( psz_val, "% 5.1f", f );
922             band_texts[i]->setText( band_frequencies[i] + "\n" + psz_val +
923                                     "dB" );
924             if( p == NULL || *p == '\0' ) break;
925             p++;
926             if( *p == '\0' )  break;
927         }
928     }
929     char psz_val[5];
930     int i_val = ( int )( ( f_preamp + 20 ) * 10 );
931     sprintf( psz_val, "%.1f", f_preamp );
932     ui.preampSlider->setValue( i_val );
933     ui.preampLabel->setText( qtr( "Preamp\n" ) + psz_val + qtr( "dB" ) );
934 }
935
936 void Equalizer::setPreset( int preset )
937 {
938     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
939                                                 VLC_OBJECT_AOUT, FIND_ANYWHERE );
940
941     char psz_values[102]; memset( psz_values, 0, 102 );
942     for( int i = 0 ; i< 10 ;i++ )
943         sprintf( psz_values, "%s %.1f", psz_values,
944                                         eqz_preset_10b[preset]->f_amp[i] );
945
946     if( p_aout )
947     {
948         delCallbacks( p_aout );
949         var_SetString( p_aout, "equalizer-bands", psz_values );
950         var_SetFloat( p_aout, "equalizer-preamp",
951                       eqz_preset_10b[preset]->f_preamp );
952         addCallbacks( p_aout );
953         vlc_object_release( p_aout );
954     }
955     config_PutPsz( p_intf, "equalizer-bands", psz_values );
956     config_PutFloat( p_intf, "equalizer-preamp",
957                     eqz_preset_10b[preset]->f_preamp );
958
959     setValues( psz_values, eqz_preset_10b[preset]->f_preamp );
960 }
961
962 static int PresetCallback( vlc_object_t *p_this, char const *psz_cmd,
963                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
964 {
965     char *psz_preset = newval.psz_string;
966     Equalizer *eq = ( Equalizer * )p_data;
967     eq->presetsComboBox->setCurrentIndex( eq->presetsComboBox->findText( qfu( psz_preset ) ) );
968     return VLC_SUCCESS;
969 }
970
971 void Equalizer::delCallbacks( aout_instance_t *p_aout )
972 {
973     //var_DelCallback( p_aout, "equalizer-bands", EqzCallback, this );
974     //var_DelCallback( p_aout, "equalizer-preamp", EqzCallback, this );
975     var_DelCallback( p_aout, "equalizer-preset", PresetCallback, this );
976 }
977
978 void Equalizer::addCallbacks( aout_instance_t *p_aout )
979 {
980     //var_AddCallback( p_aout, "equalizer-bands", EqzCallback, this );
981     //var_AddCallback( p_aout, "equalizer-preamp", EqzCallback, this );
982     var_AddCallback( p_aout, "equalizer-preset", PresetCallback, this );
983 }
984
985 /**********************************************************************
986  * Audio filters
987  **********************************************************************/
988
989 /**********************************************************************
990  * Spatializer
991  **********************************************************************/
992 static const char *psz_control_names[] =
993 {
994     "Roomsize", "Width" , "Wet", "Dry", "Damp"
995 };
996
997 Spatializer::Spatializer( intf_thread_t *_p_intf, QWidget *_parent ) :
998     QWidget( _parent ) , p_intf( _p_intf )
999 {
1000     QFont smallFont = QApplication::font( static_cast<QWidget*>( 0 ) );
1001     smallFont.setPointSize( smallFont.pointSize() - 3 );
1002
1003     QGridLayout *layout = new QGridLayout( this );
1004     layout->setMargin( 0 );
1005
1006     enableCheck = new QCheckBox( qfu( "Enable spatializer" ) );
1007     layout->addWidget( enableCheck, 0, 0, 1, NUM_SP_CTRL );
1008
1009     for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1010     {
1011         spatCtrl[i] = new QSlider( Qt::Vertical );
1012         if( i < 2 )
1013         {
1014             spatCtrl[i]->setMaximum( 10 );
1015             spatCtrl[i]->setValue( 2 );
1016         }
1017         else
1018         {
1019             spatCtrl[i]->setMaximum( 10 );
1020             spatCtrl[i]->setValue( 0 );
1021             spatCtrl[i]->setMinimum( -10 );
1022         }
1023         oldControlVars[i] = spatCtrl[i]->value();
1024         CONNECT( spatCtrl[i], valueChanged( int ), this, setInitValues() );
1025         ctrl_texts[i] = new QLabel( qfu( psz_control_names[i] ) + "\n" );
1026         ctrl_texts[i]->setFont( smallFont );
1027         ctrl_readout[i] = new QLabel( "" );
1028         ctrl_readout[i]->setFont( smallFont );
1029         layout->addWidget( spatCtrl[i], 1, i );
1030         layout->addWidget( ctrl_readout[i], 2, i );
1031         layout->addWidget( ctrl_texts[i], 3, i );
1032     }
1033
1034     BUTTONACT( enableCheck, enable() );
1035
1036     /* Write down initial values */
1037     aout_instance_t *p_aout = ( aout_instance_t * )
1038         vlc_object_find( p_intf, VLC_OBJECT_AOUT, FIND_ANYWHERE );
1039     char *psz_af;
1040
1041     if( p_aout )
1042     {
1043         psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
1044         for( int i = 0; i < NUM_SP_CTRL ; i++ )
1045         {
1046             controlVars[i] = var_GetFloat( p_aout, psz_control_names[i] );
1047         }
1048         vlc_object_release( p_aout );
1049     }
1050     else
1051     {
1052         psz_af = config_GetPsz( p_aout, "audio-filter" );
1053         for( int i = 0; i < NUM_SP_CTRL ; i++ )
1054         {
1055             controlVars[i] = config_GetFloat( p_intf, psz_control_names[i] );
1056         }
1057     }
1058     if( psz_af && strstr( psz_af, "spatializer" ) != NULL )
1059         enableCheck->setChecked( true );
1060     free( psz_af );
1061     enable( enableCheck->isChecked() );
1062     setValues( controlVars );
1063 }
1064
1065 Spatializer::~Spatializer()
1066 {
1067 }
1068
1069 void Spatializer::enable()
1070 {
1071     bool en = enableCheck->isChecked();
1072     aout_EnableFilter( VLC_OBJECT( p_intf ), "spatializer",
1073             en ? VLC_TRUE : VLC_FALSE );
1074     enable( en );
1075 }
1076
1077 void Spatializer::enable( bool en )
1078 {
1079     for( int i = 0 ; i< NUM_SP_CTRL; i++ )
1080     {
1081         spatCtrl[i]->setEnabled( en );
1082         ctrl_texts[i]->setEnabled( en );
1083         ctrl_readout[i]->setEnabled( en );
1084     }
1085 }
1086 void Spatializer::setInitValues()
1087 {
1088     setValues( controlVars );
1089 }
1090
1091 void Spatializer::setValues( float *controlVars )
1092 {
1093     char psz_val[5];
1094     char var_name[5];
1095     aout_instance_t *p_aout= ( aout_instance_t * )
1096         vlc_object_find( p_intf, VLC_OBJECT_AOUT, FIND_ANYWHERE );
1097
1098     for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1099     {
1100         float f= ( float )(  spatCtrl[i]->value() );
1101         sprintf( psz_val, "%.1f", f );
1102         ctrl_readout[i]->setText( psz_val );
1103     }
1104     if( p_aout )
1105     {
1106         for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1107         {
1108             if( oldControlVars[i] != spatCtrl[i]->value() )
1109             {
1110                 var_SetFloat( p_aout, psz_control_names[i],
1111                         ( float )spatCtrl[i]->value() );
1112                 config_PutFloat( p_intf, psz_control_names[i],
1113                         ( float ) spatCtrl[i]->value() );
1114                 oldControlVars[i] = ( float ) spatCtrl[i]->value();
1115             }
1116         }
1117         vlc_object_release( p_aout );
1118     }
1119
1120 }
1121 void Spatializer::delCallbacks( aout_instance_t *p_aout )
1122 {
1123     //    var_DelCallback( p_aout, "Spatializer-bands", EqzCallback, this );
1124     //    var_DelCallback( p_aout, "Spatializer-preamp", EqzCallback, this );
1125 }
1126
1127 void Spatializer::addCallbacks( aout_instance_t *p_aout )
1128 {
1129     //    var_AddCallback( p_aout, "Spatializer-bands", EqzCallback, this );
1130     //    var_AddCallback( p_aout, "Spatializer-preamp", EqzCallback, this );
1131 }
1132
1133 /**********************************************************************
1134  * Video filters / Adjust
1135  **********************************************************************/
1136
1137 /**********************************************************************
1138  * Extended playbak controls
1139  **********************************************************************/