aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/help/AboutDialog.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-08-15 15:00:19 +0000
committerSaturneric <[email protected]>2021-08-15 15:00:19 +0000
commit805f8b2f36007317a750cf6aecb633ad6ad2d4e4 (patch)
tree830b8c558dcb162c49d8609685e5c152a15afcfc /include/ui/help/AboutDialog.h
parentBeautify UI; Improve Functions; (diff)
downloadGpgFrontend-805f8b2f36007317a750cf6aecb633ad6ad2d4e4.tar.gz
GpgFrontend-805f8b2f36007317a750cf6aecb633ad6ad2d4e4.zip
Bugs Fixed; Improve Functions;
Diffstat (limited to 'include/ui/help/AboutDialog.h')
-rw-r--r--include/ui/help/AboutDialog.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/ui/help/AboutDialog.h b/include/ui/help/AboutDialog.h
index 74391b5a..dee2c018 100644
--- a/include/ui/help/AboutDialog.h
+++ b/include/ui/help/AboutDialog.h
@@ -72,6 +72,12 @@ public:
explicit UpdateTab(QWidget *parent = nullptr);
void getLatestVersion();
+
+private slots:
+ void processReplyDataFromUpdateServer(const QByteArray& data);;
+
+signals:
+ void replyFromUpdateServer(QByteArray data);
};
/**
@@ -83,6 +89,13 @@ Q_OBJECT
public:
explicit AboutDialog(int defaultIndex, QWidget *parent);
+
+
+protected:
+ void showEvent(QShowEvent *ev) override;
+
+private:
+ UpdateTab *updateTab;
};
#endif // __ABOUTDIALOG_H__