matrixion/src/ui/InfoMessage.cpp

90 lines
2.2 KiB
C++
Raw Normal View History

2021-03-05 02:35:15 +03:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
2018-09-30 13:24:36 +03:00
#include "InfoMessage.h"
2018-09-30 14:33:54 +03:00
#include "Config.h"
#include <QDateTime>
#include <QLocale>
#include <QPainter>
2020-06-06 00:34:00 +03:00
#include <QPainterPath>
#include <QPen>
2019-07-05 05:58:06 +03:00
#include <QtGlobal>
constexpr int VPadding = 6;
constexpr int HPadding = 12;
constexpr int HMargin = 20;
InfoMessage::InfoMessage(QWidget *parent)
: QWidget{parent}
{
2018-09-30 13:24:36 +03:00
initFont();
}
InfoMessage::InfoMessage(QString msg, QWidget *parent)
: QWidget{parent}
, msg_{msg}
{
2018-09-30 13:24:36 +03:00
initFont();
2018-09-30 13:24:36 +03:00
QFontMetrics fm{font()};
2019-07-05 05:58:06 +03:00
#if QT_VERSION < QT_VERSION_CHECK(5, 11, 0)
// width deprecated in 5.13
width_ = fm.width(msg_) + HPadding * 2;
#else
width_ = fm.horizontalAdvance(msg_) + HPadding * 2;
#endif
height_ = fm.ascent() + 2 * VPadding;
setFixedHeight(height_ + 2 * HMargin);
}
void
InfoMessage::paintEvent(QPaintEvent *)
{
QPainter p(this);
p.setRenderHint(QPainter::Antialiasing);
2018-09-30 13:24:36 +03:00
p.setFont(font());
// Center the box horizontally & vertically.
auto textRegion = QRectF(width() / 2 - width_ / 2, HMargin, width_, height_);
QPainterPath ppath;
ppath.addRoundedRect(textRegion, height_ / 2, height_ / 2);
p.setPen(Qt::NoPen);
p.fillPath(ppath, boxColor());
p.drawPath(ppath);
p.setPen(QPen(textColor()));
p.drawText(textRegion, Qt::AlignCenter, msg_);
}
DateSeparator::DateSeparator(QDateTime datetime, QWidget *parent)
: InfoMessage{parent}
{
2018-09-30 13:24:36 +03:00
auto now = QDateTime::currentDateTime();
QString fmt = QLocale::system().dateFormat(QLocale::LongFormat);
if (now.date().year() == datetime.date().year()) {
QRegularExpression rx("[^a-zA-Z]*y+[^a-zA-Z]*");
fmt = fmt.remove(rx);
}
msg_ = datetime.date().toString(fmt);
2018-09-30 13:24:36 +03:00
QFontMetrics fm{font()};
2019-07-05 05:58:06 +03:00
#if QT_VERSION < QT_VERSION_CHECK(5, 11, 0)
// width deprecated in 5.13
width_ = fm.width(msg_) + HPadding * 2;
#else
width_ = fm.horizontalAdvance(msg_) + HPadding * 2;
#endif
height_ = fm.ascent() + 2 * VPadding;
setFixedHeight(height_ + 2 * HMargin);
}