2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 18:57:12 +00:00

73 lines
1.4 KiB
C
Raw Normal View History

2014-06-14 23:32:11 +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
2014-06-14 23:32:11 +04:00
*/
#pragma once
#include "platform/platform_specific.h"
2017-03-04 13:23:56 +03:00
#include "platform/mac/specific_mac_p.h"
2014-06-14 23:32:11 +04:00
2019-06-21 14:27:46 +02:00
namespace Data {
class LocationPoint;
} // namespace Data
namespace Platform {
inline bool AutostartSupported() {
return false;
}
inline void AutostartRequestStateFromSystem(Fn<void(bool)> callback) {
}
inline bool TrayIconSupported() {
return true;
}
inline bool SkipTaskbarSupported() {
return false;
}
2023-01-09 16:08:34 +04:00
void ActivateThisProcess();
inline uint64 ActivationWindowId(not_null<QWidget*> window) {
return 1;
}
inline void ActivateOtherProcess(uint64 processId, uint64 windowId) {
}
inline QString ExecutablePathForShortcuts() {
return cExeDir() + cExeName();
}
namespace ThirdParty {
inline void start() {
}
} // namespace ThirdParty
} // namespace Platform
inline void psCheckLocalSocket(const QString &serverName) {
QFile address(serverName);
if (address.exists()) {
address.remove();
}
}
QString psAppDataPath();
void psSendToMenu(bool send, bool silent = false);
int psCleanup();
int psFixPrevious();
void psDownloadPathEnableAccess();
QByteArray psDownloadPathBookmark(const QString &path);
QByteArray psPathBookmark(const QString &path);
2019-06-21 14:27:46 +02:00
bool psLaunchMaps(const Data::LocationPoint &point);