summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authortastytea <tastytea@tastytea.de>2022-03-11 12:53:23 +0100
committertastytea <tastytea@tastytea.de>2022-03-11 13:15:26 +0100
commita7388a70bed983865797ac22b98eb34673406c19 (patch)
tree342d0e451d5cddfaedbb248f126def9160df419c /src
parentMerge pull request #985 from maltee1/various_bubbles_fixes (diff)
downloadnheko-a7388a70bed983865797ac22b98eb34673406c19.tar.xz
Use standard buttons where possible
Standard buttons are ordered in the right way and sometimes have an
icon.

Bug: https://matrix.to/#/%23nheko%3Anheko.im/%2476PZ2m6YftX8mqGIe9ettKbh_-pEYeVRQSJBfwFzWi0?via=pixie.town&via=matrix.org&via=matrix.flexinos.tech&via=half-shot.uk
Diffstat (limited to 'src')
-rw-r--r--src/dialogs/CreateRoom.cpp16
-rw-r--r--src/dialogs/CreateRoom.h3
2 files changed, 7 insertions, 12 deletions
diff --git a/src/dialogs/CreateRoom.cpp b/src/dialogs/CreateRoom.cpp

index 038289e8..e828ae7c 100644 --- a/src/dialogs/CreateRoom.cpp +++ b/src/dialogs/CreateRoom.cpp
@@ -38,16 +38,10 @@ CreateRoom::CreateRoom(QWidget *parent) conf::modals::WIDGET_MARGIN, conf::modals::WIDGET_MARGIN); - auto buttonLayout = new QHBoxLayout(); - buttonLayout->setSpacing(15); - + buttonBox_ = new QDialogButtonBox(QDialogButtonBox::Cancel); confirmBtn_ = new QPushButton(tr("Create room"), this); confirmBtn_->setDefault(true); - cancelBtn_ = new QPushButton(tr("Cancel"), this); - - buttonLayout->addStretch(1); - buttonLayout->addWidget(cancelBtn_); - buttonLayout->addWidget(confirmBtn_); + buttonBox_->addButton(confirmBtn_, QDialogButtonBox::AcceptRole); QFont font; font.setPointSizeF(font.pointSizeF() * 1.3); @@ -101,9 +95,9 @@ CreateRoom::CreateRoom(QWidget *parent) layout->addLayout(visibilityLayout); layout->addLayout(presetLayout); layout->addLayout(directLayout); - layout->addLayout(buttonLayout); + layout->addWidget(buttonBox_); - connect(confirmBtn_, &QPushButton::clicked, this, [this]() { + connect(buttonBox_, &QDialogButtonBox::accepted, this, [this]() { request_.name = nameInput_->text().toStdString(); request_.topic = topicInput_->text().toStdString(); request_.room_alias_name = aliasInput_->text().toStdString(); @@ -114,7 +108,7 @@ CreateRoom::CreateRoom(QWidget *parent) emit close(); }); - connect(cancelBtn_, &QPushButton::clicked, this, [this]() { + connect(buttonBox_, &QDialogButtonBox::rejected, this, [this]() { clearFields(); emit close(); }); diff --git a/src/dialogs/CreateRoom.h b/src/dialogs/CreateRoom.h
index 54936dfe..c395941d 100644 --- a/src/dialogs/CreateRoom.h +++ b/src/dialogs/CreateRoom.h
@@ -5,6 +5,7 @@ #pragma once +#include <QDialogButtonBox> #include <QFrame> #include <mtx/requests.hpp> @@ -37,7 +38,7 @@ private: Toggle *directToggle_; QPushButton *confirmBtn_; - QPushButton *cancelBtn_; + QDialogButtonBox *buttonBox_; TextField *nameInput_; TextField *topicInput_;