mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
31 lines
424 B
C
31 lines
424 B
C
|
#ifndef ABOUTUSER_H
|
||
|
#define ABOUTUSER_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "src/friend.h"
|
||
|
|
||
|
|
||
|
namespace Ui {
|
||
|
class AboutUser;
|
||
|
}
|
||
|
|
||
|
class AboutUser : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AboutUser(QWidget *parent = 0);
|
||
|
~AboutUser();
|
||
|
void setFriend(Friend *f);
|
||
|
void setToxId(ToxId &id);
|
||
|
|
||
|
private:
|
||
|
Ui::AboutUser *ui;
|
||
|
ToxId toxId;
|
||
|
|
||
|
private slots:
|
||
|
void onAcceptedClicked();
|
||
|
};
|
||
|
|
||
|
#endif // ABOUTUSER_H
|