tdesktop/Telegram/SourceFiles/history/view/history_view_schedule_box.h

60 lines
1.4 KiB
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 "ui/boxes/choose_date_time.h"
namespace style {
struct IconButton;
struct PopupMenu;
} // namespace style
namespace Api {
struct SendOptions;
} // namespace Api
namespace SendMenu {
enum class Type;
} // namespace SendMenu
namespace HistoryView {
[[nodiscard]] TimeId DefaultScheduleTime();
[[nodiscard]] bool CanScheduleUntilOnline(not_null<PeerData*> peer);
struct ScheduleBoxStyleArgs {
ScheduleBoxStyleArgs();
const style::IconButton *topButtonStyle;
const style::PopupMenu *popupMenuStyle;
Ui::ChooseDateTimeStyleArgs chooseDateTimeArgs;
};
void ScheduleBox(
not_null<Ui::GenericBox*> box,
SendMenu::Type type,
Fn<void(Api::SendOptions)> done,
TimeId time,
ScheduleBoxStyleArgs style);
template <typename Guard, typename Submit>
[[nodiscard]] object_ptr<Ui::GenericBox> PrepareScheduleBox(
Guard &&guard,
SendMenu::Type type,
Submit &&submit,
TimeId scheduleTime = DefaultScheduleTime(),
ScheduleBoxStyleArgs style = ScheduleBoxStyleArgs()) {
return Box(
ScheduleBox,
type,
crl::guard(std::forward<Guard>(guard), std::forward<Submit>(submit)),
scheduleTime,
std::move(style));
}
} // namespace HistoryView