2014-06-14 19:32:11 +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-06-14 19:32:11 +00:00
|
|
|
*/
|
2014-05-30 08:53:19 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-03-04 10:23:56 +00:00
|
|
|
#include "platform/mac/specific_mac_p.h"
|
2014-06-14 19:32:11 +00:00
|
|
|
|
2018-10-25 13:04:21 +00:00
|
|
|
class LocationCoords;
|
|
|
|
|
2017-05-02 09:08:08 +00:00
|
|
|
namespace Platform {
|
|
|
|
|
|
|
|
inline bool TranslucentWindowsSupported(QPoint globalPosition) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-08-15 17:12:57 +00:00
|
|
|
QString CurrentExecutablePath(int argc, char *argv[]);
|
|
|
|
|
2019-01-29 10:09:37 +00:00
|
|
|
void RemoveQuarantine(const QString &path);
|
|
|
|
|
2017-05-02 09:08:08 +00:00
|
|
|
namespace ThirdParty {
|
|
|
|
|
|
|
|
inline void start() {
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void finish() {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ThirdParty
|
|
|
|
} // namespace Platform
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
inline QString psServerPrefix() {
|
2016-08-31 17:58:46 +00:00
|
|
|
#ifndef OS_MAC_STORE
|
2014-05-30 08:53:19 +00:00
|
|
|
return qsl("/tmp/");
|
2016-08-31 17:58:46 +00:00
|
|
|
#else // OS_MAC_STORE
|
|
|
|
return objc_documentsPath();
|
|
|
|
#endif // OS_MAC_STORE
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
inline void psCheckLocalSocket(const QString &serverName) {
|
|
|
|
QFile address(serverName);
|
|
|
|
if (address.exists()) {
|
|
|
|
address.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-30 18:24:18 +00:00
|
|
|
void psWriteDump();
|
|
|
|
|
2015-06-03 18:13:01 +00:00
|
|
|
void psDeleteDir(const QString &dir);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-01-18 09:23:03 +00:00
|
|
|
QStringList psInitLogs();
|
|
|
|
void psClearInitLogs();
|
2015-01-16 16:46:01 +00:00
|
|
|
|
2014-09-26 23:48:19 +00:00
|
|
|
void psActivateProcess(uint64 pid = 0);
|
2014-05-30 08:53:19 +00:00
|
|
|
QString psLocalServerPrefix();
|
|
|
|
QString psAppDataPath();
|
|
|
|
void psAutoStart(bool start, bool silent = false);
|
2014-07-18 10:37:34 +00:00
|
|
|
void psSendToMenu(bool send, bool silent = false);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-07-06 03:32:21 +00:00
|
|
|
QRect psDesktopRect();
|
2014-10-17 12:57:14 +00:00
|
|
|
void psShowOverAll(QWidget *w, bool canFocus = true);
|
|
|
|
void psBringToBack(QWidget *w);
|
2014-07-06 03:32:21 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
int psCleanup();
|
|
|
|
int psFixPrevious();
|
|
|
|
|
2015-01-21 10:20:23 +00:00
|
|
|
bool psShowOpenWithMenu(int x, int y, const QString &file);
|
|
|
|
|
2016-01-11 15:43:29 +00:00
|
|
|
QAbstractNativeEventFilter *psNativeEventFilter();
|
2014-09-29 02:47:30 +00:00
|
|
|
|
2015-08-13 15:11:07 +00:00
|
|
|
void psNewVersion();
|
2014-12-03 13:10:32 +00:00
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
void psUpdateOverlayed(QWidget *widget);
|
2014-11-25 12:16:36 +00:00
|
|
|
|
2015-11-26 17:34:52 +00:00
|
|
|
void psDownloadPathEnableAccess();
|
|
|
|
QByteArray psDownloadPathBookmark(const QString &path);
|
|
|
|
QByteArray psPathBookmark(const QString &path);
|
|
|
|
|
|
|
|
class PsFileBookmark {
|
|
|
|
public:
|
|
|
|
PsFileBookmark(const QByteArray &bookmark) : _inner(bookmark) {
|
|
|
|
}
|
|
|
|
bool check() const {
|
|
|
|
return _inner.valid();
|
|
|
|
}
|
|
|
|
bool enable() const {
|
|
|
|
return _inner.enable();
|
|
|
|
}
|
|
|
|
void disable() const {
|
|
|
|
return _inner.disable();
|
|
|
|
}
|
|
|
|
const QString &name(const QString &original) const {
|
|
|
|
return _inner.name(original);
|
|
|
|
}
|
|
|
|
QByteArray bookmark() const {
|
|
|
|
return _inner.bookmark();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
objc_FileBookmark _inner;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-11-25 12:16:36 +00:00
|
|
|
QString strNotificationAboutThemeChange();
|
2016-07-07 16:15:34 +00:00
|
|
|
QString strNotificationAboutScreenLocked();
|
|
|
|
QString strNotificationAboutScreenUnlocked();
|
2014-11-25 12:16:36 +00:00
|
|
|
QString strStyleOfInterface();
|
2017-11-15 12:46:34 +00:00
|
|
|
QString strTitleWrapClass();
|
|
|
|
QString strTitleClass();
|
2016-02-17 16:37:21 +00:00
|
|
|
|
2016-02-28 13:54:04 +00:00
|
|
|
bool psLaunchMaps(const LocationCoords &coords);
|