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 14:05:30 +00:00
|
|
|
#include "core/file_utilities.h"
|
2016-07-06 18:30:14 +00:00
|
|
|
|
|
|
|
namespace Platform {
|
2017-02-28 10:51:00 +00:00
|
|
|
namespace File {
|
|
|
|
|
|
|
|
QString UrlToLocal(const QUrl &url);
|
2016-11-28 15:45:07 +00:00
|
|
|
|
2017-02-28 14:05:30 +00:00
|
|
|
// All these functions may enter a nested event loop. Use with caution.
|
2020-04-28 08:26:12 +00:00
|
|
|
void UnsafeOpenUrl(const QString &url);
|
2017-02-28 14:05:30 +00:00
|
|
|
void UnsafeOpenEmailLink(const QString &email);
|
|
|
|
bool UnsafeShowOpenWithDropdown(const QString &filepath, QPoint menuPosition);
|
|
|
|
bool UnsafeShowOpenWith(const QString &filepath);
|
|
|
|
void UnsafeLaunch(const QString &filepath);
|
|
|
|
|
|
|
|
void PostprocessDownloaded(const QString &filepath);
|
|
|
|
|
2017-02-28 10:51:00 +00:00
|
|
|
} // namespace File
|
2016-11-28 15:45:07 +00:00
|
|
|
|
2017-02-28 10:51:00 +00:00
|
|
|
namespace FileDialog {
|
|
|
|
|
2017-02-28 14:05:30 +00:00
|
|
|
void InitLastPath();
|
2016-11-28 15:45:07 +00:00
|
|
|
|
2018-04-17 15:19:34 +00:00
|
|
|
bool Get(
|
|
|
|
QPointer<QWidget> parent,
|
|
|
|
QStringList &files,
|
|
|
|
QByteArray &remoteContent,
|
|
|
|
const QString &caption,
|
|
|
|
const QString &filter,
|
|
|
|
::FileDialog::internal::Type type,
|
|
|
|
QString startFile = QString());
|
2016-11-28 15:45:07 +00:00
|
|
|
|
2016-07-06 18:30:14 +00:00
|
|
|
} // namespace FileDialog
|
|
|
|
} // namespace Platform
|
2016-11-28 15:45:07 +00:00
|
|
|
|
2017-02-28 10:51:00 +00:00
|
|
|
// Platform dependent implementations.
|
|
|
|
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
#include "platform/mac/file_utilities_mac.h"
|
2020-06-13 01:03:23 +00:00
|
|
|
#elif defined Q_OS_UNIX // Q_OS_MAC
|
2017-02-28 10:51:00 +00:00
|
|
|
#include "platform/linux/file_utilities_linux.h"
|
2020-06-13 01:03:23 +00:00
|
|
|
#elif defined Q_OS_WINRT || defined Q_OS_WIN // Q_OS_MAC || Q_OS_UNIX
|
2017-02-28 10:51:00 +00:00
|
|
|
#include "platform/win/file_utilities_win.h"
|
2020-06-13 01:03:23 +00:00
|
|
|
#endif // Q_OS_MAC || Q_OS_UNIX || Q_OS_WINRT || Q_OS_WIN
|