2014-07-08 10:24:21 +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-01-11 15:43:29 +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
|
2014-07-08 10:24:21 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2019-07-04 13:33:11 +00:00
|
|
|
#include "platform/platform_specific.h"
|
|
|
|
|
2019-06-21 12:27:46 +00:00
|
|
|
namespace Data {
|
|
|
|
class LocationPoint;
|
|
|
|
} // namespace Data
|
2018-10-25 13:04:21 +00:00
|
|
|
|
2017-05-02 09:08:08 +00:00
|
|
|
namespace Platform {
|
|
|
|
|
2020-06-01 08:34:51 +00:00
|
|
|
bool InFlatpak();
|
2020-01-30 18:41:24 +00:00
|
|
|
bool InSnap();
|
2020-01-29 17:41:42 +00:00
|
|
|
|
2020-01-31 06:34:37 +00:00
|
|
|
QString AppRuntimeDirectory();
|
2020-02-26 11:38:31 +00:00
|
|
|
QString GetIconName();
|
|
|
|
|
2020-11-06 07:57:34 +00:00
|
|
|
void InstallLauncher(bool force = false);
|
|
|
|
|
2019-09-16 11:14:06 +00:00
|
|
|
inline void IgnoreApplicationActivationRightNow() {
|
|
|
|
}
|
|
|
|
|
2021-05-03 13:34:33 +00:00
|
|
|
inline void WriteCrashDumpDetails() {
|
|
|
|
}
|
|
|
|
|
2021-11-04 08:35:34 +00:00
|
|
|
inline void AutostartRequestStateFromSystem(Fn<void(bool)> callback) {
|
|
|
|
}
|
|
|
|
|
2017-05-02 09:08:08 +00:00
|
|
|
} // namespace Platform
|
|
|
|
|
2014-07-08 10:24:21 +00:00
|
|
|
inline void psCheckLocalSocket(const QString &serverName) {
|
2020-01-02 11:25:52 +00:00
|
|
|
QFile address(serverName);
|
2014-07-08 10:24:21 +00:00
|
|
|
if (address.exists()) {
|
|
|
|
address.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-26 23:48:19 +00:00
|
|
|
void psActivateProcess(uint64 pid = 0);
|
2014-07-08 10:24:21 +00:00
|
|
|
QString psAppDataPath();
|
2014-07-18 10:37:34 +00:00
|
|
|
void psSendToMenu(bool send, bool silent = false);
|
2014-07-08 10:24:21 +00:00
|
|
|
|
|
|
|
int psCleanup();
|
|
|
|
int psFixPrevious();
|
|
|
|
|
2015-08-13 15:11:07 +00:00
|
|
|
void psNewVersion();
|
2014-12-03 13:10:32 +00:00
|
|
|
|
2015-11-26 17:34:52 +00:00
|
|
|
inline QByteArray psDownloadPathBookmark(const QString &path) {
|
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
inline void psDownloadPathEnableAccess() {
|
|
|
|
}
|
|
|
|
|
2015-06-03 18:13:01 +00:00
|
|
|
bool linuxMoveFile(const char *from, const char *to);
|
2016-02-17 16:37:21 +00:00
|
|
|
|
2019-06-21 12:27:46 +00:00
|
|
|
bool psLaunchMaps(const Data::LocationPoint &point);
|