2021-03-05 00:35:15 +01:00
|
|
|
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2017-04-26 01:23:12 +02:00
|
|
|
|
2017-05-16 20:46:45 +02:00
|
|
|
#pragma once
|
2017-04-26 01:23:12 +02:00
|
|
|
|
2018-01-03 17:05:49 +01:00
|
|
|
#include <QKeyEvent>
|
2018-01-11 17:10:18 +01:00
|
|
|
#include <QMouseEvent>
|
2017-04-26 01:23:12 +02:00
|
|
|
#include <QPaintEvent>
|
2018-07-20 11:02:35 +02:00
|
|
|
#include <QVBoxLayout>
|
2017-04-26 01:23:12 +02:00
|
|
|
|
|
|
|
#include "OverlayWidget.h"
|
|
|
|
|
|
|
|
class OverlayModal : public OverlayWidget
|
|
|
|
{
|
|
|
|
public:
|
2018-08-11 12:50:56 +02:00
|
|
|
OverlayModal(QWidget *parent);
|
2017-04-26 01:23:12 +02:00
|
|
|
|
2018-01-22 15:47:08 +01:00
|
|
|
void setColor(QColor color) { color_ = color; }
|
|
|
|
void setDismissible(bool state) { isDismissible_ = state; }
|
2017-04-26 01:23:12 +02:00
|
|
|
|
2018-07-20 11:02:35 +02:00
|
|
|
void setContentAlignment(QFlags<Qt::AlignmentFlag> flag) { layout_->setAlignment(flag); }
|
2018-08-11 12:50:56 +02:00
|
|
|
void setWidget(QWidget *widget);
|
2018-07-20 11:02:35 +02:00
|
|
|
|
2017-04-26 01:23:12 +02:00
|
|
|
protected:
|
2017-09-10 11:59:21 +02:00
|
|
|
void paintEvent(QPaintEvent *event) override;
|
2018-01-03 17:05:49 +01:00
|
|
|
void keyPressEvent(QKeyEvent *event) override;
|
2018-01-11 17:10:18 +01:00
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
2017-04-26 01:23:12 +02:00
|
|
|
|
|
|
|
private:
|
2018-01-11 17:10:18 +01:00
|
|
|
QWidget *content_;
|
2018-07-20 11:02:35 +02:00
|
|
|
QVBoxLayout *layout_;
|
|
|
|
|
2017-09-10 11:59:21 +02:00
|
|
|
QColor color_;
|
2017-04-26 01:23:12 +02:00
|
|
|
|
2018-01-22 15:47:08 +01:00
|
|
|
//! Decides whether or not the modal can be removed by clicking into it.
|
|
|
|
bool isDismissible_ = true;
|
2017-04-26 01:23:12 +02:00
|
|
|
};
|