mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
44 lines
766 B
C++
44 lines
766 B
C++
#pragma once
|
|
|
|
#include <QFrame>
|
|
|
|
#include <mtx/requests.hpp>
|
|
|
|
class QPushButton;
|
|
class TextField;
|
|
class QComboBox;
|
|
class Toggle;
|
|
|
|
namespace dialogs {
|
|
|
|
class CreateRoom : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CreateRoom(QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
void createRoom(const mtx::requests::CreateRoom &request);
|
|
|
|
protected:
|
|
void showEvent(QShowEvent *event) override;
|
|
|
|
private:
|
|
void clearFields();
|
|
|
|
QComboBox *visibilityCombo_;
|
|
QComboBox *presetCombo_;
|
|
|
|
Toggle *directToggle_;
|
|
|
|
QPushButton *confirmBtn_;
|
|
QPushButton *cancelBtn_;
|
|
|
|
TextField *nameInput_;
|
|
TextField *topicInput_;
|
|
TextField *aliasInput_;
|
|
|
|
mtx::requests::CreateRoom request_;
|
|
};
|
|
|
|
} // dialogs
|