| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /*
- This file is part of Telegram Desktop,
- the official desktop application for the Telegram messaging service.
- For license and copyright information please follow this link:
- https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
- */
- #pragma once
- #include "ui/rp_widget.h"
- #include "ui/effects/animations.h"
- namespace Data {
- class DocumentMedia;
- } // namespace Data
- namespace HistoryView {
- class StickerPlayer;
- } // namespace HistoryView
- class DocumentData;
- namespace UserpicBuilder {
- struct Result;
- class PreviewPainter final {
- public:
- PreviewPainter(int size);
- [[nodiscard]] DocumentData *document() const;
- void setPlayOnce(bool value);
- void setDocument(
- not_null<DocumentData*> document,
- Fn<void()> updateCallback);
- void paintBackground(QPainter &p, const QImage &image);
- bool paintForeground(QPainter &p);
- private:
- const int _size;
- const int _emojiSize;
- const QRect _frameGeometry;
- const QRect _frameRect;
- QImage _mask;
- QImage _frame;
- std::shared_ptr<Data::DocumentMedia> _media;
- std::unique_ptr<HistoryView::StickerPlayer> _player;
- bool _playOnce = false;
- bool _paused = false;
- bool _firstFrameShown = false;
- rpl::lifetime _lifetime;
- };
- class EmojiUserpic final : public Ui::RpWidget {
- public:
- EmojiUserpic(
- not_null<Ui::RpWidget*> parent,
- const QSize &size,
- bool isForum);
- void result(int size, Fn<void(UserpicBuilder::Result)> done);
- void setGradientColors(std::vector<QColor> colors);
- void setDocument(not_null<DocumentData*> document);
- void setDuration(crl::time duration);
- protected:
- void paintEvent(QPaintEvent *event) override;
- private:
- const bool _forum;
- PreviewPainter _painter;
- std::optional<bool> _playOnce;
- QImage _previousImage;
- QImage _image;
- std::vector<QColor> _colors;
- crl::time _duration;
- Ui::Animations::Simple _animation;
- };
- } // namespace UserpicBuilder
|