comunicwatcher/aboutdialog.h

30 lines
408 B
C
Raw Normal View History

2020-06-13 16:05:06 +00:00
#pragma once
2020-06-14 13:00:45 +00:00
#include "userhelper.h"
2020-06-13 16:05:06 +00:00
#include <QDialog>
namespace Ui {
class AboutDialog;
2020-06-13 16:05:06 +00:00
}
class AboutDialog : public QDialog
2020-06-13 16:05:06 +00:00
{
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = nullptr);
~AboutDialog();
2020-06-13 16:05:06 +00:00
2020-06-14 13:00:45 +00:00
private slots:
void getUserCallback(const User &u);
2020-06-13 16:05:06 +00:00
private:
2020-06-14 12:44:32 +00:00
void onGotUserId(int userID);
// Class members
Ui::AboutDialog *ui;
2020-06-14 13:00:45 +00:00
UserHelper mUserHelper;
2020-06-13 16:05:06 +00:00
};