1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/widget/about/aboutuser.h

31 lines
424 B
C
Raw Normal View History

2015-11-10 04:56:22 +08:00
#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