2021-02-15 17:37:22 +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
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
|
|
|
class GenericBox;
|
|
|
|
|
|
|
|
enum class ReportSource {
|
|
|
|
Message,
|
|
|
|
Channel,
|
|
|
|
Group,
|
|
|
|
Bot,
|
2022-04-17 11:48:53 +00:00
|
|
|
ProfilePhoto,
|
|
|
|
ProfileVideo,
|
2021-02-15 17:37:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class ReportReason {
|
|
|
|
Spam,
|
|
|
|
Fake,
|
|
|
|
Violence,
|
|
|
|
ChildAbuse,
|
|
|
|
Pornography,
|
2022-02-23 08:21:40 +00:00
|
|
|
Copyright,
|
2022-02-25 08:18:48 +00:00
|
|
|
IllegalDrugs,
|
|
|
|
PersonalDetails,
|
2021-02-15 17:37:22 +00:00
|
|
|
Other,
|
|
|
|
};
|
|
|
|
|
|
|
|
void ReportReasonBox(
|
|
|
|
not_null<GenericBox*> box,
|
|
|
|
ReportSource source,
|
|
|
|
Fn<void(ReportReason)> done);
|
|
|
|
|
|
|
|
void ReportDetailsBox(
|
|
|
|
not_null<GenericBox*> box,
|
|
|
|
Fn<void(QString)> done);
|
|
|
|
|
|
|
|
} // namespace Ui
|