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