tdesktop/Telegram/SourceFiles/chat_helpers/emoji_sets_manager.h

34 lines
682 B
C
Raw Normal View History

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