extended_panels.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:47k
源码类别:

midi

开发平台:

Unix_Linux

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