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