2017-04-26 02:23:12 +03:00
|
|
|
/*
|
|
|
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
#include "OverlayModal.h"
|
|
|
|
|
2018-08-11 13:50:56 +03:00
|
|
|
OverlayModal::OverlayModal(QWidget *parent)
|
2017-08-20 13:47:22 +03:00
|
|
|
: OverlayWidget(parent)
|
2018-05-01 19:35:28 +03:00
|
|
|
, color_{QColor(30, 30, 30, 170)}
|
2017-04-26 02:23:12 +03:00
|
|
|
{
|
2018-07-20 12:02:35 +03:00
|
|
|
layout_ = new QVBoxLayout(this);
|
|
|
|
layout_->setSpacing(0);
|
|
|
|
layout_->setContentsMargins(10, 40, 10, 20);
|
2018-07-20 16:15:50 +03:00
|
|
|
setContentAlignment(Qt::AlignCenter);
|
2018-08-11 13:50:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
OverlayModal::setWidget(QWidget *widget)
|
|
|
|
{
|
|
|
|
// Delete the previous widget
|
|
|
|
if (layout_->count() > 0) {
|
|
|
|
QLayoutItem *item;
|
|
|
|
while ((item = layout_->takeAt(0)) != nullptr) {
|
|
|
|
delete item->widget();
|
|
|
|
delete item;
|
|
|
|
}
|
|
|
|
}
|
2017-04-26 02:23:12 +03:00
|
|
|
|
2018-08-11 13:50:56 +03:00
|
|
|
layout_->addWidget(widget);
|
|
|
|
content_ = widget;
|
|
|
|
content_->setFocus();
|
2017-04-26 02:23:12 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
OverlayModal::paintEvent(QPaintEvent *event)
|
2017-04-26 02:23:12 +03:00
|
|
|
{
|
2017-09-10 12:59:21 +03:00
|
|
|
Q_UNUSED(event);
|
2017-04-26 02:23:12 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
QPainter painter(this);
|
|
|
|
painter.fillRect(rect(), color_);
|
2017-04-26 02:23:12 +03:00
|
|
|
}
|
|
|
|
|
2018-01-11 19:10:18 +03:00
|
|
|
void
|
|
|
|
OverlayModal::mousePressEvent(QMouseEvent *e)
|
|
|
|
{
|
2018-01-22 17:47:08 +03:00
|
|
|
if (isDismissible_ && content_ && !content_->geometry().contains(e->pos()))
|
2018-02-17 19:43:40 +03:00
|
|
|
hide();
|
2017-04-26 02:23:12 +03:00
|
|
|
}
|
2018-01-03 19:05:49 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
OverlayModal::keyPressEvent(QKeyEvent *event)
|
|
|
|
{
|
|
|
|
if (event->key() == Qt::Key_Escape) {
|
|
|
|
event->accept();
|
2018-02-17 19:43:40 +03:00
|
|
|
hide();
|
2018-01-03 19:05:49 +03:00
|
|
|
}
|
|
|
|
}
|