OSDN Git Service

7bc104940adc01552d672141fa0fa77649a1b728
[lamexp/LameXP.git] / src / Dialog_Update.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 #include <QDialog>
25
26 class UpdateInfo;
27 class SettingsModel;
28 class QMovie;
29
30 //UIC forward declartion
31 namespace Ui {
32         class UpdateDialog;
33 }
34
35 //UpdateDialog class
36 class UpdateDialog : public QDialog
37 {
38         Q_OBJECT
39
40 public:
41         UpdateDialog(SettingsModel *settings, QWidget *parent = 0);
42         ~UpdateDialog(void);
43
44         bool getSuccess(void) { return m_success; }
45         bool updateReadyToInstall(void) { return m_updateReadyToInstall; }
46
47 private slots:
48         void updateInit(void);
49         void checkForUpdates(void);
50         void linkActivated(const QString &link);
51         void applyUpdate(void);
52         void logButtonClicked(void);
53         void progressBarValueChanged(int value);
54
55 protected:
56         virtual void showEvent(QShowEvent *event);
57         virtual void closeEvent(QCloseEvent *event);
58         virtual void keyPressEvent(QKeyEvent *e);
59         virtual bool winEvent(MSG *message, long *result);
60         virtual bool event(QEvent *e);
61
62         const bool m_betaUpdates;
63
64 private:
65         Ui::UpdateDialog *ui; //for Qt UIC
66
67         bool tryUpdateMirror(UpdateInfo *updateInfo, const QString &url);
68         bool getFile(const QString &url, const QString &outFile, unsigned int maxRedir = 5, bool *httpOk = NULL);
69         bool checkSignature(const QString &file, const QString &signature);
70         bool parseVersionInfo(const QString &file, UpdateInfo *updateInfo);
71         void testKnownWebSites(void);
72
73         UpdateInfo *m_updateInfo;
74         QStringList *m_logFile;
75         SettingsModel *m_settings;
76         QMovie *m_animator;
77         
78         const QString m_binaryWGet;
79         const QString m_binaryGnuPG;
80         const QString m_binaryUpdater;
81         const QString m_binaryKeys;
82         unsigned long m_updaterProcess;
83
84         bool m_success;
85         bool m_updateReadyToInstall;
86         bool m_firstShow;
87 };