2017-04-27 20:26:05 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2014-06-13 10:56:46 -07:00
|
|
|
#ifndef USERSURVEY_H
|
|
|
|
#define USERSURVEY_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2014-06-30 07:19:22 -07:00
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
2014-06-13 10:56:46 -07:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class UserSurvey;
|
|
|
|
}
|
|
|
|
|
|
|
|
class UserSurvey : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit UserSurvey(QWidget *parent = 0);
|
|
|
|
~UserSurvey();
|
2014-07-31 11:20:11 -07:00
|
|
|
static QString getVersion();
|
2014-06-13 10:56:46 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
slots:
|
|
|
|
void on_buttonBox_accepted();
|
|
|
|
void on_buttonBox_rejected();
|
2014-07-16 17:20:21 -03:00
|
|
|
void requestReceived();
|
2014-06-13 10:56:46 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::UserSurvey *ui;
|
2014-06-30 07:19:22 -07:00
|
|
|
QString os;
|
2014-06-13 10:56:46 -07:00
|
|
|
};
|
|
|
|
#endif // USERSURVEY_H
|