mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-08-07 04:05:17 +00:00
41 lines
838 B
C++
41 lines
838 B
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 "base/object_ptr.h"
|
|
|
|
namespace Main {
|
|
class Session;
|
|
} // namespace Main
|
|
|
|
namespace Ui {
|
|
class GenericBox;
|
|
} // namespace Ui
|
|
|
|
namespace ChatHelpers {
|
|
class Show;
|
|
} // namespace ChatHelpers
|
|
|
|
namespace Iv {
|
|
struct RichPage;
|
|
} // namespace Iv
|
|
|
|
namespace Iv::Editor {
|
|
|
|
struct CreateAiBoxArgs {
|
|
not_null<Main::Session*> session;
|
|
Fn<void(std::shared_ptr<const RichPage>)> applyToPage;
|
|
};
|
|
|
|
void CreateAiBox(not_null<Ui::GenericBox*> box, CreateAiBoxArgs &&args);
|
|
void ShowCreateAiBox(
|
|
std::shared_ptr<ChatHelpers::Show> show,
|
|
CreateAiBoxArgs &&args);
|
|
|
|
} // namespace Iv::Editor
|