mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
33 lines
506 B
C++
33 lines
506 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(ToxId &toxID, QWidget *parent = 0);
|
|
~AboutUser();
|
|
void setFriend(Friend *f);
|
|
|
|
private:
|
|
Ui::AboutUser *ui;
|
|
ToxId toxId;
|
|
|
|
private slots:
|
|
void onAcceptedClicked();
|
|
void onAutoAcceptClicked();
|
|
void onSelectDirClicked();
|
|
void onRemoveHistoryClicked();
|
|
};
|
|
|
|
#endif // ABOUTUSER_H
|