2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-28 04:59:04 +00:00
tdesktop/Telegram/SourceFiles/platform/linux/linux_gtk_file_dialog.h

28 lines
626 B
C
Raw Normal View History

2021-01-10 07:51:38 +04: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
#include "core/file_utilities.h"
namespace Platform {
namespace FileDialog {
namespace Gtk {
2021-06-23 03:20:40 +04:00
std::optional<bool> Get(
2021-02-05 16:22:02 +04:00
QPointer<QWidget> parent,
QStringList &files,
QByteArray &remoteContent,
const QString &caption,
const QString &filter,
2021-06-23 03:20:40 +04:00
::FileDialog::internal::Type type,
2021-02-05 16:22:02 +04:00
QString startFile);
2021-01-10 07:51:38 +04:00
} // namespace Gtk
} // namespace FileDialog
} // namespace Platform