]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/extended.cpp
properly display translated strings in setWindowTitle in qt4 interface
[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 #include <QTabWidget>
24 #include <QBoxLayout>
25
26 #include "dialogs/extended.hpp"
27 #include "dialogs_provider.hpp"
28 #include "util/qvlcframe.hpp"
29 #include "components/extended_panels.hpp"
30 #include "qt4.hpp"
31
32 ExtendedDialog *ExtendedDialog::instance = NULL;
33
34 ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
35 {
36     QHBoxLayout *l = new QHBoxLayout( this );
37     QTabWidget *tab = new QTabWidget( this );
38
39     l->addWidget( tab );
40
41     setWindowTitle( qtr( "Extended controls" ) );
42     Equalizer *foo = new Equalizer( p_intf, this );
43
44     tab->addTab( foo, qtr( "Equalizer" ) );
45 }
46
47 ExtendedDialog::~ExtendedDialog()
48 {
49 }
50