forked from blue/squawk
27 lines
415 B
C++
27 lines
415 B
C++
/*
|
|
* Created by victoria on 2021-05-15.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class ContactSettings;
|
|
}
|
|
|
|
class ContactSettings : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
explicit ContactSettings(QString jid, QWidget *parent = nullptr);
|
|
~ContactSettings() override;
|
|
|
|
const QString jid;
|
|
|
|
private slots:
|
|
void openDeviceList();
|
|
|
|
private:
|
|
QScopedPointer<Ui::ContactSettings> m_ui;
|
|
};
|