]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.cpp
Fixes to the v4l2 extended panel (works fine for multiple refreshes).
[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     box = NULL;
572 }
573
574 ExtV4l2::~ExtV4l2()
575 {
576     if( box )
577         delete box;
578 }
579
580 void ExtV4l2::Refresh( void )
581 {
582     vlc_object_t *p_obj = (vlc_object_t*)vlc_object_find_name( p_intf, "v4l2", FIND_ANYWHERE );
583     ui.help->hide();
584     if( box )
585     {
586         ui.vboxLayout->removeWidget( box );
587         delete box;
588         box = NULL;
589     }
590     if( p_obj )
591     {
592         msg_Dbg( p_intf, "Found v4l2 instance" );
593         vlc_value_t val, text, name;
594         int i_ret = var_Change( p_obj, "controls", VLC_VAR_GETCHOICES,
595                                 &val, &text );
596         if( i_ret < 0 )
597         {
598             msg_Err( p_intf, "Oops, v4l2 object doesn't have a 'controls' variable." );
599             ui.help->show();
600             vlc_object_release( p_obj );
601             return;
602         }
603
604         box = new QGroupBox( this );
605         ui.vboxLayout->addWidget( box );
606         QVBoxLayout *layout = new QVBoxLayout( box );
607         box->setLayout( layout );
608
609         for( int i = 0; i < val.p_list->i_count; i++ )
610         {
611             const char *psz_var = text.p_list->p_values[i].psz_string;
612             var_Change( p_obj, psz_var, VLC_VAR_GETTEXT, &name, NULL );
613             const char *psz_label = name.psz_string;
614             msg_Dbg( p_intf, "v4l2 control \"%x\": %s (%s)",
615                      val.p_list->p_values[i].i_int, psz_var, name.psz_string );
616
617             int i_type = var_Type( p_obj, psz_var );
618             switch( i_type & VLC_VAR_TYPE )
619             {
620                 case VLC_VAR_INTEGER:
621                 {
622                     QLabel *label = new QLabel( psz_label, box );
623                     QHBoxLayout *hlayout = new QHBoxLayout( box );
624                     hlayout->addWidget( label );
625                     int i_val = var_GetInteger( p_obj, psz_var );
626                     if( i_type & VLC_VAR_HASCHOICE )
627                     {
628                         QComboBox *combobox = new QComboBox( box );
629                         combobox->setObjectName( psz_var );
630
631                         vlc_value_t val2, text2;
632                         var_Change( p_obj, psz_var, VLC_VAR_GETCHOICES,
633                                     &val2, &text2 );
634                         for( int j = 0; j < val2.p_list->i_count; j++ )
635                         {
636                             combobox->addItem(
637                                        text2.p_list->p_values[j].psz_string,
638                                        val2.p_list->p_values[j].i_int );
639                             if( i_val == val2.p_list->p_values[j].i_int )
640                                 combobox->setCurrentIndex( j );
641                         }
642                         var_Change( p_obj, psz_var, VLC_VAR_FREELIST,
643                                     &val2, &text2 );
644
645                         CONNECT( combobox, currentIndexChanged( int ), this,
646                                  ValueChange( int ) );
647                         hlayout->addWidget( combobox );
648                     }
649                     else
650                     {
651                         QSlider *slider = new QSlider( box );
652                         slider->setObjectName( psz_var );
653                         slider->setOrientation( Qt::Horizontal );
654                         vlc_value_t val2;
655                         var_Change( p_obj, psz_var, VLC_VAR_GETMIN,
656                                     &val2, NULL );
657                         slider->setMinimum( val2.i_int );
658                         var_Change( p_obj, psz_var, VLC_VAR_GETMAX,
659                                     &val2, NULL );
660                         slider->setMaximum( val2.i_int );
661                         var_Change( p_obj, psz_var, VLC_VAR_GETSTEP,
662                                     &val2, NULL );
663                         slider->setSingleStep( val2.i_int );
664                         slider->setValue( i_val );
665
666                         CONNECT( slider, valueChanged( int ), this,
667                                  ValueChange( int ) );
668                         hlayout->addWidget( slider );
669                     }
670                     layout->addLayout( hlayout );
671                     break;
672                 }
673                 case VLC_VAR_BOOL:
674                 {
675                     QCheckBox *button = new QCheckBox( psz_label, box );
676                     button->setObjectName( psz_var );
677                     button->setChecked( var_GetBool( p_obj, psz_var ) );
678
679                     CONNECT( button, clicked( bool ), this,
680                              ValueChange( bool ) );
681                     layout->addWidget( button );
682                     break;
683                 }
684                 case VLC_VAR_VOID:
685                 {
686                     QPushButton *button = new QPushButton( psz_label, box );
687                     button->setObjectName( psz_var );
688
689                     CONNECT( button, clicked( bool ), this,
690                              ValueChange( bool ) );
691                     layout->addWidget( button );
692                     break;
693                 }
694                 default:
695                     msg_Warn( p_intf, "Unhandled var type for %s", psz_var );
696                     break;
697             }
698             free( name.psz_string );
699         }
700         var_Change( p_obj, "controls", VLC_VAR_FREELIST, &val, &text );
701         vlc_object_release( p_obj );
702     }
703     else
704     {
705         msg_Dbg( p_intf, "Couldn't find v4l2 instance" );
706         ui.help->show();
707     }
708
709 }
710
711 void ExtV4l2::ValueChange( bool value )
712 {
713     ValueChange( (int)value );
714 }
715
716 void ExtV4l2::ValueChange( int value )
717 {
718     QObject *s = sender();
719     vlc_object_t *p_obj = (vlc_object_t*)vlc_object_find_name( p_intf, "v4l2", FIND_ANYWHERE );
720     if( p_obj )
721     {
722         char *psz_var = strdup( s->objectName().toStdString().c_str() );
723         int i_type = var_Type( p_obj, psz_var );
724         switch( i_type & VLC_VAR_TYPE )
725         {
726             case VLC_VAR_INTEGER:
727                 if( i_type & VLC_VAR_HASCHOICE )
728                 {
729                     QComboBox *combobox = qobject_cast<QComboBox*>( s );
730                     value = combobox->itemData( value ).toInt();
731                 }
732                 var_SetInteger( p_obj, psz_var, value );
733                 break;
734             case VLC_VAR_BOOL:
735                 var_SetBool( p_obj, psz_var, value );
736                 break;
737             case VLC_VAR_VOID:
738                 var_SetVoid( p_obj, psz_var );
739                 break;
740         }
741         free( psz_var );
742         vlc_object_release( p_obj );
743     }
744     else
745     {
746         msg_Warn( p_intf, "Oops, v4l2 object isn't available anymore" );
747         Refresh();
748     }
749 }
750
751 /**********************************************************************
752  * Equalizer
753  **********************************************************************/
754
755 static const QString band_frequencies[] =
756 {
757     "  60 Hz  ", " 170 Hz ", " 310 Hz ", " 600 Hz ", "  1 kHz ",
758     "  3 kHz  ", "  6 kHz ", " 12 kHz ", " 14 kHz ", " 16 kHz "
759 };
760
761 Equalizer::Equalizer( intf_thread_t *_p_intf, QWidget *_parent ) :
762                             QWidget( _parent ) , p_intf( _p_intf )
763 {
764     QFont smallFont = QApplication::font( static_cast<QWidget*>( 0 ) );
765     smallFont.setPointSize( smallFont.pointSize() - 3 );
766
767     ui.setupUi( this );
768     presetsComboBox = ui.presetsCombo;
769
770     ui.preampLabel->setFont( smallFont );
771     ui.preampSlider->setMaximum( 400 );
772     for( int i = 0 ; i < NB_PRESETS ; i ++ )
773     {
774         ui.presetsCombo->addItem( qtr( preset_list_text[i] ),
775                                   QVariant( i ) );
776     }
777     CONNECT( ui.presetsCombo, activated( int ), this, setPreset( int ) );
778
779     BUTTONACT( ui.enableCheck, enable() );
780     BUTTONACT( ui.eq2PassCheck, set2Pass() );
781
782     CONNECT( ui.preampSlider, valueChanged( int ), this, setPreamp() );
783
784     QGridLayout *grid = new QGridLayout( ui.frame );
785     grid->setMargin( 0 );
786     for( int i = 0 ; i < BANDS ; i++ )
787     {
788         bands[i] = new QSlider( Qt::Vertical );
789         bands[i]->setMaximum( 400 );
790         bands[i]->setValue( 200 );
791         CONNECT( bands[i], valueChanged( int ), this, setBand() );
792         band_texts[i] = new QLabel( band_frequencies[i] + "\n0.0dB" );
793         band_texts[i]->setFont( smallFont );
794         grid->addWidget( bands[i], 0, i );
795         grid->addWidget( band_texts[i], 1, i );
796     }
797
798     /* Write down initial values */
799     aout_instance_t *p_aout = ( aout_instance_t * )vlc_object_find( p_intf,
800                                     VLC_OBJECT_AOUT, FIND_ANYWHERE );
801     char *psz_af;
802     char *psz_bands;
803     float f_preamp;
804     if( p_aout )
805     {
806         psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
807         if( var_GetBool( p_aout, "equalizer-2pass" ) )
808             ui.eq2PassCheck->setChecked( true );
809         psz_bands = var_GetNonEmptyString( p_aout, "equalizer-bands" );
810         f_preamp = var_GetFloat( p_aout, "equalizer-preamp" );
811         vlc_object_release( p_aout );
812     }
813     else
814     {
815         psz_af = config_GetPsz( p_intf, "audio-filter" );
816         if( config_GetInt( p_intf, "equalizer-2pass" ) )
817             ui.eq2PassCheck->setChecked( true );
818         psz_bands = config_GetPsz( p_intf, "equalizer-bands" );
819         f_preamp = config_GetFloat( p_intf, "equalizer-preamp" );
820     }
821     if( psz_af && strstr( psz_af, "equalizer" ) != NULL )
822         ui.enableCheck->setChecked( true );
823     free( psz_af );
824     enable( ui.enableCheck->isChecked() );
825
826     setValues( psz_bands, f_preamp );
827 }
828
829 Equalizer::~Equalizer()
830 {
831 }
832
833 void Equalizer::enable()
834 {
835     bool en = ui.enableCheck->isChecked();
836     aout_EnableFilter( VLC_OBJECT( p_intf ), "equalizer",
837                        en ? VLC_TRUE : VLC_FALSE );
838 //    aout_EnableFilter( VLC_OBJECT( p_intf ), "upmixer",
839 //                       en ? VLC_TRUE : VLC_FALSE );
840 //     aout_EnableFilter( VLC_OBJECT( p_intf ), "vsurround",
841 //                       en ? VLC_TRUE : VLC_FALSE );
842      enable( en );
843 }
844
845 void Equalizer::enable( bool en )
846 {
847     ui.eq2PassCheck->setEnabled( en );
848     ui.preampLabel->setEnabled( en );
849     ui.preampSlider->setEnabled( en  );
850     for( int i = 0 ; i< BANDS; i++ )
851     {
852         bands[i]->setEnabled( en ); band_texts[i]->setEnabled( en );
853     }
854 }
855
856 void Equalizer::set2Pass()
857 {
858     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
859                                  VLC_OBJECT_AOUT, FIND_ANYWHERE );
860     vlc_bool_t b_2p = ui.eq2PassCheck->isChecked();
861
862     if( p_aout == NULL )
863         config_PutInt( p_intf, "equalizer-2pass", b_2p );
864     else
865     {
866         var_SetBool( p_aout, "equalizer-2pass", b_2p );
867         config_PutInt( p_intf, "equalizer-2pass", b_2p );
868         for( int i = 0; i < p_aout->i_nb_inputs; i++ )
869         {
870             p_aout->pp_inputs[i]->b_restart = VLC_TRUE;
871         }
872         vlc_object_release( p_aout );
873     }
874 }
875
876 void Equalizer::setPreamp()
877 {
878     float f= ( float )(  ui.preampSlider->value() ) /10 - 20;
879     char psz_val[5];
880     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
881                                        VLC_OBJECT_AOUT, FIND_ANYWHERE );
882
883     sprintf( psz_val, "%.1f", f );
884     ui.preampLabel->setText( qtr( "Preamp\n" ) + psz_val + qtr( "dB" ) );
885     if( p_aout )
886     {
887         delCallbacks( p_aout );
888         var_SetFloat( p_aout, "equalizer-preamp", f );
889         addCallbacks( p_aout );
890         vlc_object_release( p_aout );
891     }
892     config_PutFloat( p_intf, "equalizer-preamp", f );
893 }
894
895 void Equalizer::setBand()
896 {
897     char psz_values[102]; memset( psz_values, 0, 102 );
898
899     /**\todo smoothing */
900
901     for( int i = 0 ; i< BANDS ; i++ )
902     {
903         char psz_val[5];
904         float f_val = ( float )(  bands[i]->value() ) / 10 - 20 ;
905         sprintf( psz_values, "%s %f", psz_values, f_val );
906         sprintf( psz_val, "% 5.1f", f_val );
907         band_texts[i]->setText( band_frequencies[i] + "\n" + psz_val + "dB" );
908     }
909     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
910                                           VLC_OBJECT_AOUT, FIND_ANYWHERE );
911     if( p_aout )
912     {
913         delCallbacks( p_aout );
914         var_SetString( p_aout, "equalizer-bands", psz_values );
915         addCallbacks( p_aout );
916         vlc_object_release( p_aout );
917     }
918 }
919 void Equalizer::setValues( char *psz_bands, float f_preamp )
920 {
921     char *p = psz_bands;
922     if ( p )
923     {
924         for( int i = 0; i < 10; i++ )
925         {
926             char psz_val[5];
927             float f = strtof( p, &p );
928             int  i_val= ( int )( ( f + 20 ) * 10 );
929             bands[i]->setValue(  i_val );
930             sprintf( psz_val, "% 5.1f", f );
931             band_texts[i]->setText( band_frequencies[i] + "\n" + psz_val +
932                                     "dB" );
933             if( p == NULL || *p == '\0' ) break;
934             p++;
935             if( *p == '\0' )  break;
936         }
937     }
938     char psz_val[5];
939     int i_val = ( int )( ( f_preamp + 20 ) * 10 );
940     sprintf( psz_val, "%.1f", f_preamp );
941     ui.preampSlider->setValue( i_val );
942     ui.preampLabel->setText( qtr( "Preamp\n" ) + psz_val + qtr( "dB" ) );
943 }
944
945 void Equalizer::setPreset( int preset )
946 {
947     aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
948                                                 VLC_OBJECT_AOUT, FIND_ANYWHERE );
949
950     char psz_values[102]; memset( psz_values, 0, 102 );
951     for( int i = 0 ; i< 10 ;i++ )
952         sprintf( psz_values, "%s %.1f", psz_values,
953                                         eqz_preset_10b[preset]->f_amp[i] );
954
955     if( p_aout )
956     {
957         delCallbacks( p_aout );
958         var_SetString( p_aout, "equalizer-bands", psz_values );
959         var_SetFloat( p_aout, "equalizer-preamp",
960                       eqz_preset_10b[preset]->f_preamp );
961         addCallbacks( p_aout );
962         vlc_object_release( p_aout );
963     }
964     config_PutPsz( p_intf, "equalizer-bands", psz_values );
965     config_PutFloat( p_intf, "equalizer-preamp",
966                     eqz_preset_10b[preset]->f_preamp );
967
968     setValues( psz_values, eqz_preset_10b[preset]->f_preamp );
969 }
970
971 static int PresetCallback( vlc_object_t *p_this, char const *psz_cmd,
972                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
973 {
974     char *psz_preset = newval.psz_string;
975     Equalizer *eq = ( Equalizer * )p_data;
976     eq->presetsComboBox->setCurrentIndex( eq->presetsComboBox->findText( qfu( psz_preset ) ) );
977     return VLC_SUCCESS;
978 }
979
980 void Equalizer::delCallbacks( aout_instance_t *p_aout )
981 {
982     //var_DelCallback( p_aout, "equalizer-bands", EqzCallback, this );
983     //var_DelCallback( p_aout, "equalizer-preamp", EqzCallback, this );
984     var_DelCallback( p_aout, "equalizer-preset", PresetCallback, this );
985 }
986
987 void Equalizer::addCallbacks( aout_instance_t *p_aout )
988 {
989     //var_AddCallback( p_aout, "equalizer-bands", EqzCallback, this );
990     //var_AddCallback( p_aout, "equalizer-preamp", EqzCallback, this );
991     var_AddCallback( p_aout, "equalizer-preset", PresetCallback, this );
992 }
993
994 /**********************************************************************
995  * Audio filters
996  **********************************************************************/
997
998 /**********************************************************************
999  * Spatializer
1000  **********************************************************************/
1001 static const char *psz_control_names[] =
1002 {
1003     "Roomsize", "Width" , "Wet", "Dry", "Damp"
1004 };
1005
1006 Spatializer::Spatializer( intf_thread_t *_p_intf, QWidget *_parent ) :
1007     QWidget( _parent ) , p_intf( _p_intf )
1008 {
1009     QFont smallFont = QApplication::font( static_cast<QWidget*>( 0 ) );
1010     smallFont.setPointSize( smallFont.pointSize() - 3 );
1011
1012     QGridLayout *layout = new QGridLayout( this );
1013     layout->setMargin( 0 );
1014
1015     enableCheck = new QCheckBox( qfu( "Enable spatializer" ) );
1016     layout->addWidget( enableCheck, 0, 0, 1, NUM_SP_CTRL );
1017
1018     for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1019     {
1020         spatCtrl[i] = new QSlider( Qt::Vertical );
1021         if( i < 2 )
1022         {
1023             spatCtrl[i]->setMaximum( 10 );
1024             spatCtrl[i]->setValue( 2 );
1025         }
1026         else
1027         {
1028             spatCtrl[i]->setMaximum( 10 );
1029             spatCtrl[i]->setValue( 0 );
1030             spatCtrl[i]->setMinimum( -10 );
1031         }
1032         oldControlVars[i] = spatCtrl[i]->value();
1033         CONNECT( spatCtrl[i], valueChanged( int ), this, setInitValues() );
1034         ctrl_texts[i] = new QLabel( qfu( psz_control_names[i] ) + "\n" );
1035         ctrl_texts[i]->setFont( smallFont );
1036         ctrl_readout[i] = new QLabel( "" );
1037         ctrl_readout[i]->setFont( smallFont );
1038         layout->addWidget( spatCtrl[i], 1, i );
1039         layout->addWidget( ctrl_readout[i], 2, i );
1040         layout->addWidget( ctrl_texts[i], 3, i );
1041     }
1042
1043     BUTTONACT( enableCheck, enable() );
1044
1045     /* Write down initial values */
1046     aout_instance_t *p_aout = ( aout_instance_t * )
1047         vlc_object_find( p_intf, VLC_OBJECT_AOUT, FIND_ANYWHERE );
1048     char *psz_af;
1049
1050     if( p_aout )
1051     {
1052         psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
1053         for( int i = 0; i < NUM_SP_CTRL ; i++ )
1054         {
1055             controlVars[i] = var_GetFloat( p_aout, psz_control_names[i] );
1056         }
1057         vlc_object_release( p_aout );
1058     }
1059     else
1060     {
1061         psz_af = config_GetPsz( p_aout, "audio-filter" );
1062         for( int i = 0; i < NUM_SP_CTRL ; i++ )
1063         {
1064             controlVars[i] = config_GetFloat( p_intf, psz_control_names[i] );
1065         }
1066     }
1067     if( psz_af && strstr( psz_af, "spatializer" ) != NULL )
1068         enableCheck->setChecked( true );
1069     free( psz_af );
1070     enable( enableCheck->isChecked() );
1071     setValues( controlVars );
1072 }
1073
1074 Spatializer::~Spatializer()
1075 {
1076 }
1077
1078 void Spatializer::enable()
1079 {
1080     bool en = enableCheck->isChecked();
1081     aout_EnableFilter( VLC_OBJECT( p_intf ), "spatializer",
1082             en ? VLC_TRUE : VLC_FALSE );
1083     enable( en );
1084 }
1085
1086 void Spatializer::enable( bool en )
1087 {
1088     for( int i = 0 ; i< NUM_SP_CTRL; i++ )
1089     {
1090         spatCtrl[i]->setEnabled( en );
1091         ctrl_texts[i]->setEnabled( en );
1092         ctrl_readout[i]->setEnabled( en );
1093     }
1094 }
1095 void Spatializer::setInitValues()
1096 {
1097     setValues( controlVars );
1098 }
1099
1100 void Spatializer::setValues( float *controlVars )
1101 {
1102     char psz_val[5];
1103     char var_name[5];
1104     aout_instance_t *p_aout= ( aout_instance_t * )
1105         vlc_object_find( p_intf, VLC_OBJECT_AOUT, FIND_ANYWHERE );
1106
1107     for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1108     {
1109         float f= ( float )(  spatCtrl[i]->value() );
1110         sprintf( psz_val, "%.1f", f );
1111         ctrl_readout[i]->setText( psz_val );
1112     }
1113     if( p_aout )
1114     {
1115         for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
1116         {
1117             if( oldControlVars[i] != spatCtrl[i]->value() )
1118             {
1119                 var_SetFloat( p_aout, psz_control_names[i],
1120                         ( float )spatCtrl[i]->value() );
1121                 config_PutFloat( p_intf, psz_control_names[i],
1122                         ( float ) spatCtrl[i]->value() );
1123                 oldControlVars[i] = ( float ) spatCtrl[i]->value();
1124             }
1125         }
1126         vlc_object_release( p_aout );
1127     }
1128
1129 }
1130 void Spatializer::delCallbacks( aout_instance_t *p_aout )
1131 {
1132     //    var_DelCallback( p_aout, "Spatializer-bands", EqzCallback, this );
1133     //    var_DelCallback( p_aout, "Spatializer-preamp", EqzCallback, this );
1134 }
1135
1136 void Spatializer::addCallbacks( aout_instance_t *p_aout )
1137 {
1138     //    var_AddCallback( p_aout, "Spatializer-bands", EqzCallback, this );
1139     //    var_AddCallback( p_aout, "Spatializer-preamp", EqzCallback, this );
1140 }
1141
1142 /**********************************************************************
1143  * Video filters / Adjust
1144  **********************************************************************/
1145
1146 /**********************************************************************
1147  * Extended playbak controls
1148  **********************************************************************/