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