2021-05-15 09:28:43 +00:00
|
|
|
/*
|
|
|
|
* Created by victoria on 2021-05-15.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ContactSettings;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ContactSettings : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2021-07-22 17:45:39 +00:00
|
|
|
explicit ContactSettings(QString jid, QWidget *parent = nullptr);
|
2021-05-15 09:28:43 +00:00
|
|
|
~ContactSettings() override;
|
|
|
|
|
2021-07-22 17:45:39 +00:00
|
|
|
const QString jid;
|
|
|
|
|
2021-05-15 09:28:43 +00:00
|
|
|
private slots:
|
|
|
|
void openDeviceList();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QScopedPointer<Ui::ContactSettings> m_ui;
|
|
|
|
};
|