mirror-chatterino2/src/widgets/chatwidgetheaderbutton.cpp

99 lines
2 KiB
C++
Raw Normal View History

2017-06-11 09:31:45 +02:00
#include "widgets/chatwidgetheaderbutton.hpp"
#include "colorscheme.hpp"
#include "widgets/chatwidgetheader.hpp"
2017-01-15 16:38:30 +01:00
#include <QBrush>
#include <QPainter>
2017-04-14 17:52:22 +02:00
namespace chatterino {
namespace widgets {
2017-01-18 21:30:23 +01:00
ChatWidgetHeaderButton::ChatWidgetHeaderButton(BaseWidget *parent, int spacing)
: BaseWidget(parent)
, mouseOver(false)
, mouseDown(false)
2017-01-15 16:38:30 +01:00
{
setLayout(&this->ui.hbox);
2017-01-15 16:38:30 +01:00
this->ui.label.setAlignment(Qt::AlignCenter);
2017-01-20 06:10:28 +01:00
this->ui.hbox.setMargin(0);
this->ui.hbox.addSpacing(spacing);
this->ui.hbox.addWidget(&this->ui.label);
this->ui.hbox.addSpacing(spacing);
2017-01-15 16:38:30 +01:00
QObject::connect(&this->ui.label, &SignalLabel::mouseUp, this,
&ChatWidgetHeaderButton::labelMouseUp);
QObject::connect(&this->ui.label, &SignalLabel::mouseDown, this,
2017-01-20 06:10:28 +01:00
&ChatWidgetHeaderButton::labelMouseDown);
2017-01-15 16:38:30 +01:00
}
2017-04-12 17:46:44 +02:00
void ChatWidgetHeaderButton::paintEvent(QPaintEvent *)
2017-01-15 16:38:30 +01:00
{
QPainter painter(this);
QBrush brush(this->colorScheme.isLightTheme() ? QColor(0, 0, 0, 32)
: QColor(255, 255, 255, 32));
2017-01-15 16:38:30 +01:00
if (mouseDown) {
2017-01-15 16:38:30 +01:00
painter.fillRect(rect(), brush);
}
if (mouseOver) {
2017-01-15 16:38:30 +01:00
painter.fillRect(rect(), brush);
}
}
2017-04-12 17:46:44 +02:00
void ChatWidgetHeaderButton::mousePressEvent(QMouseEvent *event)
2017-01-15 16:38:30 +01:00
{
if (event->button() == Qt::LeftButton) {
mouseDown = true;
2017-01-15 16:38:30 +01:00
2017-01-26 07:10:46 +01:00
update();
2017-01-15 16:38:30 +01:00
}
}
2017-04-12 17:46:44 +02:00
void ChatWidgetHeaderButton::mouseReleaseEvent(QMouseEvent *event)
2017-01-15 16:38:30 +01:00
{
if (event->button() == Qt::LeftButton) {
mouseDown = false;
2017-01-15 16:38:30 +01:00
2017-01-26 07:10:46 +01:00
update();
2017-01-15 16:38:30 +01:00
emit clicked();
}
}
2017-04-12 17:46:44 +02:00
void ChatWidgetHeaderButton::enterEvent(QEvent *)
2017-01-15 16:38:30 +01:00
{
mouseOver = true;
2017-01-15 16:38:30 +01:00
2017-01-26 07:10:46 +01:00
update();
2017-01-15 16:38:30 +01:00
}
2017-04-12 17:46:44 +02:00
void ChatWidgetHeaderButton::leaveEvent(QEvent *)
2017-01-15 16:38:30 +01:00
{
mouseOver = false;
2017-01-15 16:38:30 +01:00
2017-01-26 07:10:46 +01:00
update();
2017-01-15 16:38:30 +01:00
}
2017-04-12 17:46:44 +02:00
void ChatWidgetHeaderButton::labelMouseUp()
2017-01-15 16:38:30 +01:00
{
mouseDown = false;
2017-01-15 16:38:30 +01:00
2017-01-26 07:10:46 +01:00
update();
2017-01-15 16:38:30 +01:00
emit clicked();
}
2017-04-12 17:46:44 +02:00
void ChatWidgetHeaderButton::labelMouseDown()
2017-01-15 16:38:30 +01:00
{
mouseDown = true;
2017-01-15 16:38:30 +01:00
2017-01-26 07:10:46 +01:00
update();
2017-01-15 16:38:30 +01:00
}
} // namespace widgets
} // namespace chatterino