]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/help.cpp
e6fb2179b39aa3f270946f9b17592b95f3265c06
[vlc] / modules / gui / qt4 / dialogs / help.cpp
1 /*****************************************************************************
2  * help.cpp : Help and About dialogs
3  ****************************************************************************
4  * Copyright (C) 2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Baptiste Kempf <jb (at) videolan.org>
8  *          RĂ©mi Duraffort <ivoire (at) via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include "qt4.hpp"
30 #include "dialogs/help.hpp"
31 #include "util/qt_dirs.hpp"
32
33 #include <vlc_about.h>
34 #include <vlc_intf_strings.h>
35
36 #ifdef UPDATE_CHECK
37 # include <vlc_update.h>
38 #endif
39
40 #include <QTextBrowser>
41 #include <QTabWidget>
42 #include <QLabel>
43 #include <QString>
44 #include <QDialogButtonBox>
45 #include <QEvent>
46 #include <QDate>
47 #include <QPushButton>
48
49 #include <assert.h>
50
51 HelpDialog::HelpDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
52
53 {
54     setWindowTitle( qtr( "Help" ) );
55     setWindowRole( "vlc-help" );
56     setMinimumSize( 350, 300 );
57
58     QVBoxLayout *layout = new QVBoxLayout( this );
59
60     QTextBrowser *helpBrowser = new QTextBrowser( this );
61     helpBrowser->setOpenExternalLinks( true );
62     helpBrowser->setHtml( qtr(I_LONGHELP) );
63
64     QDialogButtonBox *closeButtonBox = new QDialogButtonBox( this );
65     closeButtonBox->addButton(
66         new QPushButton( qtr("&Close") ), QDialogButtonBox::RejectRole );
67     closeButtonBox->setFocus();
68
69     layout->addWidget( helpBrowser );
70     layout->addWidget( closeButtonBox );
71
72     CONNECT( closeButtonBox, rejected(), this, close() );
73     restoreWidgetPosition( "Help", QSize( 500, 450 ) );
74 }
75
76 HelpDialog::~HelpDialog()
77 {
78     saveWidgetPosition( "Help" );
79 }
80
81 AboutDialog::AboutDialog( intf_thread_t *_p_intf)
82             : QVLCDialog( (QWidget*)_p_intf->p_sys->p_mi, _p_intf )
83 {
84     /* Build UI */
85     ui.setupUi( this );
86     setWindowTitle( qtr( "About" ) );
87     setWindowRole( "vlc-about" );
88     setWindowModality( Qt::WindowModal );
89
90     ui.version->setText(qfu( " " VERSION_MESSAGE ) );
91 #if 0
92     if( QDate::currentDate().dayOfYear() >= QT_XMAS_JOKE_DAY && var_InheritBool( p_intf, "qt-icon-change" ) )
93         ui.iconVLC->setPixmap( QPixmap( ":/logo/vlc128-xmas.png" ) );
94     else
95         ui.iconVLC->setPixmap( QPixmap( ":/logo/vlc128.png" ) );
96 #endif
97
98 #if 0
99     ifdef UPDATE_CHECK
100 #else
101     ui.update->hide();
102 #endif
103
104     /* GPL License */
105     ui.licensePage->setText( qfu( psz_license ) );
106
107     /* People who helped */
108     ui.creditPage->setText( qfu( psz_thanks ) );
109
110     /* People who wrote the software */
111     ui.authorsPage->setText( qfu( psz_authors ) );
112
113     BUTTONACT(ui.licenseButton, showLicense() );
114     BUTTONACT(ui.authorsButton, showAuthors() );
115     BUTTONACT(ui.creditsButton,  showCredit() );
116 }
117
118 void AboutDialog::showLicense()
119 {
120     ui.stackedWidget->setCurrentWidget( ui.licensePage );
121 }
122
123 void AboutDialog::showAuthors()
124 {
125     ui.stackedWidget->setCurrentWidget( ui.authorsPage );
126 }
127
128 void AboutDialog::showCredit()
129 {
130     ui.stackedWidget->setCurrentWidget( ui.creditPage );
131 }
132
133 #ifdef UPDATE_CHECK
134
135 /*****************************************************************************
136  * UpdateDialog
137  *****************************************************************************/
138 /* callback to get information from the core */
139 static void UpdateCallback( void *data, bool b_ret )
140 {
141     UpdateDialog* UDialog = (UpdateDialog *)data;
142     QEvent* event;
143
144     if( b_ret )
145         event = new QEvent( UpdateDialog::UDOkEvent );
146     else
147         event = new QEvent( UpdateDialog::UDErrorEvent );
148
149     QApplication::postEvent( UDialog, event );
150 }
151
152 const QEvent::Type UpdateDialog::UDOkEvent =
153         (QEvent::Type)QEvent::registerEventType();
154 const QEvent::Type UpdateDialog::UDErrorEvent =
155         (QEvent::Type)QEvent::registerEventType();
156
157 UpdateDialog::UpdateDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
158 {
159     /* build Ui */
160     ui.setupUi( this );
161     ui.updateDialogButtonBox->addButton( new QPushButton( qtr("&Close"), this ),
162                                          QDialogButtonBox::RejectRole );
163     QPushButton *recheckButton = new QPushButton( qtr("&Recheck version"), this );
164     ui.updateDialogButtonBox->addButton( recheckButton, QDialogButtonBox::ActionRole );
165
166     ui.updateNotifyButtonBox->addButton( new QPushButton( qtr("&Yes"), this ),
167                                          QDialogButtonBox::AcceptRole );
168     ui.updateNotifyButtonBox->addButton( new QPushButton( qtr("&No"), this ),
169                                          QDialogButtonBox::RejectRole );
170
171     setWindowTitle( qtr( "VLC media player updates" ) );
172     setWindowRole( "vlc-update" );
173
174     BUTTONACT( recheckButton, UpdateOrDownload() );
175     CONNECT( ui.updateDialogButtonBox, rejected(), this, close() );
176
177     CONNECT( ui.updateNotifyButtonBox, accepted(), this, UpdateOrDownload() );
178     CONNECT( ui.updateNotifyButtonBox, rejected(), this, close() );
179
180     /* Create the update structure */
181     p_update = update_New( p_intf );
182     b_checked = false;
183
184     setMinimumSize( 300, 300 );
185     setMaximumSize( 500, 300 );
186
187     restoreWidgetPosition( "Update", maximumSize() );
188
189     /* Check for updates */
190     UpdateOrDownload();
191 }
192
193 UpdateDialog::~UpdateDialog()
194 {
195     update_Delete( p_update );
196     saveWidgetPosition( "Update" );
197 }
198
199 /* Check for updates */
200 void UpdateDialog::UpdateOrDownload()
201 {
202     if( !b_checked )
203     {
204         ui.stackedWidget->setCurrentWidget( ui.updateRequestPage );
205         update_Check( p_update, UpdateCallback, this );
206     }
207     else
208     {
209         QString dest_dir = QDir::tempPath();
210         if( !dest_dir.isEmpty() )
211         {
212             dest_dir = toNativeSepNoSlash( dest_dir ) + DIR_SEP;
213             msg_Dbg( p_intf, "Downloading to folder: %s", qtu( dest_dir ) );
214             toggleVisible();
215             update_Download( p_update, qtu( dest_dir ) );
216             /* FIXME: We should trigger a change to another dialog here ! */
217         }
218     }
219 }
220
221 /* Handle the events */
222 void UpdateDialog::customEvent( QEvent *event )
223 {
224     if( event->type() == UDOkEvent )
225         updateNotify( true );
226     else
227         updateNotify( false );
228 }
229
230 /* Notify the end of the update_Check */
231 void UpdateDialog::updateNotify( bool b_result )
232 {
233     /* The update finish without errors */
234     if( b_result )
235     {
236         if( update_NeedUpgrade( p_update ) )
237         {
238             ui.stackedWidget->setCurrentWidget( ui.updateNotifyPage );
239             update_release_t *p_release = update_GetRelease( p_update );
240             assert( p_release );
241             b_checked = true;
242             QString message = QString(
243                     qtr( "A new version of VLC (%1.%2.%3%4) is available." ) )
244                 .arg( QString::number( p_release->i_major ) )
245                 .arg( QString::number( p_release->i_minor ) )
246                 .arg( QString::number( p_release->i_revision ) )
247                 .arg( p_release->i_extra == 0 ? "" : "." + QString::number( p_release->i_extra ) );
248
249             ui.updateNotifyLabel->setText( message );
250             message = qfu( p_release->psz_desc ).replace( "\n", "<br/>" );
251
252             /* Try to highlight releases featuring security changes */
253             int i_index = message.indexOf( "security", Qt::CaseInsensitive );
254             if ( i_index >= 0 )
255             {
256                 message.insert( i_index + 8, "</font>" );
257                 message.insert( i_index, "<font style=\"color:red\">" );
258             }
259             ui.updateNotifyTextEdit->setHtml( message );
260
261             /* Force the dialog to be shown */
262             this->show();
263         }
264         else
265         {
266             ui.stackedWidget->setCurrentWidget( ui.updateDialogPage );
267             ui.updateDialogLabel->setText(
268                     qtr( "You have the latest version of VLC media player." ) );
269         }
270     }
271     else
272     {
273         ui.stackedWidget->setCurrentWidget( ui.updateDialogPage );
274         ui.updateDialogLabel->setText(
275                     qtr( "An error occurred while checking for updates..." ) );
276     }
277 }
278
279 #endif