]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/help.cpp
Happy new year
[vlc] / modules / gui / qt4 / dialogs / help.cpp
index 9e4d2c611395f0b55b8fe0f8d924bdcbcdc14f8d..8ca2dbe5986981aaab3b33638436392f897cc2c9 100644 (file)
@@ -1,10 +1,11 @@
 /*****************************************************************************
  * Help.cpp : Help and About dialogs
  ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
- * $Id: Messages.cpp 16024 2006-07-13 13:51:05Z xtophe $
+ * Copyright (C) 2007 the VideoLAN team
+ * $Id$
  *
  * Authors: Jean-Baptiste Kempf <jb (at) videolan.org>
+ *          RĂ©mi Duraffort <ivoire (at) via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#include <vlc/vlc.h>
+
 #include "dialogs/help.hpp"
+#include <vlc_about.h>
+
+#ifdef UPDATE_CHECK
+#include <vlc_update.h>
+#endif
 
 #include "dialogs_provider.hpp"
-#include "util/qvlcframe.hpp"
-#include "qt4.hpp"
+
+#include <vlc_intf_strings.h>
 
 #include <QTextBrowser>
 #include <QTabWidget>
 #include <QFile>
-#include <QTextBrowser>
 #include <QLabel>
+#include <QString>
+#include <QDialogButtonBox>
+#include <QEvent>
+#include <QFileDialog>
+#include <QDate>
+
 
 HelpDialog *HelpDialog::instance = NULL;
 
-HelpDialog::HelpDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
+HelpDialog::HelpDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
 {
     setWindowTitle( qtr( "Help" ) );
-    resize(600, 500);
+    resize( 600, 560 );
 
-    QGridLayout *layout = new QGridLayout(this);
-    QTextBrowser *helpBrowser = new QTextBrowser(this);
-    QPushButton *closeButton = new QPushButton(qtr("&Close"));
+    QGridLayout *layout = new QGridLayout( this );
+    QTextBrowser *helpBrowser = new QTextBrowser( this );
+    helpBrowser->setOpenExternalLinks( true );
+    helpBrowser->setHtml( I_LONGHELP );
+    QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
+    closeButton->setDefault( true );
 
-    layout->addWidget(helpBrowser, 0, 0, 1, 0);
-    layout->addWidget(closeButton, 1, 3);
+    layout->addWidget( helpBrowser, 0, 0, 1, 0 );
+    layout->addWidget( closeButton, 1, 3 );
 
     BUTTONACT( closeButton, close() );
 }
@@ -70,19 +86,81 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
 
     QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
     closeButton->setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum );
+    closeButton->setDefault( true );
+
+    QLabel *introduction = new QLabel(
+            qtr( "Information about VLC media player." ) );
+    QLabel *iconVLC = new QLabel;
+    if( QDate::currentDate().dayOfYear() >= 354 )
+        iconVLC->setPixmap( QPixmap( ":/vlc48-christmas.png" ) );
+    else
+        iconVLC->setPixmap( QPixmap( ":/vlc48.png" ) );
+    layout->addWidget( iconVLC, 0, 0, 1, 1 );
+    layout->addWidget( introduction, 0, 1, 1, 7 );
+    layout->addWidget( tab, 1, 0, 1, 8 );
+    layout->addWidget( closeButton, 2, 6, 1, 2 );
 
-    QLabel *introduction = new QLabel( qtr( "Infos about VLC media player" ) );
+    /* Main Introduction */
+    QWidget *infoWidget = new QWidget( this );
+    QHBoxLayout *infoLayout = new QHBoxLayout( infoWidget );
+    QLabel *infoLabel = new QLabel( "VLC media player " VERSION_MESSAGE "\n\n"
+            "(c) " COPYRIGHT_YEARS " - the VideoLAN Team\n\n" +
+            qtr( "VLC media player is a free media player, made by the "
+                 "VideoLAN Team.\nIt is a standalone multimedia player, "
+                 "encoder and streamer, that can read from many supports "
+                 "(files, CDs, DVDs, networks, capture cards...) and that "
+                 "works on many platforms.\n\n" )
+            + qtr( "You are using the new Qt4 Interface.\n" )
+            + qtr( "Compiled by " ) + qfu( VLC_CompileBy() )+ "@"
+            + qfu( VLC_CompileDomain() ) + ".\n"
+            + "Compiler: " + qfu( VLC_Compiler() ) + ".\n"
+            + qtr( "Based on SVN revision: " ) + qfu( VLC_Changeset() )
+            + ".\n\n"
+            + qtr( "This program comes with NO WARRANTY, to the extent "
+                "permitted by the law; read the distribution tab.\n\n" )
+            + "The VideoLAN team <videolan@videolan.org> \n"
+              "http://www.videolan.org/\n" );
+    infoLabel->setWordWrap( infoLabel );
 
-    layout->addWidget( introduction, 0, 0, 1, 2 );
-    layout->addWidget( tab, 1, 0, 1, 2 );
-    layout->addWidget( closeButton, 2, 1, 1, 1 );
+    QLabel *iconVLC2 = new QLabel;
+    if( QDate::currentDate().dayOfYear() >= 354 )
+        iconVLC2->setPixmap( QPixmap( ":/vlc128-christmas.png" ) );
+    else
+        iconVLC2->setPixmap( QPixmap( ":/vlc128.png" ) );
+    infoLayout->addWidget( iconVLC2 );
+    infoLayout->addWidget( infoLabel );
 
