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