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