2023-01-30 10:10:42 +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
|
|
|
|
|
|
|
|
struct LanguageId;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
|
|
|
class GenericBox;
|
|
|
|
|
|
|
|
[[nodiscard]] QString LanguageNameTranslated(const QString &twoLetterCode);
|
|
|
|
[[nodiscard]] QString LanguageName(LanguageId id);
|
|
|
|
[[nodiscard]] QString LanguageNameNative(LanguageId id);
|
|
|
|
|
|
|
|
void ChooseLanguageBox(
|
|
|
|
not_null<GenericBox*> box,
|
|
|
|
rpl::producer<QString> title,
|
|
|
|
Fn<void(std::vector<LanguageId>)> callback,
|
2023-02-03 07:20:09 +00:00
|
|
|
std::vector<LanguageId> selected,
|
|
|
|
bool multiselect);
|
2023-01-30 10:10:42 +00:00
|
|
|
|
|
|
|
} // namespace Ui
|