2016-07-06 21:30:14 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-07-06 21:30:14 +03:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-07-06 21:30:14 +03:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-28 13:51:00 +03:00
|
|
|
#include "platform/platform_file_utilities.h"
|
2016-07-06 21:30:14 +03:00
|
|
|
|
|
|
|
namespace Platform {
|
2017-02-28 13:51:00 +03:00
|
|
|
namespace File {
|
|
|
|
|
|
|
|
inline QString UrlToLocal(const QUrl &url) {
|
2017-02-28 17:05:30 +03:00
|
|
|
return ::File::internal::UrlToLocalDefault(url);
|
|
|
|
}
|
|
|
|
|
2023-01-20 09:16:51 +04:00
|
|
|
inline bool UnsafeShowOpenWithDropdown(const QString &filepath) {
|
2017-02-28 17:05:30 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void PostprocessDownloaded(const QString &filepath) {
|
2017-02-28 13:51:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace File
|
|
|
|
|
2016-07-06 21:30:14 +03:00
|
|
|
namespace FileDialog {
|
|
|
|
|
2017-02-28 17:05:30 +03:00
|
|
|
inline void InitLastPath() {
|
|
|
|
::FileDialog::internal::InitLastPathDefault();
|
|
|
|
}
|
2016-07-06 21:30:14 +03:00
|
|
|
|
|
|
|
} // namespace FileDialog
|
|
|
|
} // namespace Platform
|