porymap/include/ui/overlay.h

115 lines
2.8 KiB
C
Raw Normal View History

#ifndef OVERLAY_H
#define OVERLAY_H
#include <QList>
#include <QString>
#include <QColor>
#include <QPainter>
2022-10-11 04:47:42 +01:00
#include <QStaticText>
class OverlayItem {
public:
OverlayItem() {}
virtual ~OverlayItem() {};
virtual void render(QPainter *, int, int) {};
};
class OverlayText : public OverlayItem {
public:
2022-10-11 04:47:42 +01:00
OverlayText(const QString inputText, int x, int y, QColor color, int fontSize) :
text(QStaticText(inputText))
{
this->x = x;
this->y = y;
this->color = color;
this->fontSize = fontSize;
}
~OverlayText() {}
virtual void render(QPainter *painter, int x, int y);
private:
2022-10-11 04:47:42 +01:00
const QStaticText text;
int x;
int y;
QColor color;
int fontSize;
};
class OverlayRect : public OverlayItem {
public:
OverlayRect(int x, int y, int width, int height, QColor color, bool filled) {
this->x = x;
this->y = y;
this->width = width;
this->height = height;
this->color = color;
this->filled = filled;
}
~OverlayRect() {}
virtual void render(QPainter *painter, int x, int y);
private:
int x;
int y;
int width;
int height;
QColor color;
bool filled;
};
class OverlayImage : public OverlayItem {
public:
OverlayImage(int x, int y, QImage image) {
this->x = x;
this->y = y;
this->image = image;
}
~OverlayImage() {}
virtual void render(QPainter *painter, int x, int y);
private:
int x;
int y;
QImage image;
};
class Overlay
{
public:
Overlay() {
this->x = 0;
this->y = 0;
this->hidden = false;
2021-12-31 21:12:04 +00:00
this->opacity = 1.0;
this->clippingRect = nullptr;
}
~Overlay() {
this->clearItems();
}
bool getHidden();
2021-11-30 18:38:06 +00:00
void setHidden(bool hidden);
2021-12-31 21:12:04 +00:00
int getOpacity();
void setOpacity(int opacity);
int getX();
int getY();
void setX(int x);
void setY(int y);
void setClippingRect(QRectF rect);
void clearClippingRect();
void setPosition(int x, int y);
void move(int deltaX, int deltaY);
2021-11-30 17:58:39 +00:00
void renderItems(QPainter *painter);
QList<OverlayItem*> getItems();
void clearItems();
2022-10-11 04:47:42 +01:00
void addText(const QString text, int x, int y, QString color = "#000000", int fontSize = 12);
void addRect(int x, int y, int width, int height, QString color = "#000000", bool filled = false);
bool addImage(int x, int y, QString filepath, bool useCache = true, int width = -1, int height = -1, int xOffset = 0, int yOffset = 0, qreal hScale = 1, qreal vScale = 1, QList<QRgb> palette = QList<QRgb>(), bool setTransparency = false);
bool addImage(int x, int y, QImage image);
private:
QList<OverlayItem*> items;
int x;
int y;
2021-11-30 18:38:06 +00:00
bool hidden;
2021-12-31 21:12:04 +00:00
qreal opacity;
QRectF *clippingRect;
};
#endif // OVERLAY_H