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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * extended.cpp : Extended controls - Undocked
  3.  ****************************************************************************
  4.  * Copyright (C) 2006-2008 the VideoLAN team
  5.  * $Id: ffc34f0e1abf36ffb2ebf8d97735e3646b3cba18 $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@videolan.org>
  8.  *          Jean-Baptiste Kempf <jb@videolan.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 "dialogs/extended.hpp"
  28. #include "main_interface.hpp" /* Needed for external MI size */
  29. #include "input_manager.hpp"
  30. #include <QTabWidget>
  31. #include <QGridLayout>
  32. ExtendedDialog *ExtendedDialog::instance = NULL;
  33. ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
  34. {
  35.     setWindowFlags( Qt::Tool );
  36.     setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
  37.     setWindowTitle( qtr( "Adjustments and Effects" ) );
  38.     QGridLayout *layout = new QGridLayout( this );
  39.     layout->setLayoutMargins( 0, 2, 0, 1, 1 );
  40.     layout->setSpacing( 3 );
  41.     mainTabW = new QTabWidget( this );
  42.     /* AUDIO effects */
  43.     QWidget *audioWidget = new QWidget;
  44.     QHBoxLayout *audioLayout = new QHBoxLayout( audioWidget );
  45.     QTabWidget *audioTab = new QTabWidget( audioWidget );
  46.     equal = new Equalizer( p_intf, audioTab );
  47.     audioTab->addTab( equal, qtr( "Graphic Equalizer" ) );
  48.     Spatializer *spatial = new Spatializer( p_intf, audioTab );
  49.     audioTab->addTab( spatial, qtr( "Spatializer" ) );
  50.     audioLayout->addWidget( audioTab );
  51.     mainTabW->addTab( audioWidget, qtr( "Audio Effects" ) );
  52.     /* Video Effects */
  53.     QWidget *videoWidget = new QWidget;
  54.     QHBoxLayout *videoLayout = new QHBoxLayout( videoWidget );
  55.     QTabWidget *videoTab = new QTabWidget( videoWidget );
  56.     videoEffect = new ExtVideo( p_intf, videoTab );
  57.     videoLayout->addWidget( videoTab );
  58.     videoTab->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Maximum );
  59.     mainTabW->addTab( videoWidget, qtr( "Video Effects" ) );
  60.     syncW = new SyncControls( p_intf, videoTab );
  61.     mainTabW->addTab( syncW, qtr( "Synchronization" ) );
  62.     if( module_exists( "v4l2" ) )
  63.     {
  64.         ExtV4l2 *v4l2 = new ExtV4l2( p_intf, mainTabW );
  65.         mainTabW->addTab( v4l2, qtr( "v4l2 controls" ) );
  66.     }
  67.     layout->addWidget( mainTabW, 0, 0, 1, 5 );
  68.     QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
  69.     layout->addWidget( closeButton, 1, 4, 1, 1 );
  70.     CONNECT( closeButton, clicked(), this, close() );
  71.     /* Restore geometry or move this dialog on the left pane of the MI */
  72.     if( !restoreGeometry(getSettings()->value("EPanel/geometry").toByteArray()))
  73.     {
  74.         resize( QSize( 400, 280 ) );
  75.         MainInterface *p_mi = p_intf->p_sys->p_mi;
  76.         if( p_mi )
  77.             move( ( p_mi->x() - frameGeometry().width() - 10 ), p_mi->y() );
  78.         else
  79.             move ( 450 , 0 );
  80.     }
  81.     CONNECT( THEMIM->getIM(), statusChanged( int ), this, changedItem( int ) );
  82. }
  83. ExtendedDialog::~ExtendedDialog()
  84. {
  85.     writeSettings( "EPanel" );
  86. }
  87. void ExtendedDialog::showTab( int i )
  88. {
  89.     mainTabW->setCurrentIndex( i );
  90.     show();
  91. }
  92. int ExtendedDialog::currentTab()
  93. {
  94.     return mainTabW->currentIndex();
  95. }
  96. void ExtendedDialog::changedItem( int i_status )
  97. {
  98.     if( i_status != END_S ) return;
  99.     syncW->clean();
  100.     videoEffect->clean();
  101.     equal->clean();
  102. }