#pragma once #include "messages/message.hpp" #include "messages/wordpart.hpp" #include #include namespace chatterino { namespace messages { class MessageRef; typedef std::shared_ptr SharedMessageRef; class MessageRef { public: MessageRef(SharedMessage message); Message *getMessage(); int getHeight() const; bool layout(int width); const std::vector &getWordParts() const; std::shared_ptr buffer = nullptr; bool updateBuffer = false; const Word *tryGetWordPart(QPoint point); int getSelectionIndex(QPoint position); private: // variables SharedMessage message; std::vector wordParts; int height = 0; int currentLayoutWidth = -1; int fontGeneration = -1; int emoteGeneration = -1; Word::Type currentWordTypes = Word::None; // methods void actuallyLayout(int width); void alignWordParts(int lineStart, int lineHeight, int width); void updateTextSizes(); void updateImageSizes(); }; } // namespace messages } // namespace chatterino