/* 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 */ #include "ui/chat/attach/attach_extensions.h" #include #include namespace Ui { const QStringList &ImageExtensions() { static const auto result = [] { const auto formats = QImageReader::supportedImageFormats(); return formats | ranges::views::transform([](const auto &format) { return '.' + format.toLower(); }) | ranges::views::filter([](const auto &format) { const auto mimes = QMimeDatabase().mimeTypesForFileName( u"test"_q + format); return !mimes.isEmpty() && mimes.front().name().startsWith(u"image/"_q); }) | ranges::to; }(); return result; } } // namespace Ui