]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/extended.cpp
lower case the module_* functions
[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
31 #include "main_interface.hpp"
32 #include "input_manager.hpp"
33
34 #include <QTabWidget>
35 #include <QGridLayout>
36
37 ExtendedDialog *ExtendedDialog::instance = NULL;
38
39 ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
40 {
41     setWindowFlags( Qt::Tool );
42     setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
43     setWindowTitle( qtr( "Adjustments and Effects" ) );
44
45     QGridLayout *layout = new QGridLayout( this );
46     layout->setLayoutMargins( 0, 2, 0, 1, 1 );
47     layout->setSpacing( 3 );
48
49     QTabWidget *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     Spatializer *spatial = new Spatializer( p_intf, audioTab );
60     audioTab->addTab( spatial, qtr( "Spatializer" ) );
61     audioLayout->addWidget( audioTab );
62
63     mainTabW->addTab( audioWidget, qtr( "Audio Effects" ) );
64
65     /* Video Effects */
66     QWidget *videoWidget = new QWidget;
67     QHBoxLayout *videoLayout = new QHBoxLayout( videoWidget );
68     QTabWidget *videoTab = new QTabWidget( videoWidget );
69
70     videoEffect = new ExtVideo( p_intf, videoTab );
71     videoLayout->addWidget( videoTab );
72     videoTab->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Maximum );
73
74     mainTabW->addTab( videoWidget, qtr( "Video Effects" ) );
75
76     syncW = new SyncControls( p_intf, videoTab );
77     mainTabW->addTab( syncW, qtr( "Synchronization" ) );
78
79     if( module_exists( p_intf, "v4l2" ) )
80     {
81         ExtV4l2 *v4l2 = new ExtV4l2( p_intf, mainTabW );
82         mainTabW->addTab( v4l2, qtr( "v4l2 controls" ) );
83     }
84
85     layout->addWidget( mainTabW, 0, 0, 1, 5 );
86
87     QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
88     layout->addWidget( closeButton, 1, 4, 1, 1 );
89     CONNECT( closeButton, clicked(), this, close() );
90
91     QPoint startPoint( 450, 0 );
92     MainInterface *p_mi = p_intf->p_sys->p_mi;
93     if( p_mi )
94     {
95         startPoint.setX( p_mi->x() );
96         startPoint.setY( p_mi->y() + p_mi->frameGeometry().height() );
97     }
98     readSettings( "EPanel", QSize( 400, 280 ), startPoint );
99
100     CONNECT( THEMIM->getIM(), statusChanged( int ), this, changedItem( int ) );
101
102 }
103
104 ExtendedDialog::~ExtendedDialog()
105 {
106     writeSettings( "EPanel" );
107 }
108
109 void ExtendedDialog::changedItem( int i_status )
110 {
111     if( i_status != END_S ) return;
112     syncW->clean();
113     videoEffect->clean();
114     equal->clean();
115 }