mirror-chatterino2/src/util/emotemap.hpp

32 lines
627 B
C++
Raw Normal View History

2017-12-31 22:58:35 +01:00
#pragma once
#include "messages/image.hpp"
2017-12-31 22:58:35 +01:00
#include "util/concurrentmap.hpp"
namespace chatterino {
namespace util {
struct EmoteData {
EmoteData() = default;
2017-12-31 22:58:35 +01:00
EmoteData(messages::Image *_image)
: image1x(_image)
2017-12-31 22:58:35 +01:00
{
}
// Emotes must have a 1x image to be valid
bool isValid() const
{
return this->image1x != nullptr;
}
messages::Image *image1x = nullptr;
messages::Image *image2x = nullptr;
messages::Image *image3x = nullptr;
2017-12-31 22:58:35 +01:00
};
using EmoteMap = ConcurrentMap<QString, EmoteData>;
} // namespace util
} // namespace chatterino