]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/extended.cpp
Qt: EPGItem: add parental rating
[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 <QPushButton>
37 #include <vlc_modules.h>
38
39 ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf )
40                : QVLCDialog( (QWidget*)_p_intf->p_sys->p_mi, _p_intf )
41 {
42 #ifdef __APPLE__
43     setWindowFlags( Qt::Drawer );
44 #else
45     setWindowFlags( Qt::Tool );
46 #endif
47
48     setWindowOpacity( var_InheritFloat( p_intf, "qt-opacity" ) );
49     setWindowTitle( qtr( "Adjustments and Effects" ) );
50     setWindowRole( "vlc-extended" );
51
52     QVBoxLayout *layout = new QVBoxLayout( this );
53     layout->setContentsMargins( 0, 2, 0, 1 );
54     layout->setSpacing( 3 );
55
56     mainTabW = new QTabWidget( this );
57
58     /* AUDIO effects */
59     QWidget *audioWidget = new QWidget;
60     QHBoxLayout *audioLayout = new QHBoxLayout( audioWidget );
61     QTabWidget *audioTab = new QTabWidget( audioWidget );
62
63     equal = new Equalizer( p_intf, audioTab );
64     audioTab->addTab( equal, qtr( "Graphic Equalizer" ) );
65
66     Compressor *compres = new Compressor( p_intf, audioTab );
67     audioTab->addTab( compres, qtr( "Compressor" ) );
68
69     Spatializer *spatial = new Spatializer( p_intf, audioTab );
70     audioTab->addTab( spatial, qtr( "Spatializer" ) );
71     audioLayout->addWidget( audioTab );
72
73     mainTabW->insertTab( AUDIO_TAB, audioWidget, qtr( "Audio Effects" ) );
74
75     /* Video Effects */
76     QWidget *videoWidget = new QWidget;
77     QHBoxLayout *videoLayout = new QHBoxLayout( videoWidget );
78     QTabWidget *videoTab = new QTabWidget( videoWidget );
79
80     videoEffect = new ExtVideo( p_intf, videoTab );
81     videoLayout->addWidget( videoTab );
82     videoTab->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Maximum );
83
84     mainTabW->insertTab( VIDEO_TAB, videoWidget, qtr( "Video Effects" ) );
85
86     syncW = new SyncControls( p_intf, videoTab );
87     mainTabW->insertTab( SYNCHRO_TAB, syncW, qtr( "Synchronization" ) );
88
89     if( module_exists( "v4l2" ) )
90     {
91         ExtV4l2 *v4l2 = new ExtV4l2( p_intf, mainTabW );
92         mainTabW->insertTab( V4L2_TAB, v4l2, qtr( "v4l2 controls" ) );
93     }
94
95     layout->addWidget( mainTabW );
96
97     /* Bottom buttons / checkbox line */
98     QHBoxLayout *buttonsLayout = new QHBoxLayout();
99     layout->addLayout( buttonsLayout );
100
101     writeChangesBox = new QCheckBox( qtr("&Write changes to config") );
102     buttonsLayout->addWidget( writeChangesBox );
103     CONNECT( writeChangesBox, toggled(bool), compres, setSaveToConfig(bool) );
104     CONNECT( writeChangesBox, toggled(bool), spatial, setSaveToConfig(bool) );
105     CONNECT( writeChangesBox, toggled(bool), equal, setSaveToConfig(bool) );
106     CONNECT( mainTabW, currentChanged(int), this, currentTabChanged(int) );
107
108     QDialogButtonBox *closeButtonBox = new QDialogButtonBox( Qt::Horizontal, this );
109     closeButtonBox->addButton(
110         new QPushButton( qtr("&Close"), this ), QDialogButtonBox::RejectRole );
111     buttonsLayout->addWidget( closeButtonBox );
112
113     CONNECT( closeButtonBox, rejected(), this, close() );
114
115     /* Restore geometry or move this dialog on the left pane of the MI */
116     if( !restoreGeometry( getSettings()->value("EPanel/geometry").toByteArray() ) )
117     {
118         resize( QSize( 400, 280 ) );
119
120         MainInterface *p_mi = p_intf->p_sys->p_mi;
121         if( p_mi && p_mi->x() > 50 )
122             move( ( p_mi->x() - frameGeometry().width() - 10 ), p_mi->y() );
123         else
124             move ( 450 , 0 );
125     }
126
127     CONNECT( THEMIM->getIM(), playingStatusChanged( int ), this, changedItem( int ) );
128 }
129
130 ExtendedDialog::~ExtendedDialog()
131 {
132     getSettings()->setValue("Epanel/geometry", saveGeometry());
133 }
134
135 void ExtendedDialog::showTab( int i )
136 {
137     mainTabW->setCurrentIndex( i );
138     show();
139 }
140
141 int ExtendedDialog::currentTab()
142 {
143     return mainTabW->currentIndex();
144 }
145
146 void ExtendedDialog::changedItem( int i_status )
147 {
148     if( i_status != END_S ) return;
149     syncW->clean();
150     videoEffect->clean();
151 }
152
153 void ExtendedDialog::currentTabChanged( int i )
154 {
155     writeChangesBox->setVisible( i == AUDIO_TAB );
156 }