2018-01-11 20:16:25 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QRect>
|
|
|
|
#include <QString>
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
#include <climits>
|
|
|
|
|
2018-10-02 12:56:10 +02:00
|
|
|
#include "common/FlagsEnum.hpp"
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "messages/Link.hpp"
|
|
|
|
#include "messages/MessageColor.hpp"
|
2018-10-02 12:56:10 +02:00
|
|
|
#include "messages/MessageElement.hpp"
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
class QPainter;
|
|
|
|
|
|
|
|
namespace chatterino {
|
2018-04-03 02:55:32 +02:00
|
|
|
class MessageElement;
|
2018-08-11 22:23:06 +02:00
|
|
|
class Image;
|
|
|
|
using ImagePtr = std::shared_ptr<Image>;
|
|
|
|
enum class FontStyle : uint8_t;
|
2018-01-11 20:16:25 +01:00
|
|
|
|
2018-04-03 02:55:32 +02:00
|
|
|
class MessageLayoutElement : boost::noncopyable
|
|
|
|
{
|
2018-01-11 20:16:25 +01:00
|
|
|
public:
|
2018-07-06 19:23:47 +02:00
|
|
|
MessageLayoutElement(MessageElement &creator_, const QSize &size);
|
2018-04-06 16:37:30 +02:00
|
|
|
virtual ~MessageLayoutElement();
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
const QRect &getRect() const;
|
|
|
|
MessageElement &getCreator() const;
|
|
|
|
void setPosition(QPoint point);
|
|
|
|
bool hasTrailingSpace() const;
|
|
|
|
|
|
|
|
MessageLayoutElement *setTrailingSpace(bool value);
|
2018-07-06 19:23:47 +02:00
|
|
|
MessageLayoutElement *setLink(const Link &link_);
|
2018-09-30 18:18:30 +02:00
|
|
|
MessageLayoutElement *setText(const QString &text_);
|
2018-01-11 20:16:25 +01:00
|
|
|
|
2018-08-06 21:17:03 +02:00
|
|
|
virtual void addCopyTextToString(QString &str, int from = 0,
|
|
|
|
int to = INT_MAX) const = 0;
|
2018-09-30 18:18:30 +02:00
|
|
|
virtual int getSelectionIndexCount() const = 0;
|
2018-01-11 20:16:25 +01:00
|
|
|
virtual void paint(QPainter &painter) = 0;
|
2018-01-13 02:13:59 +01:00
|
|
|
virtual void paintAnimated(QPainter &painter, int yOffset) = 0;
|
2018-09-30 18:18:30 +02:00
|
|
|
virtual int getMouseOverIndex(const QPoint &abs) const = 0;
|
2018-01-16 00:26:04 +01:00
|
|
|
virtual int getXFromIndex(int index) = 0;
|
2018-01-17 14:14:31 +01:00
|
|
|
const Link &getLink() const;
|
2018-09-30 18:18:30 +02:00
|
|
|
const QString &getText() const;
|
2018-10-02 12:56:10 +02:00
|
|
|
FlagsEnum<MessageElementFlag> getFlags() const;
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
bool trailingSpace = true;
|
|
|
|
|
|
|
|
private:
|
2018-09-30 18:18:30 +02:00
|
|
|
QString text_;
|
2018-07-06 19:23:47 +02:00
|
|
|
QRect rect_;
|
|
|
|
Link link_;
|
|
|
|
MessageElement &creator_;
|
2018-01-11 20:16:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// IMAGE
|
|
|
|
class ImageLayoutElement : public MessageLayoutElement
|
|
|
|
{
|
|
|
|
public:
|
2018-08-06 21:17:03 +02:00
|
|
|
ImageLayoutElement(MessageElement &creator, ImagePtr image,
|
|
|
|
const QSize &size);
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
protected:
|
2018-08-06 21:17:03 +02:00
|
|
|
void addCopyTextToString(QString &str, int from = 0,
|
|
|
|
int to = INT_MAX) const override;
|
2018-09-30 18:18:30 +02:00
|
|
|
int getSelectionIndexCount() const override;
|
2018-04-01 16:43:30 +02:00
|
|
|
void paint(QPainter &painter) override;
|
|
|
|
void paintAnimated(QPainter &painter, int yOffset) override;
|
2018-09-30 18:18:30 +02:00
|
|
|
int getMouseOverIndex(const QPoint &abs) const override;
|
2018-04-01 16:43:30 +02:00
|
|
|
int getXFromIndex(int index) override;
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
private:
|
2018-08-02 14:23:27 +02:00
|
|
|
ImagePtr image_;
|
2018-01-11 20:16:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// TEXT
|
|
|
|
class TextLayoutElement : public MessageLayoutElement
|
|
|
|
{
|
|
|
|
public:
|
2018-08-06 21:17:03 +02:00
|
|
|
TextLayoutElement(MessageElement &creator_, QString &text,
|
|
|
|
const QSize &size, QColor color, FontStyle style,
|
|
|
|
float scale);
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
protected:
|
2018-08-06 21:17:03 +02:00
|
|
|
void addCopyTextToString(QString &str, int from = 0,
|
|
|
|
int to = INT_MAX) const override;
|
2018-09-30 18:18:30 +02:00
|
|
|
int getSelectionIndexCount() const override;
|
2018-04-01 16:43:30 +02:00
|
|
|
void paint(QPainter &painter) override;
|
|
|
|
void paintAnimated(QPainter &painter, int yOffset) override;
|
2018-09-30 18:18:30 +02:00
|
|
|
int getMouseOverIndex(const QPoint &abs) const override;
|
2018-04-01 16:43:30 +02:00
|
|
|
int getXFromIndex(int index) override;
|
2018-01-11 20:16:25 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
QColor color;
|
|
|
|
FontStyle style;
|
|
|
|
float scale;
|
|
|
|
};
|
2018-01-17 14:14:31 +01:00
|
|
|
|
|
|
|
// TEXT ICON
|
|
|
|
// two lines of text (characters) in the size of a normal chat badge
|
|
|
|
class TextIconLayoutElement : public MessageLayoutElement
|
|
|
|
{
|
|
|
|
public:
|
2018-08-06 21:17:03 +02:00
|
|
|
TextIconLayoutElement(MessageElement &creator_, const QString &line1,
|
|
|
|
const QString &line2, float scale, const QSize &size);
|
2018-01-17 14:14:31 +01:00
|
|
|
|
|
|
|
protected:
|
2018-08-06 21:17:03 +02:00
|
|
|
void addCopyTextToString(QString &str, int from = 0,
|
|
|
|
int to = INT_MAX) const override;
|
2018-09-30 18:18:30 +02:00
|
|
|
int getSelectionIndexCount() const override;
|
2018-04-01 16:43:30 +02:00
|
|
|
void paint(QPainter &painter) override;
|
|
|
|
void paintAnimated(QPainter &painter, int yOffset) override;
|
2018-09-30 18:18:30 +02:00
|
|
|
int getMouseOverIndex(const QPoint &abs) const override;
|
2018-04-01 16:43:30 +02:00
|
|
|
int getXFromIndex(int index) override;
|
2018-01-17 14:14:31 +01:00
|
|
|
|
|
|
|
private:
|
2018-04-14 21:59:51 +02:00
|
|
|
float scale;
|
2018-01-17 14:14:31 +01:00
|
|
|
QString line1;
|
|
|
|
QString line2;
|
|
|
|
};
|
2018-04-01 16:43:30 +02:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
} // namespace chatterino
|