mirror-chatterino2/src/messages/Image.hpp

81 lines
1.9 KiB
C++
Raw Normal View History

2017-06-06 21:18:05 +02:00
#pragma once
2017-01-04 15:12:31 +01:00
2017-01-13 18:59:11 +01:00
#include <QPixmap>
2017-01-11 18:52:09 +01:00
#include <QString>
2018-08-09 18:39:46 +02:00
#include <QThread>
2018-08-10 18:56:17 +02:00
#include <QVector>
2018-08-02 14:23:27 +02:00
#include <atomic>
#include <boost/noncopyable.hpp>
#include <boost/optional.hpp>
2018-08-06 20:00:04 +02:00
#include <boost/variant.hpp>
2018-08-02 14:23:27 +02:00
#include <memory>
#include <mutex>
2018-08-11 17:15:17 +02:00
#include <pajlada/signals/signal.hpp>
#include "common/Aliases.hpp"
2018-08-02 14:23:27 +02:00
#include "common/NullablePtr.hpp"
2018-01-19 22:45:33 +01:00
2017-01-18 21:30:23 +01:00
namespace chatterino {
2018-09-20 13:09:37 +02:00
namespace detail {
2018-08-15 22:46:20 +02:00
template <typename Image>
struct Frame {
Image image;
int duration;
};
class Frames : boost::noncopyable
{
public:
Frames();
Frames(const QVector<Frame<QPixmap>> &frames);
~Frames();
2018-08-06 18:25:47 +02:00
2018-08-15 22:46:20 +02:00
bool animated() const;
void advance();
boost::optional<QPixmap> current() const;
boost::optional<QPixmap> first() const;
2018-08-06 18:25:47 +02:00
2018-08-15 22:46:20 +02:00
private:
QVector<Frame<QPixmap>> items_;
int index_{0};
int durationOffset_{0};
pajlada::Signals::Connection gifTimerConnection_;
};
2018-09-20 13:09:37 +02:00
} // namespace detail
2017-01-18 21:30:23 +01:00
2018-08-02 14:23:27 +02:00
class Image;
using ImagePtr = std::shared_ptr<Image>;
class Image : public std::enable_shared_from_this<Image>, boost::noncopyable
2017-01-04 15:12:31 +01:00
{
public:
2018-08-02 14:23:27 +02:00
static ImagePtr fromUrl(const Url &url, qreal scale = 1);
2018-08-10 18:56:17 +02:00
static ImagePtr fromPixmap(const QPixmap &pixmap, qreal scale = 1);
2018-08-02 14:23:27 +02:00
static ImagePtr getEmpty();
2018-08-06 18:25:47 +02:00
const Url &url() const;
2018-08-10 18:56:17 +02:00
boost::optional<QPixmap> pixmap() const;
2018-08-06 18:25:47 +02:00
qreal scale() const;
2018-08-10 18:56:17 +02:00
bool isEmpty() const;
2018-08-06 18:25:47 +02:00
int width() const;
int height() const;
bool animated() const;
2017-01-11 01:08:20 +01:00
2018-08-02 14:23:27 +02:00
bool operator==(const Image &image) const;
bool operator!=(const Image &image) const;
2017-01-05 16:07:20 +01:00
private:
2018-08-02 14:23:27 +02:00
Image();
Image(const Url &url, qreal scale);
2018-08-10 18:56:17 +02:00
Image(const QPixmap &nonOwning, qreal scale);
2018-08-02 14:23:27 +02:00
void load();
2018-08-06 18:25:47 +02:00
Url url_{};
qreal scale_{1};
bool empty_{false};
bool shouldLoad_{false};
2018-09-20 13:09:37 +02:00
std::unique_ptr<detail::Frames> frames_{};
2018-08-06 18:25:47 +02:00
QObject object_{};
2017-01-04 15:12:31 +01:00
};
2017-04-14 17:52:22 +02:00
} // namespace chatterino