summaryrefslogtreecommitdiffstats
path: root/Telegram/SourceFiles/platform/linux/linux_gtk_integration.h
blob: 4a24bd3882d0465429336ff5428e2284d40772d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
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 internal {

class GtkIntegration {
public:
	static GtkIntegration *Instance();

	void load();
	[[nodiscard]] bool loaded() const;

	[[nodiscard]] std::optional<int> scaleFactor() const;

	using FileDialogType = ::FileDialog::internal::Type;
	[[nodiscard]] bool fileDialogSupported() const;
	[[nodiscard]] bool useFileDialog(
		FileDialogType type = FileDialogType::ReadFile) const;
	[[nodiscard]] bool getFileDialog(
		QPointer<QWidget> parent,
		QStringList &files,
		QByteArray &remoteContent,
		const QString &caption,
		const QString &filter,
		FileDialogType type,
		QString startFile) const;
	
	[[nodiscard]] bool showOpenWithDialog(const QString &filepath) const;

	[[nodiscard]] QImage getImageFromClipboard() const;

private:
	GtkIntegration();
};

} // namespace internal
} // namespace Platform