]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/help.cpp
qt4 - small comment to avoid the pbs until we have new contribs.
[vlc] / modules / gui / qt4 / dialogs / help.cpp
1 /*****************************************************************************
2  * Help.cpp : Help and About dialogs
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id: Messages.cpp 16024 2006-07-13 13:51:05Z xtophe $
6  *
7  * Authors: Jean-Baptiste Kempf <jb (at) 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 "dialogs/help.hpp"
25
26 #include "dialogs_provider.hpp"
27 #include "util/qvlcframe.hpp"
28 #include "qt4.hpp"
29
30 #include <QTextBrowser>
31 #include <QTabWidget>
32 #include <QFile>
33 #include <QLabel>
34
35 HelpDialog *HelpDialog::instance = NULL;
36
37 HelpDialog::HelpDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
38 {
39     setWindowTitle( qtr( "Help" ) );
40     resize(600, 500);
41
42     QGridLayout *layout = new QGridLayout(this);
43     QTextBrowser *helpBrowser = new QTextBrowser(this);
44     QPushButton *closeButton = new QPushButton(qtr("&Close"));
45
46     layout->addWidget(helpBrowser, 0, 0, 1, 0);
47     layout->addWidget(closeButton, 1, 3);
48
49     BUTTONACT( closeButton, close() );
50 }
51
52 HelpDialog::~HelpDialog()
53 {
54 }
55 void HelpDialog::close()
56 {
57     this->toggleVisible();
58 }
59
60 AboutDialog *AboutDialog::instance = NULL;
61
62 AboutDialog::AboutDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
63 {
64     setWindowTitle( qtr( "About" ) );
65     resize( 600, 500 );
66
67     QGridLayout *layout = new QGridLayout( this );
68     QTabWidget *tab = new QTabWidget( this );
69
70     QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
71     closeButton->setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum );
72
73     QLabel *introduction = new QLabel( qtr( "Infos about VLC media player" ) );
74
75     layout->addWidget( introduction, 0, 0, 1, 2 );
76     layout->addWidget( tab, 1, 0, 1, 2 );
77     layout->addWidget( closeButton, 2, 1, 1, 1 );
78
79     /* GPL License */
80     QFile *licenseFile = new QFile( "/usr/src/vlc/COPYING" ); 
81     QTextEdit *licenseEdit = new QTextEdit( this ); 
82 //    licenseEdit->setText( licenseFile->readAll() ); 
83     licenseEdit->setReadOnly( true ); 
84
85     /* People who helped */
86     QFile *thanksFile = new QFile( "/usr/src/vlc/THANKS" );
87     QTextEdit *thanksEdit = new QTextEdit( this );
88     thanksEdit->setText( thanksFile->readAll() );
89     thanksEdit->setReadOnly( true );
90
91     /* add the tabs to the Tabwidget */
92     tab->addTab( NULL, _( "Information" ) );
93     tab->addTab( NULL, _( "Authors" ) );
94     tab->addTab( thanksEdit, _("Thanks") );
95     tab->addTab( licenseEdit, _("Distribution License") );
96
97     BUTTONACT( closeButton, close() );
98 }
99
100 AboutDialog::~AboutDialog()
101 {
102 }
103 void AboutDialog::close()
104 {
105     this->toggleVisible();
106 }