mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
0acbc0d2c3
Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
43 lines
894 B
C++
43 lines
894 B
C++
#pragma once
|
|
|
|
#include "messages/Image.hpp"
|
|
|
|
#include <QLabel>
|
|
#include <QWidget>
|
|
|
|
namespace chatterino {
|
|
|
|
class TooltipEntryWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TooltipEntryWidget(QWidget *parent = nullptr);
|
|
TooltipEntryWidget(ImagePtr image, const QString &text, int customWidth,
|
|
int customHeight, QWidget *parent = nullptr);
|
|
|
|
void setImageScale(int w, int h);
|
|
void setWordWrap(bool wrap);
|
|
|
|
void setText(const QString &text);
|
|
void setImage(ImagePtr image);
|
|
void clearImage();
|
|
bool refreshPixmap();
|
|
|
|
bool animated() const;
|
|
bool hasImage() const;
|
|
bool attemptRefresh() const;
|
|
|
|
private:
|
|
QLabel *displayImage_ = nullptr;
|
|
QLabel *displayText_ = nullptr;
|
|
|
|
bool attemptRefresh_ = false;
|
|
|
|
ImagePtr image_ = nullptr;
|
|
int customImgWidth_ = 0;
|
|
int customImgHeight_ = 0;
|
|
};
|
|
|
|
} // namespace chatterino
|