552 lines
		
	
	
	
		
			16 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			552 lines
		
	
	
	
		
			16 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
 | 
						|
*/
 | 
						|
#include "boxes/sticker_set_box.h"
 | 
						|
 | 
						|
#include "data/data_document.h"
 | 
						|
#include "data/data_session.h"
 | 
						|
#include "lang/lang_keys.h"
 | 
						|
#include "chat_helpers/stickers.h"
 | 
						|
#include "boxes/confirm_box.h"
 | 
						|
#include "core/application.h"
 | 
						|
#include "storage/localstorage.h"
 | 
						|
#include "dialogs/dialogs_layout.h"
 | 
						|
#include "ui/widgets/buttons.h"
 | 
						|
#include "ui/widgets/scroll_area.h"
 | 
						|
#include "ui/image/image.h"
 | 
						|
#include "ui/emoji_config.h"
 | 
						|
#include "auth_session.h"
 | 
						|
#include "apiwrap.h"
 | 
						|
#include "mainwidget.h"
 | 
						|
#include "mainwindow.h"
 | 
						|
#include "styles/style_boxes.h"
 | 
						|
#include "styles/style_chat_helpers.h"
 | 
						|
 | 
						|
namespace {
 | 
						|
 | 
						|
constexpr auto kStickersPanelPerRow = 5;
 | 
						|
 | 
						|
} // namespace
 | 
						|
 | 
						|
