Files
AyuGramDesktop/Telegram/SourceFiles/boxes/create_ai_box.h
T
2026-07-10 14:04:29 +04:00

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