]> git.sesse.net Git - vlc/commitdiff
qt4 - About dialog, forgot in previous commit.
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 15 Mar 2007 00:40:42 +0000 (00:40 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 15 Mar 2007 00:40:42 +0000 (00:40 +0000)
modules/gui/qt4/dialogs/help.cpp

index 9e4d2c611395f0b55b8fe0f8d924bdcbcdc14f8d..164b107d385bea4963f29caacf85206f412ee323 100644 (file)
@@ -77,11 +77,22 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
     layout->addWidget( tab, 1, 0, 1, 2 );
     layout->addWidget( closeButton, 2, 1, 1, 1 );
 
-    QFile *licenseFile = new QFile( "/usr/src/vlc/COPYING" );
-    QTextEdit *licenseEdit = new QTextEdit( this );
-    licenseEdit->setText( licenseFile->readAll() );
-    licenseEdit->setReadOnly( true );
-
+    /* GPL License */
+    QFile *licenseFile = new QFile( "/usr/src/vlc/COPYING" ); 
+    QTextEdit *licenseEdit = new QTextEdit( this ); 
+    licenseEdit->setText( licenseFile->readAll() ); 
+    licenseEdit->setReadOnly( true ); 
+
+    /* People who helped */
+    QFile *thanksFile = new QFile( "/usr/src/vlc/THANKS" );
+    QTextEdit *thanksEdit = new QTextEdit( this );
+    thanksEdit->setText( thanksFile->readAll() );
+    thanksEdit->setReadOnly( true );
+
+    /* add the tabs to the Tabwidget */
+    tab->addTab( NULL, _( "Information" ) );
+    tab->addTab( NULL, _( "Authors" ) );
+    tab->addTab( thanksEdit, _("Thanks") );
     tab->addTab( licenseEdit, _("Distribution License") );
 
     BUTTONACT( closeButton, close() );