OSDN Git Service

Changed detection of QAAC for the new fully-static build.
[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         bool winEvent(MSG *message, long *result);
56
57         const bool m_betaUpdates;
58
59 private:
60         bool tryUpdateMirror(UpdateInfo *updateInfo, const QString &url);
61         bool getFile(const QString &url, const QString &outFile, unsigned int maxRedir = 5);
62         bool checkSignature(const QString &file, const QString &signature);
63         bool parseVersionInfo(const QString &file, UpdateInfo *updateInfo);
64
65         UpdateInfo *m_updateInfo;
66         QStringList *m_logFile;
67         SettingsModel *m_settings;
68         QMovie *m_animator;
69         
70         const QString m_binaryWGet;
71         const QString m_binaryGnuPG;
72         const QString m_binaryUpdater;
73         const QString m_binaryKeys;
74
75         bool m_success;
76         bool m_updateReadyToInstall;
77 };