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