]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/extended.cpp
Qt4 - Coding style fixes by Rémi Duraffort.
[vlc] / modules / gui / qt4 / dialogs / extended.cpp
1 /*****************************************************************************
2  * extended.cpp : Extended controls - Undocked
3  ****************************************************************************
4  * Copyright (C) 2006 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
25 #include "dialogs/extended.hpp"
26 #include "dialogs_provider.hpp"
27 #include "components/extended_panels.hpp"
28
29 #include <QTabWidget>
30 #include <QGridLayout>
31
32 ExtendedDialog *ExtendedDialog::instance = NULL;
33
34 ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
35 {
36     setWindowFlags( Qt::Tool );
37     setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
38     setWindowTitle( qtr( "Adjustments and Effects" ) );
39
40     QGridLayout *layout = new QGridLayout( this );
41
42     QTabWidget *mainTab = new QTabWidget( this );
43     mainTab->setTabPosition( QTabWidget::West );
44
45     QWidget *audioWidget = new QWidget;
46     QHBoxLayout *audioLayout = new QHBoxLayout( audioWidget );
47     QTabWidget *audioTab = new QTabWidget( mainTab );
48
49     Equalizer *equal = new Equalizer( p_intf, this );
50     audioTab->addTab( equal, qtr( "Graphic Equalizer" ) );
51
52     Spatializer *spatial = new Spatializer( p_intf, this );
53     audioTab->addTab( spatial, qtr( "Spatializer" ) );
54     audioLayout->addWidget( audioTab );
55
56     mainTab->addTab( audioWidget, qtr( "Audio effects" ) );
57
58     ExtVideo *videoEffect = new ExtVideo( p_intf, this );
59     mainTab->addTab( videoEffect, qtr( "Video Adjustments and Effects" ) );
60
61     layout->addWidget( mainTab, 0, 0, 1, 5 );
62
63     QPushButton *closeButton = new QPushButton( qtr( "Close" ) );
64     layout->addWidget( closeButton, 1, 4, 1, 1 );
65     CONNECT( closeButton, clicked(), this, close() );
66
67     readSettings( "EPanel", QSize( 400, 280 ), QPoint( 450, 0 ) );
68 }
69
70 void ExtendedDialog::savingSettings()
71 {
72     writeSettings( "EPanel" );
73 }
74
75 ExtendedDialog::~ExtendedDialog()
76 {}
77