90 lines
1.8 KiB
C++
90 lines
1.8 KiB
C++
/*
|
|
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 "boxes/abstract_box.h"
|
|
#include "base/timer.h"
|
|
#include "data/stickers/data_stickers.h"
|
|
|
|
namespace Window {
|
|
class SessionController;
|
|
} // namespace Window
|
|
|
|
namespace Ui {
|
|
class PlainShadow;
|
|
} // namespace Ui
|
|
|
|
namespace Data {
|
|
class StickersSet;
|
|
} // namespace Data
|
|
|
|
class StickerPremiumMark final {
|
|
public:
|
|
explicit StickerPremiumMark(not_null<Main::Session*> session);
|
|
|
|
void paint(
|
|
QPainter &p,
|
|
const QImage &frame,
|
|
QImage &backCache,
|
|
QPoint position,
|
|
QSize singleSize,
|
|
int outerWidth);
|
|
|
|
private:
|
|
void validateLock(const QImage &frame, QImage &backCache);
|
|
void validateStar();
|
|
|
|
QImage _lockGray;
|
|
QImage _star;
|
|
bool _premium = false;
|
|
|
|
rpl::lifetime _lifetime;
|
|
|
|
};
|
|
|
|
class StickerSetBox final : public Ui::BoxContent {
|
|
public:
|
|
StickerSetBox(
|
|
QWidget*,
|
|
not_null<Window::SessionController*> controller,
|
|
const StickerSetIdentifier &set,
|
|
Data::StickersType type);
|
|
StickerSetBox(
|
|
QWidget*,
|
|
not_null<Window::SessionController*> controller,
|
|
not_null<Data::StickersSet*> set);
|
|
|
|
static QPointer<Ui::BoxContent> Show(
|
|
not_null<Window::SessionController*> controller,
|
|
not_null<DocumentData*> document);
|
|
|
|
protected:
|
|
void prepare() override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
private:
|
|
enum class Error {
|
|
NotFound,
|
|
};
|
|
|
|
void updateTitleAndButtons();
|
|
void updateButtons();
|
|
void addStickers();
|
|
void copyStickersLink();
|
|
void handleError(Error error);
|
|
|
|
const not_null<Window::SessionController*> _controller;
|
|
const StickerSetIdentifier _set;
|
|
const Data::StickersType _type;
|
|
|
|
class Inner;
|
|
QPointer<Inner> _inner;
|
|
|
|
};
|