2017-10-01 19:49:36 +03:00
|
|
|
#include <QLabel>
|
2017-11-22 20:52:38 +03:00
|
|
|
#include <QStyleOption>
|
2017-11-22 22:13:22 +03:00
|
|
|
#include <QVBoxLayout>
|
2017-10-01 19:49:36 +03:00
|
|
|
|
|
|
|
#include "Config.h"
|
2017-10-28 15:46:39 +03:00
|
|
|
#include "FlatButton.h"
|
2017-10-01 19:49:36 +03:00
|
|
|
#include "Theme.h"
|
|
|
|
|
2017-11-30 21:02:46 +03:00
|
|
|
#include "dialogs/LeaveRoom.h"
|
2017-11-30 14:53:28 +03:00
|
|
|
|
2017-11-30 21:02:46 +03:00
|
|
|
using namespace dialogs;
|
|
|
|
|
|
|
|
LeaveRoom::LeaveRoom(QWidget *parent)
|
2017-10-01 19:49:36 +03:00
|
|
|
: QFrame(parent)
|
|
|
|
{
|
|
|
|
setMaximumSize(400, 400);
|
|
|
|
|
|
|
|
auto layout = new QVBoxLayout(this);
|
|
|
|
layout->setSpacing(30);
|
|
|
|
layout->setMargin(20);
|
|
|
|
|
|
|
|
auto buttonLayout = new QHBoxLayout();
|
|
|
|
buttonLayout->setSpacing(0);
|
|
|
|
buttonLayout->setMargin(0);
|
|
|
|
|
|
|
|
confirmBtn_ = new FlatButton("LEAVE", this);
|
|
|
|
confirmBtn_->setFontSize(conf::btn::fontSize);
|
|
|
|
|
|
|
|
cancelBtn_ = new FlatButton(tr("CANCEL"), this);
|
|
|
|
cancelBtn_->setFontSize(conf::btn::fontSize);
|
|
|
|
|
|
|
|
buttonLayout->addStretch(1);
|
|
|
|
buttonLayout->addWidget(confirmBtn_);
|
|
|
|
buttonLayout->addWidget(cancelBtn_);
|
|
|
|
|
|
|
|
QFont font;
|
|
|
|
font.setPixelSize(conf::headerFontSize);
|
|
|
|
|
|
|
|
auto label = new QLabel(tr("Are you sure you want to leave?"), this);
|
|
|
|
label->setFont(font);
|
|
|
|
|
|
|
|
layout->addWidget(label);
|
|
|
|
layout->addLayout(buttonLayout);
|
|
|
|
|
|
|
|
connect(confirmBtn_, &QPushButton::clicked, [=]() { emit closing(true); });
|
|
|
|
connect(cancelBtn_, &QPushButton::clicked, [=]() { emit closing(false); });
|
|
|
|
}
|
2017-11-22 20:52:38 +03:00
|
|
|
|
|
|
|
void
|
2017-11-30 21:02:46 +03:00
|
|
|
LeaveRoom::paintEvent(QPaintEvent *)
|
2017-11-22 20:52:38 +03:00
|
|
|
{
|
|
|
|
QStyleOption opt;
|
|
|
|
opt.init(this);
|
|
|
|
QPainter p(this);
|
|
|
|
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
|
|
|
|
}
|