summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/QtAboutWidget.h')
-rw-r--r--Swift/QtUI/QtAboutWidget.h17
1 files changed, 13 insertions, 4 deletions
diff --git a/Swift/QtUI/QtAboutWidget.h b/Swift/QtUI/QtAboutWidget.h
index fb54c6e..b07c6b0 100644
--- a/Swift/QtUI/QtAboutWidget.h
+++ b/Swift/QtUI/QtAboutWidget.h
@@ -1,38 +1,47 @@
/*
- * Copyright (c) 2010-2016 Isode Limited.
+ * Copyright (c) 2010-2017 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <boost/signals2/connection.hpp>
#include <QDialog>
class QLabel;
+class QProgressBar;
namespace Swift {
+ class AutoUpdater;
class SettingsProvider;
class QtAboutWidget : public QDialog {
Q_OBJECT
public:
- QtAboutWidget(SettingsProvider* settings);
+ QtAboutWidget(SettingsProvider* settings, AutoUpdater* autoUpdater);
private slots:
void handleLicenseClicked();
void handleChangelogClicked();
void handleChangeUpdateChannelClicked();
private:
void openPlainTextWindow(const QString& path);
- void updateUpdateInfoLabel();
+ void updateUpdateInfo();
+
+ protected:
+ void showEvent(QShowEvent*);
private:
SettingsProvider* settingsProvider_;
- QLabel* updateInfoLabel_ = nullptr;
+ AutoUpdater* autoUpdater_;
+ QLabel* updateChannelInfoLabel_ = nullptr;
+ QLabel* updateStateInfoLabel_ = nullptr;
+ QProgressBar* updateProgressBar_ = nullptr;
boost::signals2::scoped_connection settingsChangedConnection_;
+ boost::signals2::scoped_connection autoUpdaterChangeConnection_;
};
}