| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989 |
- // This file is part of Desktop App Toolkit,
- // a set of libraries for developing nice desktop applications.
- //
- // For license and copyright information please follow this link:
- // https://github.com/desktop-app/legal/blob/master/LEGAL
- //
- #include "ui/text/custom_emoji_instance.h"
- #include "ui/effects/animation_value.h"
- #include "ui/effects/frame_generator.h"
- #include "ui/dynamic_image.h"
- #include "ui/ui_utility.h"
- #include "ui/painter.h"
- #include <crl/crl_async.h>
- #include <lz4.h>
- class QPainter;
- namespace Ui::CustomEmoji {
- namespace {
- constexpr auto kMaxFrames = 180;
- constexpr auto kCacheVersion = 1;
- constexpr auto kPreloadFrames = 3;
- struct CacheHeader {
- int version = 0;
- int size = 0;
- int frames = 0;
- int length = 0;
- };
- void PaintScaledImage(
- QPainter &p,
- const QRect &target,
- const Cache::Frame &frame,
- const Context &context) {
- static QImage PaintCache;
- const auto cache = context.internal.colorized ? &PaintCache : nullptr;
- auto q = std::optional<QPainter>();
- if (cache) {
- const auto ratio = style::DevicePixelRatio();
- if (cache->width() < target.width() * ratio
- || cache->height() < target.height() * ratio) {
- *cache = QImage(
- std::max(cache->width(), target.width() * ratio),
- std::max(cache->height(), target.height() * ratio),
- QImage::Format_ARGB32_Premultiplied);
- cache->setDevicePixelRatio(ratio);
- }
- q.emplace(cache);
- q->setCompositionMode(QPainter::CompositionMode_Source);
- if (context.scaled) {
- q->fillRect(QRect(QPoint(), target.size()), Qt::transparent);
- }
- q->translate(-target.topLeft());
- }
- const auto to = q ? &*q : &p;
- if (context.scaled) {
- const auto sx = anim::interpolate(
- target.width() / 2,
- 0,
- context.scale);
- const auto sy = (target.height() == target.width())
- ? sx
- : anim::interpolate(target.height() / 2, 0, context.scale);
- const auto scaled = target.marginsRemoved({ sx, sy, sx, sy });
- if (frame.source.isNull()) {
- to->drawImage(scaled, *frame.image);
- } else {
- to->drawImage(scaled, *frame.image, frame.source);
- }
- } else if (frame.source.isNull()) {
- to->drawImage(target, *frame.image);
- } else {
- to->drawImage(target, *frame.image, frame.source);
- }
- if (q) {
- q.reset();
- const auto ratio = style::DevicePixelRatio();
- const auto source = QRect(QPoint(), target.size() * ratio);
- const auto &color = context.textColor;
- style::colorizeImage(*cache, color, cache, source, {}, true);
- p.drawImage(target, *cache, source);
- }
- }
- } // namespace
- QColor PreviewColorFromTextColor(QColor color) {
- color.setAlpha((color.alpha() + 1) / 8);
- return color;
- }
- Preview::Preview(QPainterPath path, float64 scale)
- : _data(ScaledPath{ std::move(path), scale }) {
- }
- Preview::Preview(QImage image, bool exact)
- : _data(Image{ .data = std::move(image), .exact = exact }) {
- }
- void Preview::paint(QPainter &p, const Context &context) {
- if (const auto path = std::get_if<ScaledPath>(&_data)) {
- paintPath(p, context, *path);
- } else if (const auto image = std::get_if<Image>(&_data)) {
- const auto &data = image->data;
- const auto factor = style::DevicePixelRatio();
- const auto rect = QRect(context.position, data.size() / factor);
- PaintScaledImage(p, rect, { .image = &data }, context);
- }
- }
- bool Preview::isImage() const {
- return v::is<Image>(_data);
- }
- bool Preview::isExactImage() const {
- if (const auto image = std::get_if<Image>(&_data)) {
- return image->exact;
- }
- return false;
- }
- QImage Preview::image() const {
- if (const auto image = std::get_if<Image>(&_data)) {
- return image->data;
- }
- return QImage();
- }
- void Preview::paintPath(
- QPainter &p,
- const Context &context,
- const ScaledPath &path) {
- auto hq = PainterHighQualityEnabler(p);
- p.setBrush(PreviewColorFromTextColor(context.textColor));
- p.setPen(Qt::NoPen);
- const auto scale = path.scale;
- const auto required = (scale != 1.) || context.scaled;
- if (required) {
- p.save();
- }
- p.translate(context.position);
- if (required) {
- p.scale(scale, scale);
- const auto center = QPoint(
- context.size.width() / 2,
- context.size.height() / 2);
- if (context.scaled) {
- p.translate(center);
- p.scale(context.scale, context.scale);
- p.translate(-center);
- }
- }
- p.drawPath(path.path);
- if (required) {
- p.restore();
- } else {
- p.translate(-context.position);
- }
- }
- Cache::Cache(int size) : _size(size) {
- }
- std::optional<Cache> Cache::FromSerialized(
- const QByteArray &serialized,
- int requestedSize) {
- if (serialized.size() <= sizeof(CacheHeader)) {
- return {};
- }
- auto header = CacheHeader();
- memcpy(&header, serialized.data(), sizeof(header));
- const auto size = header.size;
- if (size != requestedSize
- || header.frames <= 0
- || header.frames >= kMaxFrames
- || header.length <= 0
- || header.length > (size * size * header.frames * sizeof(int32))
- || (serialized.size() != sizeof(CacheHeader)
- + header.length
- + (header.frames * sizeof(Cache(0)._durations[0])))) {
- return {};
- }
- const auto rows = (header.frames + kPerRow - 1) / kPerRow;
- const auto columns = std::min(header.frames, kPerRow);
- auto durations = std::vector<uint16>(header.frames, 0);
- auto full = QImage(
- columns * size,
- rows * size,
- QImage::Format_ARGB32_Premultiplied);
- Assert(full.bytesPerLine() == full.width() * sizeof(int32));
- const auto decompressed = LZ4_decompress_safe(
- serialized.data() + sizeof(CacheHeader),
- reinterpret_cast<char*>(full.bits()),
- header.length,
- full.bytesPerLine() * full.height());
- if (decompressed <= 0) {
- return {};
- }
- memcpy(
- durations.data(),
- serialized.data() + sizeof(CacheHeader) + header.length,
- header.frames * sizeof(durations[0]));
- auto result = Cache(size);
- result._finished = true;
- result._full = std::move(full);
- result._frames = header.frames;
- result._durations = std::move(durations);
- return result;
- }
- QByteArray Cache::serialize() {
- Expects(_finished);
- Expects(_durations.size() == _frames);
- Expects(_full.bytesPerLine() == sizeof(int32) * _full.width());
- auto header = CacheHeader{
- .version = kCacheVersion,
- .size = _size,
- .frames = _frames,
- };
- const auto input = _full.width() * _full.height() * sizeof(int32);
- const auto max = sizeof(CacheHeader)
- + LZ4_compressBound(input)
- + (_frames * sizeof(_durations[0]));
- auto result = QByteArray(max, Qt::Uninitialized);
- header.length = LZ4_compress_default(
- reinterpret_cast<const char*>(_full.constBits()),
- result.data() + sizeof(CacheHeader),
- input,
- result.size() - sizeof(CacheHeader));
- Assert(header.length > 0);
- memcpy(result.data(), &header, sizeof(CacheHeader));
- memcpy(
- result.data() + sizeof(CacheHeader) + header.length,
- _durations.data(),
- _frames * sizeof(_durations[0]));
- result.resize(sizeof(CacheHeader)
- + header.length
- + _frames * sizeof(_durations[0]));
- return result;
- }
- int Cache::frames() const {
- return _frames;
- }
- bool Cache::readyInDefaultState() const {
- return (_frames > 0) && !_frame;
- }
- Cache::Frame Cache::frame(int index) const {
- Expects(index < _frames);
- const auto row = index / kPerRow;
- const auto inrow = index % kPerRow;
- if (_finished) {
- return { &_full, { inrow * _size, row * _size, _size, _size } };
- }
- return { &_images[row], { 0, inrow * _size, _size, _size } };
- }
- int Cache::size() const {
- return _size;
- }
- Preview Cache::makePreview() const {
- Expects(_frames > 0);
- const auto first = frame(0);
- return { first.image->copy(first.source), true };
- }
- void Cache::reserve(int frames) {
- Expects(!_finished);
- const auto rows = (frames + kPerRow - 1) / kPerRow;
- if (const auto add = rows - int(_images.size()); add > 0) {
- _images.resize(rows);
- for (auto e = end(_images), i = e - add; i != e; ++i) {
- (*i) = QImage(
- _size,
- _size * kPerRow,
- QImage::Format_ARGB32_Premultiplied);
- }
- }
- _durations.reserve(frames);
- }
- int Cache::frameRowByteSize() const {
- return _size * 4;
- }
- int Cache::frameByteSize() const {
- return _size * frameRowByteSize();
- }
- void Cache::add(crl::time duration, const QImage &frame) {
- Expects(!_finished);
- Expects(frame.size() == QSize(_size, _size));
- Expects(frame.format() == QImage::Format_ARGB32_Premultiplied);
- const auto row = (_frames / kPerRow);
- const auto inrow = (_frames % kPerRow);
- const auto rows = row + 1;
- while (_images.size() < rows) {
- _images.emplace_back();
- _images.back() = QImage(
- _size,
- _size * kPerRow,
- QImage::Format_ARGB32_Premultiplied);
- }
- const auto srcPerLine = frame.bytesPerLine();
- const auto dstPerLine = _images[row].bytesPerLine();
- const auto perLine = std::min(srcPerLine, dstPerLine);
- auto dst = _images[row].bits() + inrow * _size * dstPerLine;
- auto src = frame.constBits();
- for (auto y = 0; y != _size; ++y) {
- memcpy(dst, src, perLine);
- dst += dstPerLine;
- src += srcPerLine;
- }
- ++_frames;
- _durations.push_back(std::clamp(
- duration,
- crl::time(0),
- crl::time(std::numeric_limits<uint16>::max())));
- }
- void Cache::finish() {
- _finished = true;
- if (_frame == _frames) {
- _frame = 0;
- }
- const auto rows = (_frames + kPerRow - 1) / kPerRow;
- const auto columns = std::min(_frames, kPerRow);
- const auto zero = (rows * columns) - _frames;
- _full = QImage(
- columns * _size,
- rows * _size,
- QImage::Format_ARGB32_Premultiplied);
- auto dstData = _full.bits();
- const auto perLine = _size * 4;
- const auto dstPerLine = _full.bytesPerLine();
- for (auto y = 0; y != rows; ++y) {
- auto &row = _images[y];
- auto src = row.bits();
- const auto srcPerLine = row.bytesPerLine();
- const auto till = columns - ((y + 1 == rows) ? zero : 0);
- for (auto x = 0; x != till; ++x) {
- auto dst = dstData + y * dstPerLine * _size + x * perLine;
- for (auto line = 0; line != _size; ++line) {
- memcpy(dst, src, perLine);
- src += srcPerLine;
- dst += dstPerLine;
- }
- }
- }
- if (const auto perLine = zero * _size) {
- auto dst = dstData
- + (rows - 1) * dstPerLine * _size
- + (columns - zero) * _size * 4;
- for (auto left = 0; left != _size; ++left) {
- memset(dst, 0, perLine);
- dst += dstPerLine;
- }
- }
- }
- PaintFrameResult Cache::paintCurrentFrame(
- QPainter &p,
- const Context &context) {
- if (!_frames) {
- return {};
- }
- const auto first = context.internal.forceFirstFrame;
- auto last = context.internal.forceLastFrame;
- if (!first && !last) {
- const auto now = context.paused ? 0 : context.now;
- const auto finishes = now ? currentFrameFinishes() : 0;
- if (finishes && now >= finishes) {
- ++_frame;
- if (_finished && _frame == _frames) {
- _frame = 0;
- if (context.internal.overrideFirstWithLastFrame) {
- last = true;
- }
- }
- _shown = now;
- } else if (!_shown) {
- _shown = now;
- }
- }
- const auto index = first
- ? 0
- : last
- ? (_frames - 1)
- : std::min(_frame, _frames - 1);
- const auto info = frame(index);
- const auto size = _size / style::DevicePixelRatio();
- const auto rect = QRect(context.position, QSize(size, size));
- PaintScaledImage(p, rect, info, context);
- const auto next = first ? 0 : currentFrameFinishes();
- return {
- .painted = true,
- .next = next,
- .duration = next ? (next - _shown) : 0,
- };
- }
- int Cache::currentFrame() const {
- return _frame;
- }
- crl::time Cache::currentFrameFinishes() const {
- if (!_shown || _frame >= _durations.size()) {
- return 0;
- } else if (const auto duration = _durations[_frame]) {
- return _shown + duration;
- }
- return 0;
- }
- Cached::Cached(
- const QString &entityData,
- Fn<std::unique_ptr<Loader>()> unloader,
- Cache cache)
- : _unloader(std::move(unloader))
- , _cache(std::move(cache))
- , _entityData(entityData) {
- }
- QString Cached::entityData() const {
- return _entityData;
- }
- PaintFrameResult Cached::paint(QPainter &p, const Context &context) {
- return _cache.paintCurrentFrame(p, context);
- }
- bool Cached::inDefaultState() const {
- return _cache.readyInDefaultState();
- }
- Preview Cached::makePreview() const {
- return _cache.makePreview();
- }
- Loading Cached::unload() {
- return Loading(_unloader(), makePreview());
- }
- Renderer::Renderer(RendererDescriptor &&descriptor)
- : _cache(descriptor.size)
- , _put(std::move(descriptor.put))
- , _loader(std::move(descriptor.loader)) {
- Expects(_loader != nullptr);
- const auto size = _cache.size();
- const auto guard = base::make_weak(this);
- crl::async([=, factory = std::move(descriptor.generator)]() mutable {
- auto generator = factory();
- auto rendered = generator->renderNext(
- QImage(),
- QSize(size, size),
- Qt::KeepAspectRatio);
- if (rendered.image.isNull()) {
- return;
- }
- crl::on_main(guard, [
- =,
- frame = std::move(rendered),
- generator = std::move(generator)
- ]() mutable {
- frameReady(
- std::move(generator),
- frame.duration,
- std::move(frame.image));
- });
- });
- }
- Renderer::~Renderer() = default;
- void Renderer::frameReady(
- std::unique_ptr<Ui::FrameGenerator> generator,
- crl::time duration,
- QImage frame) {
- if (frame.isNull()) {
- finish();
- return;
- }
- if (const auto count = generator->count()) {
- if (!_cache.frames()) {
- _cache.reserve(std::max(count, kMaxFrames));
- }
- }
- const auto current = _cache.currentFrame();
- const auto total = _cache.frames();
- const auto explicitRepaint = (current == total);
- _cache.add(duration, frame);
- if (explicitRepaint && _repaint) {
- _repaint();
- }
- if (!duration || total + 1 >= kMaxFrames) {
- finish();
- } else if (current + kPreloadFrames > total) {
- renderNext(std::move(generator), std::move(frame));
- } else {
- _generator = std::move(generator);
- _storage = std::move(frame);
- }
- }
- void Renderer::renderNext(
- std::unique_ptr<Ui::FrameGenerator> generator,
- QImage storage) {
- const auto size = _cache.size();
- const auto guard = base::make_weak(this);
- crl::async([
- =,
- storage = std::move(storage),
- generator = std::move(generator)
- ]() mutable {
- auto rendered = generator->renderNext(
- std::move(storage),
- QSize(size, size),
- Qt::KeepAspectRatio);
- crl::on_main(guard, [
- =,
- frame = std::move(rendered),
- generator = std::move(generator)
- ]() mutable {
- frameReady(
- std::move(generator),
- frame.duration,
- std::move(frame.image));
- });
- });
- }
- void Renderer::finish() {
- _finished = true;
- _cache.finish();
- if (_put) {
- _put(_cache.serialize());
- }
- }
- PaintFrameResult Renderer::paint(QPainter &p, const Context &context) {
- const auto result = _cache.paintCurrentFrame(p, context);
- if (_generator
- && (!result.painted
- || _cache.currentFrame() + kPreloadFrames >= _cache.frames())) {
- renderNext(std::move(_generator), std::move(_storage));
- }
- return result;
- }
- std::optional<Cached> Renderer::ready(const QString &entityData) {
- return _finished
- ? Cached{ entityData, std::move(_loader), std::move(_cache) }
- : std::optional<Cached>();
- }
- std::unique_ptr<Loader> Renderer::cancel() {
- return _loader();
- }
- bool Renderer::canMakePreview() const {
- return _cache.frames() > 0;
- }
- Preview Renderer::makePreview() const {
- return _cache.makePreview();
- }
- bool Renderer::readyInDefaultState() const {
- return _cache.readyInDefaultState();
- }
- void Renderer::setRepaintCallback(Fn<void()> repaint) {
- _repaint = std::move(repaint);
- }
- Cache Renderer::takeCache() {
- return std::move(_cache);
- }
- Loading::Loading(std::unique_ptr<Loader> loader, Preview preview)
- : _loader(std::move(loader))
- , _preview(std::move(preview)) {
- }
- QString Loading::entityData() const {
- return _loader->entityData();
- }
- void Loading::load(Fn<void(Loader::LoadResult)> done) {
- _loader->load(crl::guard(this, [this, done = std::move(done)](
- Loader::LoadResult result) mutable {
- if (const auto caching = std::get_if<Caching>(&result)) {
- caching->preview = _preview
- ? std::move(_preview)
- : _loader->preview();
- }
- done(std::move(result));
- }));
- }
- bool Loading::loading() const {
- return _loader->loading();
- }
- void Loading::paint(QPainter &p, const Context &context) {
- if (!_preview) {
- if (auto preview = _loader->preview()) {
- _preview = std::move(preview);
- }
- }
- _preview.paint(p, context);
- }
- bool Loading::hasImagePreview() const {
- return _preview.isImage();
- }
- Preview Loading::imagePreview() const {
- return _preview.isImage() ? _preview : Preview();
- }
- void Loading::updatePreview(Preview preview) {
- if (!_preview.isImage() && preview.isImage()) {
- _preview = std::move(preview);
- } else if (!_preview) {
- if (auto loaderPreview = _loader->preview()) {
- _preview = std::move(loaderPreview);
- } else if (preview) {
- _preview = std::move(preview);
- }
- }
- }
- void Loading::cancel() {
- _loader->cancel();
- invalidate_weak_ptrs(this);
- }
- Instance::Instance(
- Loading loading,
- Fn<void(not_null<Instance*>, RepaintRequest)> repaintLater)
- : _state(std::move(loading))
- , _repaintLater(std::move(repaintLater)) {
- }
- QString Instance::entityData() const {
- return v::match(_state, [](const Loading &state) {
- return state.entityData();
- }, [](const Caching &state) {
- return state.entityData;
- }, [](const Cached &state) {
- return state.entityData();
- });
- }
- void Instance::paint(QPainter &p, const Context &context) {
- context.internal.colorized = _colored;
- v::match(_state, [&](Loading &state) {
- state.paint(p, context);
- load(state);
- }, [&](Caching &state) {
- auto result = state.renderer->paint(p, context);
- if (!result.painted) {
- state.preview.paint(p, context);
- } else {
- if (!state.preview.isExactImage()) {
- state.preview = state.renderer->makePreview();
- }
- if (result.next > context.now) {
- _repaintLater(this, { result.next, result.duration });
- }
- }
- if (auto cached = state.renderer->ready(state.entityData)) {
- _state = std::move(*cached);
- }
- }, [&](Cached &state) {
- const auto result = state.paint(p, context);
- if (result.next > context.now) {
- _repaintLater(this, { result.next, result.duration });
- }
- });
- }
- bool Instance::ready() {
- return v::match(_state, [&](Loading &state) {
- if (state.hasImagePreview()) {
- return true;
- }
- if (!_usage.empty()) {
- load(state);
- }
- return false;
- }, [](Caching &state) {
- return state.renderer->canMakePreview();
- }, [](Cached &state) {
- return true;
- });
- }
- bool Instance::readyInDefaultState() {
- return v::match(_state, [&](Loading &state) {
- if (state.hasImagePreview()) {
- return true;
- }
- load(state);
- return false;
- }, [](Caching &state) {
- return state.renderer->readyInDefaultState();
- }, [](Cached &state) {
- return state.inDefaultState();
- });
- }
- void Instance::load(Loading &state) {
- state.load([=](Loader::LoadResult result) {
- if (auto caching = std::get_if<Caching>(&result)) {
- caching->renderer->setRepaintCallback([=] { repaint(); });
- _state = std::move(*caching);
- } else if (auto cached = std::get_if<Cached>(&result)) {
- _state = std::move(*cached);
- repaint();
- } else {
- Unexpected("Value in Loader::LoadResult.");
- }
- });
- }
- bool Instance::hasImagePreview() const {
- return v::match(_state, [](const Loading &state) {
- return state.hasImagePreview();
- }, [](const Caching &state) {
- return state.preview.isImage();
- }, [](const Cached &state) {
- return true;
- });
- }
- Preview Instance::imagePreview() const {
- return v::match(_state, [](const Loading &state) {
- return state.imagePreview();
- }, [](const Caching &state) {
- return state.preview.isImage() ? state.preview : Preview();
- }, [](const Cached &state) {
- return state.makePreview();
- });
- }
- void Instance::updatePreview(Preview preview) {
- v::match(_state, [&](Loading &state) {
- state.updatePreview(std::move(preview));
- }, [&](Caching &state) {
- if ((!state.preview.isImage() && preview.isImage())
- || (!state.preview && preview)) {
- state.preview = std::move(preview);
- }
- }, [](const Cached &) {});
- }
- void Instance::setColored() {
- if (!_colored) {
- _colored = true;
- if (ready()) {
- _repaintLater(this, { .when = crl::now() + 1 });
- }
- }
- }
- void Instance::repaint() {
- for (const auto &object : _usage) {
- object->repaint();
- }
- }
- void Instance::incrementUsage(not_null<Object*> object) {
- _usage.emplace(object);
- }
- void Instance::decrementUsage(not_null<Object*> object) {
- _usage.remove(object);
- if (!_usage.empty()) {
- return;
- }
- v::match(_state, [](Loading &state) {
- state.cancel();
- }, [&](Caching &state) {
- _state = Loading{
- state.renderer->cancel(),
- std::move(state.preview),
- };
- }, [&](Cached &state) {
- _state = state.unload();
- });
- _repaintLater(this, RepaintRequest());
- }
- Object::Object(not_null<Instance*> instance, Fn<void()> repaint)
- : _instance(instance)
- , _repaint(std::move(repaint)) {
- }
- Object::~Object() {
- unload();
- }
- int Object::width() {
- return st::emojiSize + 2 * st::emojiPadding;
- }
- QString Object::entityData() {
- return _instance->entityData();
- }
- void Object::paint(QPainter &p, const Context &context) {
- if (!_using) {
- _using = true;
- _instance->incrementUsage(this);
- }
- _instance->paint(p, context);
- }
- void Object::unload() {
- if (_using) {
- _using = false;
- _instance->decrementUsage(this);
- }
- }
- bool Object::ready() {
- if (!_using) {
- _using = true;
- _instance->incrementUsage(this);
- }
- return _instance->ready();
- }
- bool Object::readyInDefaultState() {
- if (!_using) {
- _using = true;
- _instance->incrementUsage(this);
- }
- return _instance->readyInDefaultState();
- }
- void Object::repaint() {
- if (const auto onstack = _repaint) {
- onstack();
- }
- }
- Internal::Internal(
- QString entityData,
- QImage image,
- QMargins padding,
- bool colored)
- : _entityData(std::move(entityData))
- , _image(std::move(image))
- , _padding(padding)
- , _colored(colored) {
- }
- int Internal::width() {
- return _padding.left()
- + (_image.width() / _image.devicePixelRatio())
- + _padding.right();
- }
- QString Internal::entityData() {
- return _entityData;
- }
- void Internal::paint(QPainter &p, const Context &context) {
- context.internal.colorized = _colored;
- const auto size = _image.size() / style::DevicePixelRatio();
- const auto rect = QRect(
- context.position + QPoint(_padding.left(), _padding.top()),
- size);
- PaintScaledImage(p, rect, { &_image }, context);
- }
- void Internal::unload() {
- }
- bool Internal::ready() {
- return true;
- }
- bool Internal::readyInDefaultState() {
- return true;
- }
- DynamicImageEmoji::DynamicImageEmoji(
- QString entityData,
- std::shared_ptr<DynamicImage> image,
- Fn<void()> repaint,
- QMargins padding,
- int size)
- : _entityData(entityData)
- , _image(std::move(image))
- , _repaint(std::move(repaint))
- , _padding(padding)
- , _size(size) {
- }
- int DynamicImageEmoji::width() {
- return _padding.left() + _size + _padding.right();
- }
- QString DynamicImageEmoji::entityData() {
- return _entityData;
- }
- void DynamicImageEmoji::paint(QPainter &p, const Context &context) {
- if (!_subscribed) {
- _subscribed = true;
- _image->subscribeToUpdates(_repaint);
- }
- auto image = _image->image(_size);
- const auto size = image.size() / image.devicePixelRatio();
- const auto rect = QRect(
- context.position + QPoint(_padding.left(), _padding.top()),
- size);
- context.internal.colorized = false;
- PaintScaledImage(p, rect, { &image }, context);
- }
- void DynamicImageEmoji::unload() {
- if (_subscribed) {
- _subscribed = false;
- _image->subscribeToUpdates(nullptr);
- }
- }
- bool DynamicImageEmoji::ready() {
- return true;
- }
- bool DynamicImageEmoji::readyInDefaultState() {
- return true;
- }
- void PaintIconEmoji(
- QPainter &p,
- const Context &context,
- not_null<const style::IconEmoji*> emoji,
- IconEmojiFrameCache &cache) {
- context.internal.colorized = !emoji->useIconColor;
- const auto size = emoji->icon.size();
- const auto rect = QRect(context.position
- + QPoint(emoji->padding.left(), emoji->padding.top()), size);
- const auto ratio = style::DevicePixelRatio();
- const auto full = size * ratio;
- const auto invalid = (cache.frame.size() != full);
- if (invalid
- || (emoji->useIconColor
- && cache.paletteVersion != style::PaletteVersion())) {
- cache.paletteVersion = style::PaletteVersion();
- if (invalid) {
- cache.frame = QImage(full, QImage::Format_ARGB32_Premultiplied);
- }
- cache.frame.setDevicePixelRatio(ratio);
- cache.frame.fill(Qt::transparent);
- auto q = QPainter(&cache.frame);
- emoji->icon.paint(q, 0, 0, size.width());
- }
- PaintScaledImage(p, rect, { &cache.frame }, context);
- }
- } // namespace Ui::CustomEmoji
|