Build fix.
[LameXP.git] / src / Dialog_Update.h
bloba8f358139da12916d8132e4c0d25133bcb541c29
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2017 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, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
23 #pragma once
25 #include <QDialog>
27 class SettingsModel;
28 class QMovie;
30 //MUtils forward declaration
31 namespace MUtils
33 class UpdateChecker;
34 class Taskbar7;
37 //UIC forward declartion
38 namespace Ui
40 class UpdateDialog;
43 //UpdateDialog class
44 class UpdateDialog : public QDialog
46 Q_OBJECT
48 public:
49 UpdateDialog(const SettingsModel *const settings, QWidget *parent = 0);
50 ~UpdateDialog(void);
52 bool getSuccess(void) { return m_success; }
53 bool updateReadyToInstall(void) { return m_updateReadyToInstall; }
55 private slots:
56 void updateInit(void);
57 void checkForUpdates(void);
58 void linkActivated(const QString &link);
59 void applyUpdate(void);
60 void logButtonClicked(void);
61 void progressBarValueChanged(int value);
63 void threadStatusChanged(const int status);
64 void threadProgressChanged(const int progress);
65 void threadMessageLogged(const QString &message);
66 void threadFinished(void);
68 protected:
69 virtual void showEvent(QShowEvent *event);
70 virtual void closeEvent(QCloseEvent *event);
71 virtual void keyPressEvent(QKeyEvent *e);
72 virtual bool event(QEvent *e);
74 const bool m_betaUpdates;
76 private:
77 Ui::UpdateDialog *const ui; //for Qt UIC
78 const SettingsModel *const m_settings;
80 const QString m_binaryWGet;
81 const QString m_binaryMCat;
82 const QString m_binaryGnuPG;
83 const QString m_binaryKeys;
84 const QString m_binaryUpdater;
86 QScopedPointer<MUtils::Taskbar7> m_taskbar;
87 QScopedPointer<MUtils::UpdateChecker> m_thread;
88 QScopedPointer<QStringList> m_logFile;
89 QScopedPointer<QMovie> m_animator;
91 unsigned long m_updaterProcess;
93 bool m_success;
94 bool m_updateReadyToInstall;
95 bool m_firstShow;
97 void testKnownHosts(void);