mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
34 lines
838 B
C++
34 lines
838 B
C++
#pragma once
|
|
|
|
#include "messages/Image.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
class ImageSet
|
|
{
|
|
public:
|
|
ImageSet();
|
|
ImageSet(const ImagePtr &image1, const ImagePtr &image2 = Image::getEmpty(),
|
|
const ImagePtr &image3 = Image::getEmpty());
|
|
ImageSet(const Url &image1, const Url &image2 = {}, const Url &image3 = {});
|
|
|
|
void setImage1(const ImagePtr &image);
|
|
void setImage2(const ImagePtr &image);
|
|
void setImage3(const ImagePtr &image);
|
|
const ImagePtr &getImage1() const;
|
|
const ImagePtr &getImage2() const;
|
|
const ImagePtr &getImage3() const;
|
|
|
|
const ImagePtr &getImage(float scale) const;
|
|
|
|
bool operator==(const ImageSet &other) const;
|
|
bool operator!=(const ImageSet &other) const;
|
|
|
|
private:
|
|
ImagePtr imageX1_;
|
|
ImagePtr imageX2_;
|
|
ImagePtr imageX3_;
|
|
};
|
|
|
|
} // namespace chatterino
|