OSDN Git Service

Updated Russian translation. Thanks to Иван Митин <bardak@inbox.ru>.
[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 "..\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         virtual void showEvent(QShowEvent *event);
53         virtual void closeEvent(QCloseEvent *event);
54         virtual void keyPressEvent(QKeyEvent *e);
55         virtual bool winEvent(MSG *message, long *result);
56         virtual bool event(QEvent *e);
57
58         const bool m_betaUpdates;
59
60 private:
61         bool tryUpdateMirror(UpdateInfo *updateInfo, const QString &url);
62         bool getFile(const QString &url, const QString &outFile, unsigned int maxRedir = 5, bool *httpOk = NULL);
63         bool checkSignature(const QString &file, const QString &signature);
64         bool parseVersionInfo(const QString &file, UpdateInfo *updateInfo);
65         void testKnownWebSites(void);
66
67         UpdateInfo *m_updateInfo;
68         QStringList *m_logFile;
69         SettingsModel *m_settings;
70         QMovie *m_animator;
71         
72         const QString m_binaryWGet;
73         const QString m_binaryGnuPG;
74         const QString m_binaryUpdater;
75         const QString m_binaryKeys;
76         unsigned long m_updaterProcess;
77
78         bool m_success;
79         bool m_updateReadyToInstall;
80         bool m_firstShow;
81 };