2021-02-11 14:46:46 +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 "ui/layers/generic_box.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
|
|
|
void AutoDeleteSettingsBox(
|
|
|
|
not_null<Ui::GenericBox*> box,
|
2021-02-15 10:31:04 +00:00
|
|
|
TimeId ttlPeriod,
|
|
|
|
rpl::producer<QString> about,
|
|
|
|
Fn<void(TimeId)> callback);
|
2021-02-11 14:46:46 +00:00
|
|
|
|
|
|
|
} // namespace Ui
|