mirror-chatterino2/widgets/chatwidgetview.cpp

193 lines
4.7 KiB
C++
Raw Normal View History

2017-01-18 21:30:23 +01:00
#include "widgets/chatwidgetview.h"
#include "channels.h"
2017-01-18 01:04:54 +01:00
#include "colorscheme.h"
2017-01-18 21:30:23 +01:00
#include "messages/message.h"
#include "messages/wordpart.h"
2017-01-23 16:38:06 +01:00
#include "settings.h"
2017-01-18 21:30:23 +01:00
#include "widgets/chatwidget.h"
2017-01-11 01:08:20 +01:00
2017-01-18 14:48:42 +01:00
#include <math.h>
2017-01-11 01:08:20 +01:00
#include <QPainter>
2017-01-18 01:04:54 +01:00
#include <functional>
2017-01-01 02:30:42 +01:00
2017-01-18 21:30:23 +01:00
namespace chatterino {
namespace widgets {
2017-01-17 00:15:44 +01:00
ChatWidgetView::ChatWidgetView(ChatWidget *parent)
2017-01-11 18:52:09 +01:00
: QWidget()
2017-01-18 04:33:30 +01:00
, chatWidget(parent)
, scrollbar(this)
2017-01-01 02:30:42 +01:00
{
2017-01-26 05:26:21 +01:00
this->scrollbar.setSmallChange(5);
2017-01-22 12:46:35 +01:00
2017-01-23 16:38:06 +01:00
QObject::connect(&Settings::getInstance(), &Settings::wordTypeMaskChanged,
this, &ChatWidgetView::wordTypeMaskChanged);
2017-01-26 04:26:40 +01:00
this->scrollbar.getValueChanged().connect([this] { repaint(); });
2017-01-22 12:46:35 +01:00
}
ChatWidgetView::~ChatWidgetView()
{
2017-01-23 16:38:06 +01:00
QObject::disconnect(&Settings::getInstance(),
&Settings::wordTypeMaskChanged, this,
2017-01-22 19:43:32 +01:00
&ChatWidgetView::wordTypeMaskChanged);
2017-01-01 02:30:42 +01:00
}
2017-01-03 21:19:33 +01:00
bool
ChatWidgetView::layoutMessages()
2017-01-03 21:19:33 +01:00
{
2017-01-18 04:33:30 +01:00
auto c = this->chatWidget->getChannel();
2017-01-11 01:08:20 +01:00
2017-01-11 18:52:09 +01:00
if (c == NULL)
return false;
2017-01-11 01:08:20 +01:00
auto messages = c->getMessagesClone();
bool redraw = false;
2017-01-18 21:52:36 +01:00
for (std::shared_ptr<messages::Message> &message : messages) {
redraw |= message.get()->layout(this->width(), true);
2017-01-11 01:08:20 +01:00
}
2017-01-26 04:26:40 +01:00
updateScrollbar();
return redraw;
}
2017-01-26 04:26:40 +01:00
void
ChatWidgetView::updateScrollbar()
{
auto c = this->chatWidget->getChannel();
if (c == NULL) {
return;
}
// this->scrollbar.setValue(0);
this->scrollbar.setLargeChange(10);
this->scrollbar.setMaximum(c->getMessages().size());
}
void
ChatWidgetView::resizeEvent(QResizeEvent *)
{
2017-01-18 04:33:30 +01:00
this->scrollbar.resize(this->scrollbar.width(), height());
this->scrollbar.move(width() - this->scrollbar.width(), 0);
layoutMessages();
2017-01-03 21:19:33 +01:00
}
2017-01-05 16:07:20 +01:00
2017-01-11 18:52:09 +01:00
void
ChatWidgetView::paintEvent(QPaintEvent *)
2017-01-05 16:07:20 +01:00
{
QPainter painter(this);
2017-01-15 16:38:30 +01:00
painter.setRenderHint(QPainter::SmoothPixmapTransform);
2017-01-18 04:33:30 +01:00
auto c = this->chatWidget->getChannel();
2017-01-05 16:07:20 +01:00
2017-01-18 01:04:54 +01:00
QColor color;
2017-01-24 20:15:12 +01:00
ColorScheme &scheme = ColorScheme::getInstance();
2017-01-18 01:04:54 +01:00
// code for tesing colors
/*
static ConcurrentMap<qreal, QImage *> imgCache;
std::function<QImage *(qreal)> getImg = [&scheme](qreal light) {
return imgCache.getOrAdd(light, [&scheme, &light] {
QImage *img = new QImage(150, 50, QImage::Format_RGB32);
QColor color;
for (int j = 0; j < 50; j++) {
for (qreal i = 0; i < 150; i++) {
color = QColor::fromHslF(i / 150.0, light, j / 50.0);
scheme.normalizeColor(color);
img->setPixelColor(i, j, color);
}
}
return img;
});
};
for (qreal k = 0; k < 4.8; k++) {
auto img = getImg(k / 5);
painter.drawImage(QRect(k * 150, 0, 150, 150), *img);
}
painter.fillRect(QRect(0, 9, 500, 2), QColor(0, 0, 0));*/
2017-01-11 18:52:09 +01:00
if (c == NULL)
return;
2017-01-05 16:07:20 +01:00
2017-01-11 01:08:20 +01:00
auto messages = c->getMessagesClone();
2017-01-18 04:33:30 +01:00
int start = this->scrollbar.getValue();
2017-01-11 01:08:20 +01:00
2017-01-18 04:33:30 +01:00
if (start >= messages.length()) {
return;
}
int y = -(messages[start].get()->getHeight() *
2017-01-18 14:48:42 +01:00
(fmod(this->scrollbar.getValue(), 1)));
2017-01-18 04:33:30 +01:00
for (int i = start; i < messages.size(); ++i) {
2017-01-18 21:52:36 +01:00
messages::Message *message = messages[i].get();
2017-01-18 04:33:30 +01:00
2017-01-18 21:52:36 +01:00
for (messages::WordPart const &wordPart : message->getWordParts()) {
2017-01-13 18:59:11 +01:00
painter.setPen(QColor(255, 0, 0));
2017-01-18 04:33:30 +01:00
painter.drawRect(wordPart.getX(), wordPart.getY() + y,
wordPart.getWidth(), wordPart.getHeight());
2017-01-13 18:59:11 +01:00
2017-01-11 01:08:20 +01:00
// image
2017-01-18 04:33:30 +01:00
if (wordPart.getWord().isImage()) {
2017-01-18 21:52:36 +01:00
messages::LazyLoadedImage &lli = wordPart.getWord().getImage();
2017-01-11 01:08:20 +01:00
2017-01-18 04:33:30 +01:00
const QPixmap *image = lli.getPixmap();
2017-01-11 01:08:20 +01:00
2017-01-11 18:52:09 +01:00
if (image != NULL) {
2017-01-13 18:59:11 +01:00
painter.drawPixmap(
2017-01-18 04:33:30 +01:00
QRect(wordPart.getX(), wordPart.getY() + y,
wordPart.getWidth(), wordPart.getHeight()),
2017-01-11 18:52:09 +01:00
*image);
2017-01-11 01:08:20 +01:00
}
}
// text
2017-01-11 18:52:09 +01:00
else {
2017-01-18 04:33:30 +01:00
QColor color = wordPart.getWord().getColor();
2017-01-18 01:04:54 +01:00
painter.setPen(color);
2017-01-18 04:33:30 +01:00
painter.setFont(wordPart.getWord().getFont());
2017-01-11 18:52:09 +01:00
2017-01-13 18:59:11 +01:00
painter.drawText(
2017-01-18 04:33:30 +01:00
QRectF(wordPart.getX(), wordPart.getY() + y, 10000, 10000),
wordPart.getText(),
QTextOption(Qt::AlignLeft | Qt::AlignTop));
2017-01-11 01:08:20 +01:00
}
}
2017-01-07 20:43:55 +01:00
2017-01-18 04:33:30 +01:00
y += message->getHeight();
2017-01-20 06:10:28 +01:00
if (y > height()) {
break;
}
2017-01-11 01:08:20 +01:00
}
2017-01-05 16:07:20 +01:00
}
2017-01-26 04:26:40 +01:00
void
ChatWidgetView::wheelEvent(QWheelEvent *event)
{
this->scrollbar.setValue(
this->scrollbar.getValue() -
event->delta() / 10.0 *
Settings::getInstance().mouseScrollMultiplier.get(),
true);
}
2017-01-18 21:30:23 +01:00
}
}