]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/extended.cpp
8e7756515ffc2ffe7439c2ebd2a4019020b01ecb
[vlc] / modules / gui / qt4 / dialogs / extended.cpp
1 /*****************************************************************************
2  * extended.cpp : Extended controls - Undocked
3  ****************************************************************************
4  * Copyright (C) 2006-2008 the VideoLAN team
5  * $Id$
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
28 #include "dialogs/extended.hpp"
29
30 #include "main_interface.hpp" /* Needed for external MI size */
31 #include "input_manager.hpp"
32
33 #include <QTabWidget>
34 #include <QGridLayout>
35 #include <vlc_modules.h>
36
37 ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
38 {
39     setWindowFlags( Qt::Tool );
40     setWindowOpacity( var_InheritFloat( p_intf, "qt-opacity" ) );
41     setWindowTitle( qtr( "Adjustments and Effects" ) );
42     setWindowRole( "vlc-extended" );
43
44     QGridLayout *layout = new QGridLayout( this );
45     layout->setContentsMargins( 0, 2, 0, 1 );
46     layout->setSpacing( 3 );
47
48     mainTabW = new QTabWidget( this );
49
50     /* AUDIO effects */
51     QWidget *audioWidget = new QWidget;
52     QHBoxLayout *audioLayout = new QHBoxLayout( audioWidget );
53     QTabWidget *audioTab = new QTabWidget( audioWidget );
54
55     equal = new Equalizer( p_intf, audioTab );
56     audioTab->addTab( equal, qtr( "Graphic Equalizer" ) );
57
58     Compressor *compres = new Compressor( p_intf, audioTab );
59     audioTab->addTab( compres, qtr( "Compressor" ) );
60
61     Spatializer *spatial = new Spatializer( p_intf, audioTab );
62     audioTab->addTab( spatial, qtr( "Spatializer" ) );
63     audioLayout->addWidget( audioTab );
64
65     mainTabW->addTab( audioWidget, qtr( "Audio Effects" ) );
66
67     /* Video Effects */
68     QWidget *videoWidget = new QWidget;
69     QHBoxLayout *videoLayout = new QHBoxLayout( videoWidget );
70     QTabWidget *videoTab = new QTabWidget( videoWidget );
71
72     videoEffect = new ExtVideo( p_intf, videoTab );
73     videoLayout->addWidget( videoTab );
74     videoTab->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Maximum );
75
76     mainTabW->addTab( videoWidget, qtr( "Video Effects" ) );
77
78     syncW = new SyncControls( p_intf, videoTab );
79     mainTabW->addTab( syncW, qtr( "Synchronization" ) );
80
81     if( module_exists( "v4l2" ) )
82     {
83         ExtV4l2 *v4l2 = new ExtV4l2( p_intf, mainTabW );
84         mainTabW->addTab( v4l2, qtr( "v4l2 controls" ) );
85     }
86
87     layout->addWidget( mainTabW, 0, 0, 1, 5 );
88
89     QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
90     layout->addWidget( closeButton, 1, 4, 1, 1 );
91     CONNECT( closeButton, clicked(), this, close() );
92
93     /* Restore geometry or move this dialog on the left pane of the MI */
94     if( !restoreGeometry( getSettings()->value("EPanel/geometry").toByteArray() ) )
95     {
96         resize( QSize( 400, 280 ) );
97
98         MainInterface *p_mi = p_intf->p_sys->p_mi;
99         if( p_mi && p_mi->x() > 50 )
100             move( ( p_mi->x() - frameGeometry().width() - 10 ), p_mi->y() );
101         else
102             move ( 450 , 0 );
103     }
104
105     CONNECT( THEMIM->getIM(), statusChanged( int ), this, changedItem( int ) );
106 }
107
108 ExtendedDialog::~ExtendedDialog()
109 {
110     writeSettings( "EPanel" );
111 }
112
113 void ExtendedDialog::showTab( int i )
114 {
115     mainTabW->setCurrentIndex( i );
116     show();
117 }
118
119 int ExtendedDialog::currentTab()
120 {
121     return mainTabW->currentIndex();
122 }
123
124 void ExtendedDialog::changedItem( int i_status )
125 {
126     if( i_status != END_S ) return;
127     syncW->clean();
128     videoEffect->clean();
129     equal->clean();
130 }