1 /*
2 This file is part of Telegram Desktop,
3 the official desktop application for the Telegram messaging service.
4 
5 For license and copyright information please follow this link:
6 https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
7 */
8 #pragma once
9 
10 #include "boxes/abstract_box.h"
11 
12 namespace Main {
13 class Session;
14 } // namespace Main
15 
16 namespace Ui {
17 namespace Emoji {
18 
19 class ManageSetsBox final : public Ui::BoxContent {
20 public:
21 	ManageSetsBox(QWidget*, not_null<Main::Session*> session);
22 
23 private:
24 	void prepare() override;
25 
26 	const not_null<Main::Session*> _session;
27 
28 };
29 
30 void LoadAndSwitchTo(not_null<Main::Session*> session, int id);
31 
32 } // namespace Emoji
33 } // namespace Ui
34