-    QFile *licenseFile = new QFile( "/usr/src/vlc/COPYING" );
+    /* GPL License */
     QTextEdit *licenseEdit = new QTextEdit( this );
-    licenseEdit->setText( licenseFile->readAll() );
+    licenseEdit->setFontFamily( "Monospace" );
+    licenseEdit->setText( qfu( psz_license ) );
     licenseEdit->setReadOnly( true );
 
-    tab->addTab( licenseEdit, _("Distribution License") );
+    /* People who helped */
+    QWidget *thanksWidget = new QWidget( this );
+    QVBoxLayout *thanksLayout = new QVBoxLayout( thanksWidget );
+
+    QLabel *thanksLabel = new QLabel( qtr( "We would like to thank the whole "
+                "community, the testers, our users and the following people "
+                "(and the missing ones...) for their collaboration to "
+                "provide the best software." ) );
+    thanksLabel->setWordWrap( true );
+    thanksLayout->addWidget( thanksLabel );
+    QTextEdit *thanksEdit = new QTextEdit( this );
+    thanksEdit->setText( qfu( psz_thanks ) );
+    thanksEdit->setReadOnly( true );
+    thanksLayout->addWidget( thanksEdit );
+
+    /* People who wrote the software */
+    QTextEdit *authorsEdit = new QTextEdit( this );
+    authorsEdit->setText( qfu( psz_authors ) );
+    authorsEdit->setReadOnly( true );
+
+    /* add the tabs to the Tabwidget */
+    tab->addTab( infoWidget, qtr( "General Info" ) );
+    tab->addTab( authorsEdit, qtr( "Authors" ) );
+    tab->addTab( thanksWidget, qtr("Thanks") );
+    tab->addTab( licenseEdit, qtr("Distribution License") );
 
     BUTTONACT( closeButton, close() );
 }
@@ -94,3 +172,106 @@ void AboutDialog::close()
 {
     this->toggleVisible();
 }
+
+#ifdef UPDATE_CHECK
+
+/*****************************************************************************
+ * UpdateDialog
+ *****************************************************************************/
+/* callback to get information from the core */
+static void UpdateCallback( void *data )
+{
+    UpdateDialog* UDialog = (UpdateDialog *)data;
+    QEvent *event = new QEvent( QEvent::User );
+    QApplication::postEvent( UDialog, event );
+}
+
+UpdateDialog *UpdateDialog::instance = NULL;
+
+UpdateDialog::UpdateDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
+{
+    setWindowTitle( qtr( "Update" ) );
+    resize( 120, 80 );
+
+    QGridLayout *layout = new QGridLayout( this );
+
+    QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
+    updateButton = new QPushButton( qtr( "&Update List" ) );
+    updateButton->setDefault( true );
+    QDialogButtonBox *buttonBox = new QDialogButtonBox( Qt::Horizontal );
+    buttonBox->addButton( updateButton, QDialogButtonBox::ActionRole );
+    buttonBox->addButton( closeButton, QDialogButtonBox::AcceptRole );
+
+    updateLabel = new QLabel( qtr( "Checking for the update..." ) );
+    updateLabel->setWordWrap( true );
+
+    layout->addWidget( updateLabel, 0, 0 );
+    layout->addWidget( buttonBox, 1, 0 );
+
+    BUTTONACT( updateButton, UpdateOrDownload() );
+    BUTTONACT( closeButton, close() );
+
+    /* create the update structure and the callback */
+    p_update = update_New( _p_intf );
+    b_checked = false;
+}
+
+UpdateDialog::~UpdateDialog()
+{
+    update_Delete( p_update );
+}
+
+void UpdateDialog::close()
+{
+    toggleVisible();
+}
+
+/* Check for updates */
+void UpdateDialog::UpdateOrDownload()
+{
+    if( !b_checked )
+    {
+        updateButton->setEnabled( false );
+        update_Check( p_update, UpdateCallback, this );
+    }
+    else
+    {
+        updateButton->setEnabled( false );
+        QString dest_dir = QFileDialog::getExistingDirectory( this, qtr( "Select a directory ..." ),
+                                                              qfu( p_update->p_libvlc->psz_homedir ) );
+
+        if( dest_dir != "" )
+        {
+            toggleVisible();
+            update_Download( p_update, qtu( dest_dir ) );
+        }
+        else
+            updateButton->setEnabled( true );
+    }
+}
+
+/* Handle the events */
+void UpdateDialog::customEvent( QEvent *event )
+{
+    updateNotify();
+}
+
+/* Notify the end of the update_Check */
+void UpdateDialog::updateNotify()
+{
+    if( update_CompareReleaseToCurrent( p_update ) == UpdateReleaseStatusNewer )
+    {
+        b_checked = true;
+        updateButton->setText( "Download" );
+        updateLabel->setText( qtr( "There is a new version of vlc :\n" ) + qfu( p_update->release.psz_desc )  );
+    }
+    else
+    {
+        updateLabel->setText( qtr( "You have the latest version of vlc" ) );
+    }
+    adjustSize();
+    updateButton->setEnabled( true );
+}
+
+
+#endif