2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-24 11:17:10 +00:00
tdesktop/Telegram/SourceFiles/chat_helpers/emoji_sets_manager.h

34 lines
682 B
C
Raw Normal View History

2018-12-26 18:00:08 +04:00
/*
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"
2020-06-10 14:49:10 +04:00
namespace Main {
class Session;
} // namespace Main
2018-12-26 18:00:08 +04:00
namespace Ui {
namespace Emoji {
2020-06-10 14:49:10 +04:00
class ManageSetsBox final : public Ui::BoxContent {
2018-12-26 18:00:08 +04:00
public:
2020-06-10 14:49:10 +04:00
ManageSetsBox(QWidget*, not_null<Main::Session*> session);
2018-12-26 18:00:08 +04:00
2020-06-10 14:49:10 +04:00
private:
2018-12-26 18:00:08 +04:00
void prepare() override;
2020-06-10 14:49:10 +04:00
const not_null<Main::Session*> _session;
2018-12-26 18:00:08 +04:00
};
2020-06-10 14:49:10 +04:00
void LoadAndSwitchTo(not_null<Main::Session*> session, int id);
2018-12-26 18:00:08 +04:00
} // namespace Emoji
} // namespace Ui