2018-01-11 20:16:25 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "messages/layouts/messagelayoutcontainer.hpp"
|
|
|
|
#include "messages/layouts/messagelayoutelement.hpp"
|
|
|
|
#include "messages/message.hpp"
|
|
|
|
#include "messages/selection.hpp"
|
2018-01-28 15:28:02 +01:00
|
|
|
#include "util/flagsenum.hpp"
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
#include <QPixmap>
|
|
|
|
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
#include <cinttypes>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
namespace messages {
|
|
|
|
namespace layouts {
|
2018-04-01 16:43:30 +02:00
|
|
|
|
2018-01-28 16:29:47 +01:00
|
|
|
class MessageLayout : boost::noncopyable
|
|
|
|
{
|
2018-01-11 20:16:25 +01:00
|
|
|
public:
|
2018-05-06 14:38:23 +02:00
|
|
|
enum Flags : uint8_t {
|
|
|
|
RequiresBufferUpdate = 1 << 1,
|
|
|
|
RequiresLayout = 1 << 2,
|
2018-05-24 11:35:50 +02:00
|
|
|
AlternateBackground = 1 << 3,
|
|
|
|
Collapsed = 1 << 4,
|
|
|
|
Expanded = 1 << 5,
|
2018-05-06 14:38:23 +02:00
|
|
|
};
|
2018-01-11 20:16:25 +01:00
|
|
|
|
2018-05-25 13:02:14 +02:00
|
|
|
MessageLayout(MessagePtr m_message);
|
2018-04-06 16:37:30 +02:00
|
|
|
~MessageLayout();
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
Message *getMessage();
|
|
|
|
|
|
|
|
// Height
|
|
|
|
int getHeight() const;
|
|
|
|
|
|
|
|
// Flags
|
2018-01-28 04:07:45 +01:00
|
|
|
util::FlagsEnum<Flags> flags;
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
// Layout
|
2018-05-25 13:02:14 +02:00
|
|
|
bool layout(int width, float m_scale, MessageElement::Flags flags);
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
// Painting
|
2018-01-23 22:48:33 +01:00
|
|
|
void paint(QPainter &painter, int y, int messageIndex, Selection &selection,
|
|
|
|
bool isLastReadMessage, bool isWindowFocused);
|
2018-01-11 20:16:25 +01:00
|
|
|
void invalidateBuffer();
|
|
|
|
void deleteBuffer();
|
2018-04-18 09:12:29 +02:00
|
|
|
void deleteCache();
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
// Elements
|
|
|
|
const MessageLayoutElement *getElementAt(QPoint point);
|
|
|
|
int getLastCharacterIndex() const;
|
|
|
|
int getSelectionIndex(QPoint position);
|
2018-05-23 20:34:37 +02:00
|
|
|
void addSelectionText(QString &str, int from = 0, int to = INT_MAX);
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
// Misc
|
|
|
|
bool isDisabled() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// variables
|
2018-05-25 13:02:14 +02:00
|
|
|
MessagePtr m_message;
|
|
|
|
MessageLayoutContainer m_container;
|
|
|
|
std::shared_ptr<QPixmap> m_buffer = nullptr;
|
|
|
|
bool m_bufferValid = false;
|
2018-01-11 20:16:25 +01:00
|
|
|
|
2018-05-25 13:02:14 +02:00
|
|
|
int m_height = 0;
|
2018-01-11 20:16:25 +01:00
|
|
|
|
2018-05-25 13:02:14 +02:00
|
|
|
int m_currentLayoutWidth = -1;
|
|
|
|
int m_fontGeneration = -1;
|
|
|
|
int m_emoteGeneration = -1;
|
|
|
|
QString m_timestampFormat;
|
|
|
|
float m_scale = -1;
|
|
|
|
unsigned int m_bufferUpdatedCount = 0;
|
2018-01-11 20:16:25 +01:00
|
|
|
|
2018-05-25 13:02:14 +02:00
|
|
|
MessageElement::Flags m_currentWordFlags = MessageElement::None;
|
2018-01-11 20:16:25 +01:00
|
|
|
|
2018-05-25 13:02:14 +02:00
|
|
|
int m_collapsedHeight = 32;
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
// methods
|
2018-01-17 16:52:51 +01:00
|
|
|
void actuallyLayout(int width, MessageElement::Flags flags);
|
2018-01-11 20:16:25 +01:00
|
|
|
void updateBuffer(QPixmap *pixmap, int messageIndex, Selection &selection);
|
|
|
|
};
|
|
|
|
|
2018-04-01 16:43:30 +02:00
|
|
|
using MessageLayoutPtr = std::shared_ptr<MessageLayout>;
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
} // namespace layouts
|
|
|
|
} // namespace messages
|
|
|
|
} // namespace chatterino
|