mirror-chatterino2/src/messages/messageref.hpp

71 lines
1.5 KiB
C++
Raw Normal View History

#pragma once
2017-06-11 09:31:45 +02:00
#include "messages/message.hpp"
2017-09-24 18:43:24 +02:00
#include "messages/wordpart.hpp"
#include <QPixmap>
#include <memory>
2017-04-14 17:52:22 +02:00
namespace chatterino {
namespace messages {
2017-04-12 17:46:44 +02:00
class MessageRef;
typedef std::shared_ptr<MessageRef> SharedMessageRef;
class MessageRef
{
public:
2017-04-12 17:46:44 +02:00
MessageRef(SharedMessage message);
2017-04-12 17:46:44 +02:00
Message *getMessage();
int getHeight() const;
bool layout(int width, float scale);
2017-04-12 17:46:44 +02:00
const std::vector<WordPart> &getWordParts() const;
std::shared_ptr<QPixmap> buffer = nullptr;
bool updateBuffer = false;
2017-09-24 18:43:24 +02:00
const Word *tryGetWordPart(QPoint point);
int getLastCharacterIndex() const;
2017-02-17 23:51:35 +01:00
int getSelectionIndex(QPoint position);
bool isCollapsed() const;
void setCollapsed(bool value);
int getCollapsedHeight() const;
int getCollapsedLineCount() const;
bool isDisabled() const;
private:
2017-04-12 17:46:44 +02:00
// variables
2017-09-21 12:15:01 +02:00
SharedMessage message;
2017-09-24 18:43:24 +02:00
std::vector<WordPart> wordParts;
2017-09-21 12:15:01 +02:00
int height = 0;
2017-09-21 12:15:01 +02:00
int currentLayoutWidth = -1;
int fontGeneration = -1;
int emoteGeneration = -1;
float scale = -1;
Word::Flags currentWordTypes = Word::None;
bool collapsed;
int collapsedHeight = 32;
2017-04-12 17:46:44 +02:00
// methods
void rebuild();
void actuallyLayout(int width);
2017-12-28 17:46:36 +01:00
void _alignWordParts(int lineStart, int lineHeight, int width, int &firstLineHeight);
int _updateLineHeight(int currentLineHeight, Word &word, bool overlapEmotes);
void updateTextSizes();
void updateImageSizes();
};
2017-05-27 16:16:39 +02:00
} // namespace messages
} // namespace chatterino