]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/extended.cpp
qt4 - Copyright, CRs and unwanted commits.
[vlc] / modules / gui / qt4 / dialogs / extended.cpp
1 /*****************************************************************************
2  * extended.cpp : Extended controls - Undocked
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id: streaminfo.cpp 16687 2006-09-17 12:15:42Z jb $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include <QTabWidget>
25 #include <QBoxLayout>
26
27 #include "dialogs/extended.hpp"
28 #include "dialogs_provider.hpp"
29 #include "util/qvlcframe.hpp"
30 #include "components/extended_panels.hpp"
31 #include "qt4.hpp"
32
33 ExtendedDialog *ExtendedDialog::instance = NULL;
34
35 ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
36 {
37     setWindowFlags( Qt::Tool );
38
39     QHBoxLayout *l = new QHBoxLayout( this );
40     QTabWidget *tab = new QTabWidget( this );
41
42     l->addWidget( tab );
43
44     setWindowTitle( qtr( "Extended controls" ) );
45
46     Equalizer *foo = new Equalizer( p_intf, this );
47     tab->addTab( foo, qtr( "Equalizer" ) );
48
49     ExtVideo *bar = new ExtVideo( p_intf, this );
50     tab->addTab( bar, qtr( "Video effects" ) );
51 }
52
53 ExtendedDialog::~ExtendedDialog()
54 {
55 }
56