OSDN Git Service

Added an option to check for "Beta" (pre-release) updates in "Final" releases. Disabl...
[lamexp/LameXP.git] / src / Dialog_Update.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2011 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 "..\tmp\UIC_UpdateDialog.h"
25
26 #include <QDialog>
27
28 class UpdateInfo;
29 class SettingsModel;
30 class QMovie;
31
32 class UpdateDialog : public QDialog, private Ui::UpdateDialog
33 {
34         Q_OBJECT
35
36 public:
37         UpdateDialog(SettingsModel *settings, QWidget *parent = 0);
38         ~UpdateDialog(void);
39
40         bool getSuccess(void) { return m_success; }
41         bool updateReadyToInstall(void) { return m_updateReadyToInstall; }
42
43 private slots:
44         void updateInit(void);
45         void checkForUpdates(void);
46         void linkActivated(const QString &link);
47         void applyUpdate(void);
48         void logButtonClicked(void);
49         void progressBarValueChanged(int value);
50
51 protected:
52         void showEvent(QShowEvent *event);
53         void closeEvent(QCloseEvent *event);
54         void keyPressEvent(QKeyEvent *e);
55
56         const bool m_betaUpdates;
57
58 private:
59         bool tryUpdateMirror(UpdateInfo *updateInfo, const QString &url);
60         bool getFile(const QString &url, const QString &outFile);
61         bool checkSignature(const QString &file, const QString &signature);
62         bool parseVersionInfo(const QString &file, UpdateInfo *updateInfo);
63
64         UpdateInfo *m_updateInfo;
65         QStringList *m_logFile;
66         SettingsModel *m_settings;
67         QMovie *m_animator;
68         
69         const QString m_binaryWGet;
70         const QString m_binaryGnuPG;
71         const QString m_binaryUpdater;
72         const QString m_binaryKeys;
73
74         bool m_success;
75         bool m_updateReadyToInstall;
76 };