]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/extended.cpp
More l10n string fixes. Adds a FIXME to atmo.cpp, because that setting description...
[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 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include "dialogs/extended.hpp"
29 #include "dialogs_provider.hpp"
30 #include "components/extended_panels.hpp"
31
32 #include <QTabWidget>
33 #include <QGridLayout>
34
35 ExtendedDialog *ExtendedDialog::instance = NULL;
36
37 ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
38 {
39     setWindowFlags( Qt::Tool );
40     setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
41     setWindowTitle( qtr( "Adjustments and Effects" ) );
42
43     QGridLayout *layout = new QGridLayout( this );
44     layout->setLayoutMargins( 0, 2, 0, 1, 1 );
45     layout->setSpacing( 3 );
46
47     QTabWidget *mainTabW = new QTabWidget( this );
48
49     /* AUDIO effects */
50     QWidget *audioWidget = new QWidget;
51     QHBoxLayout *audioLayout = new QHBoxLayout( audioWidget );
52     QTabWidget *audioTab = new QTabWidget( audioWidget );
53
54     Equalizer *equal = new Equalizer( p_intf, audioTab );
55     audioTab->addTab( equal, qtr( "Graphic Equalizer" ) );
56
57     Spatializer *spatial = new Spatializer( p_intf, audioTab );
58     audioTab->addTab( spatial, qtr( "Spatializer" ) );
59     audioLayout->addWidget( audioTab );
60
61     mainTabW->addTab( audioWidget, qtr( "Audio Effects" ) );
62
63     /* Video Effects */
64     QWidget *videoWidget = new QWidget;
65     QHBoxLayout *videoLayout = new QHBoxLayout( videoWidget );
66     QTabWidget *videoTab = new QTabWidget( videoWidget );
67
68     ExtVideo *videoEffect = new ExtVideo( p_intf, videoTab );
69     videoLayout->addWidget( videoTab );
70     videoTab->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Maximum );
71
72     mainTabW->addTab( videoWidget, qtr( "Video Effects" ) );
73
74     SyncControls *syncW = new SyncControls( p_intf, videoTab );
75     mainTabW->addTab( syncW, qtr( "Synchronization" ) );
76
77     if( module_Exists( p_intf, "v4l2" ) )
78     {
79         ExtV4l2 *v4l2 = new ExtV4l2( p_intf, mainTabW );
80         mainTabW->addTab( v4l2, qtr( "v4l2 controls" ) );
81     }
82
83     layout->addWidget( mainTabW, 0, 0, 1, 5 );
84
85     QPushButton *closeButton = new QPushButton( qtr( "Close" ) );
86     layout->addWidget( closeButton, 1, 4, 1, 1 );
87     CONNECT( closeButton, clicked(), this, close() );
88
89     readSettings( "EPanel", QSize( 400, 280 ), QPoint( 450, 0 ) );
90 }
91
92 ExtendedDialog::~ExtendedDialog()
93 {
94     writeSettings( "EPanel" );
95 }
96