class StickerSetBox::Inner : public TWidget, public RPCSender, private base::Subscriber {
 | 
						|
public:
 | 
						|
	Inner(QWidget *parent, const MTPInputStickerSet &set);
 | 
						|
 | 
						|
	bool loaded() const;
 | 
						|
	bool notInstalled() const;
 | 
						|
	bool official() const;
 | 
						|
	Fn<TextWithEntities()> title() const;
 | 
						|
	QString shortName() const;
 | 
						|
 | 
						|
	void install();
 | 
						|
	rpl::producer<uint64> setInstalled() const;
 | 
						|
	rpl::producer<> updateControls() const;
 | 
						|
 | 
						|
	~Inner();
 | 
						|
 | 
						|
protected:
 | 
						|
	void mousePressEvent(QMouseEvent *e) override;
 | 
						|
	void mouseMoveEvent(QMouseEvent *e) override;
 | 
						|
	void mouseReleaseEvent(QMouseEvent *e) override;
 | 
						|
	void paintEvent(QPaintEvent *e) override;
 | 
						|
	void leaveEventHook(QEvent *e) override;
 | 
						|
 | 
						|
private:
 | 
						|
	void updateSelected();
 | 
						|
	void setSelected(int selected);
 | 
						|
	void startOverAnimation(int index, float64 from, float64 to);
 | 
						|
	int stickerFromGlobalPos(const QPoint &p) const;
 | 
						|
 | 
						|
	void gotSet(const MTPmessages_StickerSet &set);
 | 
						|
	bool failedSet(const RPCError &error);
 | 
						|
 | 
						|
	void installDone(const MTPmessages_StickerSetInstallResult &result);
 | 
						|
	bool installFail(const RPCError &error);
 | 
						|
 | 
						|
	bool isMasksSet() const {
 | 
						|
		return (_setFlags & MTPDstickerSet::Flag::f_masks);
 | 
						|
	}
 | 
						|
 | 
						|
	void showPreview();
 | 
						|
 | 
						|
	std::vector<Ui::Animations::Simple> _packOvers;
 | 
						|
	Stickers::Pack _pack;
 | 
						|
	Stickers::ByEmojiMap _emoji;
 | 
						|
	bool _loaded = false;
 | 
						|
	uint64 _setId = 0;
 | 
						|
	uint64 _setAccess = 0;
 | 
						|
	QString _setTitle, _setShortName;
 | 
						|
	int _setCount = 0;
 | 
						|
	int32 _setHash = 0;
 | 
						|
	MTPDstickerSet::Flags _setFlags = 0;
 | 
						|
	TimeId _setInstallDate = TimeId(0);
 | 
						|
	ImagePtr _setThumbnail;
 | 
						|
 | 
						|
	MTPInputStickerSet _input;
 | 
						|
 | 
						|
	mtpRequestId _installRequest = 0;
 | 
						|
 | 
						|
	int _selected = -1;
 | 
						|
 | 
						|
	base::Timer _previewTimer;
 | 
						|
	int _previewShown = -1;
 | 
						|
 | 
						|
	rpl::event_stream<uint64> _setInstalled;
 | 
						|
	rpl::event_stream<> _updateControls;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
StickerSetBox::StickerSetBox(QWidget*, const MTPInputStickerSet &set)
 | 
						|
: _set(set) {
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Show(DocumentData *document) {
 | 
						|
	if (const auto sticker = document ? document->sticker() : nullptr) {
 | 
						|
		if (sticker->set.type() != mtpc_inputStickerSetEmpty) {
 | 
						|
			Ui::show(Box<StickerSetBox>(sticker->set));
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::prepare() {
 | 
						|
	setTitle(langFactory(lng_contacts_loading));
 | 
						|
 | 
						|
	_inner = setInnerWidget(object_ptr<Inner>(this, _set), st::stickersScroll);
 | 
						|
	Auth().data().stickersUpdated(
 | 
						|
	) | rpl::start_with_next([=] {
 | 
						|
		updateButtons();
 | 
						|
	}, lifetime());
 | 
						|
 | 
						|
	setDimensions(st::boxWideWidth, st::stickersMaxHeight);
 | 
						|
 | 
						|
	updateTitleAndButtons();
 | 
						|
 | 
						|
	_inner->updateControls(
 | 
						|
	) | rpl::start_with_next([=] {
 | 
						|
		updateTitleAndButtons();
 | 
						|
	}, lifetime());
 | 
						|
 | 
						|
	_inner->setInstalled(
 | 
						|
	) | rpl::start_with_next([=](uint64 setId) {
 | 
						|
		Auth().api().stickerSetInstalled(setId);
 | 
						|
		closeBox();
 | 
						|
	}, lifetime());
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::addStickers() {
 | 
						|
	_inner->install();
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::shareStickers() {
 | 
						|
	auto url = Core::App().createInternalLinkFull(qsl("addstickers/") + _inner->shortName());
 | 
						|
	QApplication::clipboard()->setText(url);
 | 
						|
	Ui::show(Box<InformBox>(lang(lng_stickers_copied)));
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::updateTitleAndButtons() {
 | 
						|
	setTitle(_inner->title());
 | 
						|
	updateButtons();
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::updateButtons() {
 | 
						|
	clearButtons();
 | 
						|
	if (_inner->loaded()) {
 | 
						|
		if (_inner->notInstalled()) {
 | 
						|
			addButton(langFactory(lng_stickers_add_pack), [=] { addStickers(); });
 | 
						|
			addButton(langFactory(lng_cancel), [=] { closeBox(); });
 | 
						|
		} else if (_inner->official()) {
 | 
						|
			addButton(langFactory(lng_about_done), [=] { closeBox(); });
 | 
						|
		} else {
 | 
						|
			addButton(langFactory(lng_stickers_share_pack), [=] { shareStickers(); });
 | 
						|
			addButton(langFactory(lng_cancel), [=] { closeBox(); });
 | 
						|
		}
 | 
						|
	} else {
 | 
						|
		addButton(langFactory(lng_cancel), [=] { closeBox(); });
 | 
						|
	}
 | 
						|
	update();
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::resizeEvent(QResizeEvent *e) {
 | 
						|
	BoxContent::resizeEvent(e);
 | 
						|
	_inner->resize(width(), _inner->height());
 | 
						|
}
 | 
						|
 | 
						|
StickerSetBox::Inner::Inner(QWidget *parent, const MTPInputStickerSet &set) : TWidget(parent)
 | 
						|
, _input(set)
 | 
						|
, _previewTimer([=] { showPreview(); }) {
 | 
						|
	switch (set.type()) {
 | 
						|
	case mtpc_inputStickerSetID: _setId = set.c_inputStickerSetID().vid.v; _setAccess = set.c_inputStickerSetID().vaccess_hash.v; break;
 | 
						|
	case mtpc_inputStickerSetShortName: _setShortName = qs(set.c_inputStickerSetShortName().vshort_name); break;
 | 
						|
	}
 | 
						|
	MTP::send(MTPmessages_GetStickerSet(_input), rpcDone(&Inner::gotSet), rpcFail(&Inner::failedSet));
 | 
						|
	Auth().api().updateStickers();
 | 
						|
 | 
						|
	subscribe(Auth().downloaderTaskFinished(), [this] { update(); });
 | 
						|
 | 
						|
	setMouseTracking(true);
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::gotSet(const MTPmessages_StickerSet &set) {
 | 
						|
	_pack.clear();
 | 
						|
	_emoji.clear();
 | 
						|
	_packOvers.clear();
 | 
						|
	_selected = -1;
 | 
						|
	setCursor(style::cur_default);
 | 
						|
	set.match([&](const MTPDmessages_stickerSet &data) {
 | 
						|
		const auto &v = data.vdocuments.v;
 | 
						|
		_pack.reserve(v.size());
 | 
						|
		_packOvers.reserve(v.size());
 | 
						|
		for (const auto &item : v) {
 | 
						|
			const auto document = Auth().data().processDocument(item);
 | 
						|
			if (!document->sticker()) continue;
 | 
						|
 | 
						|
			_pack.push_back(document);
 | 
						|
			_packOvers.emplace_back();
 | 
						|
		}
 | 
						|
		for (const auto &pack : data.vpacks.v) {
 | 
						|
			pack.match([&](const MTPDstickerPack &pack) {
 | 
						|
				if (const auto emoji = Ui::Emoji::Find(qs(pack.vemoticon))) {
 | 
						|
					const auto original = emoji->original();
 | 
						|
					auto &stickers = pack.vdocuments.v;
 | 
						|
 | 
						|
					auto p = Stickers::Pack();
 | 
						|
					p.reserve(stickers.size());
 | 
						|
					for (auto j = 0, c = stickers.size(); j != c; ++j) {
 | 
						|
						auto doc = Auth().data().document(stickers[j].v);
 | 
						|
						if (!doc || !doc->sticker()) continue;
 | 
						|
 | 
						|
						p.push_back(doc);
 | 
						|
					}
 | 
						|
					_emoji.insert(original, p);
 | 
						|
				}
 | 
						|
			});
 | 
						|
		}
 | 
						|
		data.vset.match([&](const MTPDstickerSet &set) {
 | 
						|
			_setTitle = Stickers::GetSetTitle(set);
 | 
						|
			_setShortName = qs(set.vshort_name);
 | 
						|
			_setId = set.vid.v;
 | 
						|
			_setAccess = set.vaccess_hash.v;
 | 
						|
			_setCount = set.vcount.v;
 | 
						|
			_setHash = set.vhash.v;
 | 
						|
			_setFlags = set.vflags.v;
 | 
						|
			_setInstallDate = set.has_installed_date()
 | 
						|
				? set.vinstalled_date.v
 | 
						|
				: TimeId(0);
 | 
						|
			_setThumbnail = set.has_thumb()
 | 
						|
				? Images::Create(set, set.vthumb)
 | 
						|
				: ImagePtr();
 | 
						|
			auto &sets = Auth().data().stickerSetsRef();
 | 
						|
			const auto it = sets.find(_setId);
 | 
						|
			if (it != sets.cend()) {
 | 
						|
				using ClientFlag = MTPDstickerSet_ClientFlag;
 | 
						|
				const auto clientFlags = it->flags
 | 
						|
					& (ClientFlag::f_featured
 | 
						|
						| ClientFlag::f_not_loaded
 | 
						|
						| ClientFlag::f_unread
 | 
						|
						| ClientFlag::f_special);
 | 
						|
				_setFlags |= clientFlags;
 | 
						|
				it->flags = _setFlags;
 | 
						|
				it->installDate = _setInstallDate;
 | 
						|
				it->stickers = _pack;
 | 
						|
				it->emoji = _emoji;
 | 
						|
				it->thumbnail = _setThumbnail;
 | 
						|
			}
 | 
						|
		});
 | 
						|
	});
 | 
						|
 | 
						|
	if (_pack.isEmpty()) {
 | 
						|
		Ui::show(Box<InformBox>(lang(lng_stickers_not_found)));
 | 
						|
		return;
 | 
						|
	} else {
 | 
						|
		int32 rows = _pack.size() / kStickersPanelPerRow + ((_pack.size() % kStickersPanelPerRow) ? 1 : 0);
 | 
						|
		resize(st::stickersPadding.left() + kStickersPanelPerRow * st::stickersSize.width(), st::stickersPadding.top() + rows * st::stickersSize.height() + st::stickersPadding.bottom());
 | 
						|
	}
 | 
						|
	_loaded = true;
 | 
						|
 | 
						|
	updateSelected();
 | 
						|
	_updateControls.fire({});
 | 
						|
}
 | 
						|
 | 
						|
rpl::producer<uint64> StickerSetBox::Inner::setInstalled() const {
 | 
						|
	return _setInstalled.events();
 | 
						|
}
 | 
						|
 | 
						|
rpl::producer<> StickerSetBox::Inner::updateControls() const {
 | 
						|
	return _updateControls.events();
 | 
						|
}
 | 
						|
 | 
						|
bool StickerSetBox::Inner::failedSet(const RPCError &error) {
 | 
						|
	if (MTP::isDefaultHandledError(error)) return false;
 | 
						|
 | 
						|
	_loaded = true;
 | 
						|
 | 
						|
	Ui::show(Box<InformBox>(lang(lng_stickers_not_found)));
 | 
						|
 | 
						|
	return true;
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::installDone(const MTPmessages_StickerSetInstallResult &result) {
 | 
						|
	auto &sets = Auth().data().stickerSetsRef();
 | 
						|
 | 
						|
	bool wasArchived = (_setFlags & MTPDstickerSet::Flag::f_archived);
 | 
						|
	if (wasArchived) {
 | 
						|
		auto index = Auth().data().archivedStickerSetsOrderRef().indexOf(_setId);
 | 
						|
		if (index >= 0) {
 | 
						|
			Auth().data().archivedStickerSetsOrderRef().removeAt(index);
 | 
						|
		}
 | 
						|
	}
 | 
						|
	_setInstallDate = unixtime();
 | 
						|
	_setFlags &= ~MTPDstickerSet::Flag::f_archived;
 | 
						|
	_setFlags |= MTPDstickerSet::Flag::f_installed_date;
 | 
						|
	auto it = sets.find(_setId);
 | 
						|
	if (it == sets.cend()) {
 | 
						|
		it = sets.insert(
 | 
						|
			_setId,
 | 
						|
			Stickers::Set(
 | 
						|
				_setId,
 | 
						|
				_setAccess,
 | 
						|
				_setTitle,
 | 
						|
				_setShortName,
 | 
						|
				_setCount,
 | 
						|
				_setHash,
 | 
						|
				_setFlags,
 | 
						|
				_setInstallDate,
 | 
						|
				_setThumbnail));
 | 
						|
	} else {
 | 
						|
		it->flags = _setFlags;
 | 
						|
		it->installDate = _setInstallDate;
 | 
						|
	}
 | 
						|
	it->stickers = _pack;
 | 
						|
	it->emoji = _emoji;
 | 
						|
 | 
						|
	auto &order = Auth().data().stickerSetsOrderRef();
 | 
						|
	int insertAtIndex = 0, currentIndex = order.indexOf(_setId);
 | 
						|
	if (currentIndex != insertAtIndex) {
 | 
						|
		if (currentIndex > 0) {
 | 
						|
			order.removeAt(currentIndex);
 | 
						|
		}
 | 
						|
		order.insert(insertAtIndex, _setId);
 | 
						|
	}
 | 
						|
 | 
						|
	auto custom = sets.find(Stickers::CustomSetId);
 | 
						|
	if (custom != sets.cend()) {
 | 
						|
		for_const (auto sticker, _pack) {
 | 
						|
			int removeIndex = custom->stickers.indexOf(sticker);
 | 
						|
			if (removeIndex >= 0) custom->stickers.removeAt(removeIndex);
 | 
						|
		}
 | 
						|
		if (custom->stickers.isEmpty()) {
 | 
						|
			sets.erase(custom);
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if (result.type() == mtpc_messages_stickerSetInstallResultArchive) {
 | 
						|
		Stickers::ApplyArchivedResult(result.c_messages_stickerSetInstallResultArchive());
 | 
						|
	} else {
 | 
						|
		if (wasArchived) {
 | 
						|
			Local::writeArchivedStickers();
 | 
						|
		}
 | 
						|
		Local::writeInstalledStickers();
 | 
						|
		Auth().data().notifyStickersUpdated();
 | 
						|
	}
 | 
						|
	_setInstalled.fire_copy(_setId);
 | 
						|
}
 | 
						|
 | 
						|
bool StickerSetBox::Inner::installFail(const RPCError &error) {
 | 
						|
	if (MTP::isDefaultHandledError(error)) return false;
 | 
						|
 | 
						|
	Ui::show(Box<InformBox>(lang(lng_stickers_not_found)));
 | 
						|
 | 
						|
	return true;
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::mousePressEvent(QMouseEvent *e) {
 | 
						|
	int index = stickerFromGlobalPos(e->globalPos());
 | 
						|
	if (index >= 0 && index < _pack.size()) {
 | 
						|
		_previewTimer.callOnce(QApplication::startDragTime());
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::mouseMoveEvent(QMouseEvent *e) {
 | 
						|
	updateSelected();
 | 
						|
	if (_previewShown >= 0) {
 | 
						|
		int index = stickerFromGlobalPos(e->globalPos());
 | 
						|
		if (index >= 0 && index < _pack.size() && index != _previewShown) {
 | 
						|
			_previewShown = index;
 | 
						|
			Ui::showMediaPreview(
 | 
						|
				Data::FileOriginStickerSet(_setId, _setAccess),
 | 
						|
				_pack[_previewShown]);
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::leaveEventHook(QEvent *e) {
 | 
						|
	setSelected(-1);
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::mouseReleaseEvent(QMouseEvent *e) {
 | 
						|
	if (_previewShown >= 0) {
 | 
						|
		_previewShown = -1;
 | 
						|
		return;
 | 
						|
	}
 | 
						|
	if (_previewTimer.isActive()) {
 | 
						|
		_previewTimer.cancel();
 | 
						|
		const auto index = stickerFromGlobalPos(e->globalPos());
 | 
						|
		if (index >= 0 && index < _pack.size() && !isMasksSet()) {
 | 
						|
			const auto sticker = _pack[index];
 | 
						|
			Core::App().postponeCall(crl::guard(App::main(), [=] {
 | 
						|
				if (App::main()->onSendSticker(sticker)) {
 | 
						|
					Ui::hideSettingsAndLayer();
 | 
						|
				}
 | 
						|
			}));
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::updateSelected() {
 | 
						|
	auto selected = stickerFromGlobalPos(QCursor::pos());
 | 
						|
	setSelected(isMasksSet() ? -1 : selected);
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::setSelected(int selected) {
 | 
						|
	if (_selected != selected) {
 | 
						|
		startOverAnimation(_selected, 1., 0.);
 | 
						|
		_selected = selected;
 | 
						|
		startOverAnimation(_selected, 0., 1.);
 | 
						|
		setCursor(_selected >= 0 ? style::cur_pointer : style::cur_default);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::startOverAnimation(int index, float64 from, float64 to) {
 | 
						|
	if (index >= 0 && index < _packOvers.size()) {
 | 
						|
		_packOvers[index].start([this, index] {
 | 
						|
			int row = index / kStickersPanelPerRow;
 | 
						|
			int column = index % kStickersPanelPerRow;
 | 
						|
			int left = st::stickersPadding.left() + column * st::stickersSize.width();
 | 
						|
			int top = st::stickersPadding.top() + row * st::stickersSize.height();
 | 
						|
			rtlupdate(left, top, st::stickersSize.width(), st::stickersSize.height());
 | 
						|
		}, from, to, st::emojiPanDuration);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::showPreview() {
 | 
						|
	int index = stickerFromGlobalPos(QCursor::pos());
 | 
						|
	if (index >= 0 && index < _pack.size()) {
 | 
						|
		_previewShown = index;
 | 
						|
		Ui::showMediaPreview(
 | 
						|
			Data::FileOriginStickerSet(_setId, _setAccess),
 | 
						|
			_pack[_previewShown]);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
int32 StickerSetBox::Inner::stickerFromGlobalPos(const QPoint &p) const {
 | 
						|
	QPoint l(mapFromGlobal(p));
 | 
						|
	if (rtl()) l.setX(width() - l.x());
 | 
						|
	int32 row = (l.y() >= st::stickersPadding.top()) ? qFloor((l.y() - st::stickersPadding.top()) / st::stickersSize.height()) : -1;
 | 
						|
	int32 col = (l.x() >= st::stickersPadding.left()) ? qFloor((l.x() - st::stickersPadding.left()) / st::stickersSize.width()) : -1;
 | 
						|
	if (row >= 0 && col >= 0 && col < kStickersPanelPerRow) {
 | 
						|
		int32 result = row * kStickersPanelPerRow + col;
 | 
						|
		return (result < _pack.size()) ? result : -1;
 | 
						|
	}
 | 
						|
	return -1;
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::paintEvent(QPaintEvent *e) {
 | 
						|
	QRect r(e->rect());
 | 
						|
	Painter p(this);
 | 
						|
 | 
						|
	if (_pack.isEmpty()) return;
 | 
						|
 | 
						|
	int32 rows = _pack.size() / kStickersPanelPerRow + ((_pack.size() % kStickersPanelPerRow) ? 1 : 0);
 | 
						|
	int32 from = qFloor(e->rect().top() / st::stickersSize.height()), to = qFloor(e->rect().bottom() / st::stickersSize.height()) + 1;
 | 
						|
 | 
						|
	for (int32 i = from; i < to; ++i) {
 | 
						|
		for (int32 j = 0; j < kStickersPanelPerRow; ++j) {
 | 
						|
			int32 index = i * kStickersPanelPerRow + j;
 | 
						|
			if (index >= _pack.size()) break;
 | 
						|
			Assert(index < _packOvers.size());
 | 
						|
 | 
						|
			DocumentData *doc = _pack.at(index);
 | 
						|
			QPoint pos(st::stickersPadding.left() + j * st::stickersSize.width(), st::stickersPadding.top() + i * st::stickersSize.height());
 | 
						|
 | 
						|
			if (auto over = _packOvers[index].value((index == _selected) ? 1. : 0.)) {
 | 
						|
				p.setOpacity(over);
 | 
						|
				QPoint tl(pos);
 | 
						|
				if (rtl()) tl.setX(width() - tl.x() - st::stickersSize.width());
 | 
						|
				App::roundRect(p, QRect(tl, st::stickersSize), st::emojiPanHover, StickerHoverCorners);
 | 
						|
				p.setOpacity(1);
 | 
						|
 | 
						|
			}
 | 
						|
			doc->checkStickerSmall();
 | 
						|
 | 
						|
			float64 coef = qMin((st::stickersSize.width() - st::buttonRadius * 2) / float64(doc->dimensions.width()), (st::stickersSize.height() - st::buttonRadius * 2) / float64(doc->dimensions.height()));
 | 
						|
			if (coef > 1) coef = 1;
 | 
						|
			int32 w = qRound(coef * doc->dimensions.width()), h = qRound(coef * doc->dimensions.height());
 | 
						|
			if (w < 1) w = 1;
 | 
						|
			if (h < 1) h = 1;
 | 
						|
			QPoint ppos = pos + QPoint((st::stickersSize.width() - w) / 2, (st::stickersSize.height() - h) / 2);
 | 
						|
			if (const auto image = doc->getStickerSmall()) {
 | 
						|
				p.drawPixmapLeft(
 | 
						|
					ppos,
 | 
						|
					width(),
 | 
						|
					image->pix(doc->stickerSetOrigin(), w, h));
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
bool StickerSetBox::Inner::loaded() const {
 | 
						|
	return _loaded && !_pack.isEmpty();
 | 
						|
}
 | 
						|
 | 
						|
bool StickerSetBox::Inner::notInstalled() const {
 | 
						|
	if (!_loaded) {
 | 
						|
		return false;
 | 
						|
	}
 | 
						|
	const auto it = Auth().data().stickerSets().constFind(_setId);
 | 
						|
	if ((it == Auth().data().stickerSets().cend())
 | 
						|
		|| !(it->flags & MTPDstickerSet::Flag::f_installed_date)
 | 
						|
		|| (it->flags & MTPDstickerSet::Flag::f_archived)) {
 | 
						|
		return _pack.size() > 0;
 | 
						|
	}
 | 
						|
	return false;
 | 
						|
}
 | 
						|
 | 
						|
bool StickerSetBox::Inner::official() const {
 | 
						|
	return _loaded && _setShortName.isEmpty();
 | 
						|
}
 | 
						|
 | 
						|
Fn<TextWithEntities()> StickerSetBox::Inner::title() const {
 | 
						|
	auto text = TextWithEntities { _setTitle };
 | 
						|
	if (_loaded) {
 | 
						|
		if (_pack.isEmpty()) {
 | 
						|
			return [] { return TextWithEntities { lang(lng_attach_failed), EntitiesInText() }; };
 | 
						|
		} else {
 | 
						|
			TextUtilities::ParseEntities(text, TextParseMentions);
 | 
						|
		}
 | 
						|
	} else {
 | 
						|
		return [] { return TextWithEntities { lang(lng_contacts_loading), EntitiesInText() }; };
 | 
						|
	}
 | 
						|
	return [text] { return text; };
 | 
						|
}
 | 
						|
 | 
						|
QString StickerSetBox::Inner::shortName() const {
 | 
						|
	return _setShortName;
 | 
						|
}
 | 
						|
 | 
						|
void StickerSetBox::Inner::install() {
 | 
						|
	if (isMasksSet()) {
 | 
						|
		Ui::show(
 | 
						|
			Box<InformBox>(lang(lng_stickers_masks_pack)),
 | 
						|
			LayerOption::KeepOther);
 | 
						|
		return;
 | 
						|
	}
 | 
						|
	if (_installRequest) return;
 | 
						|
	_installRequest = MTP::send(MTPmessages_InstallStickerSet(_input, MTP_bool(false)), rpcDone(&Inner::installDone), rpcFail(&Inner::installFail));
 | 
						|
}
 | 
						|
 | 
						|
StickerSetBox::Inner::~Inner() {
 | 
						|
}
 |