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

33 lines
506 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(ToxId &toxID, QWidget *parent = 0);
2015-11-10 04:56:22 +08:00
~AboutUser();
void setFriend(Friend *f);
private:
Ui::AboutUser *ui;
ToxId toxId;
private slots:
void onAcceptedClicked();
void onAutoAcceptClicked();
void onSelectDirClicked();
void onRemoveHistoryClicked();
2015-11-10 04:56:22 +08:00
};
#endif // ABOUTUSER_H