summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/usersurvey.h
diff options
context:
space:
mode:
Diffstat (limited to 'desktop-widgets/usersurvey.h')
-rw-r--r--desktop-widgets/usersurvey.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/desktop-widgets/usersurvey.h b/desktop-widgets/usersurvey.h
new file mode 100644
index 000000000..1dd5aaab3
--- /dev/null
+++ b/desktop-widgets/usersurvey.h
@@ -0,0 +1,30 @@
+#ifndef USERSURVEY_H
+#define USERSURVEY_H
+
+#include <QDialog>
+class QNetworkAccessManager;
+class QNetworkReply;
+
+namespace Ui {
+ class UserSurvey;
+}
+
+class UserSurvey : public QDialog {
+ Q_OBJECT
+
+public:
+ explicit UserSurvey(QWidget *parent = 0);
+ ~UserSurvey();
+ static QString getVersion();
+
+private
+slots:
+ void on_buttonBox_accepted();
+ void on_buttonBox_rejected();
+ void requestReceived();
+
+private:
+ Ui::UserSurvey *ui;
+ QString os;
+};
+#endif // USERSURVEY_H