mirror-chatterino2/src/singletons/helper/GifTimer.cpp

30 lines
655 B
C++
Raw Normal View History

2018-06-26 14:09:39 +02:00
#include "singletons/helper/GifTimer.hpp"
2018-06-26 14:09:39 +02:00
#include "Application.hpp"
2018-06-28 19:46:45 +02:00
#include "singletons/Settings.hpp"
2018-06-26 14:09:39 +02:00
#include "singletons/WindowManager.hpp"
namespace chatterino {
void GIFTimer::initialize()
{
this->timer.setInterval(30);
getSettings()->enableGifAnimations.connect([this](bool enabled, auto) {
if (enabled) {
this->timer.start();
} else {
this->timer.stop();
}
});
QObject::connect(&this->timer, &QTimer::timeout, [this] {
this->signal.invoke();
// fourtf:
auto app = getApp();
app->windows->repaintGifEmotes();
});
}
} // namespace chatterino