2014-05-30 08:53:19 +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.
|
2014-05-30 08:53:19 +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-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2019-02-15 11:24:58 +00:00
|
|
|
#include "platform/win/wrapper_windows_h.h"
|
2016-03-24 12:57:10 +00:00
|
|
|
|
2018-10-11 15:54:57 +00:00
|
|
|
class LocationCoords;
|
|
|
|
|
2017-05-02 09:08:08 +00:00
|
|
|
namespace Platform {
|
|
|
|
|
|
|
|
inline void SetWatchingMediaKeys(bool watching) {
|
|
|
|
}
|
|
|
|
|
2018-08-04 12:06:39 +00:00
|
|
|
bool IsApplicationActive();
|
|
|
|
|
2017-05-02 09:08:08 +00:00
|
|
|
inline bool TranslucentWindowsSupported(QPoint globalPosition) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void StartTranslucentPaint(QPainter &p, QPaintEvent *e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void InitOnTopPanel(QWidget *panel) {
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void DeInitOnTopPanel(QWidget *panel) {
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void ReInitOnTopPanel(QWidget *panel) {
|
|
|
|
}
|
|
|
|
|
2017-08-15 17:12:57 +00:00
|
|
|
QString CurrentExecutablePath(int argc, char *argv[]);
|
|
|
|
|
2017-04-13 17:59:05 +00:00
|
|
|
namespace ThirdParty {
|
|
|
|
|
|
|
|
inline void start() {
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void finish() {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ThirdParty
|
2017-05-02 09:08:08 +00:00
|
|
|
} // namespace Platform
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
inline QString psServerPrefix() {
|
|
|
|
return qsl("Global\\");
|
|
|
|
}
|
|
|
|
inline void psCheckLocalSocket(const QString &) {
|
|
|
|
}
|
|
|
|
|
2016-01-25 10:22:58 +00:00
|
|
|
void psWriteDump();
|
2016-01-21 06:58:58 +00:00
|
|
|
|
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();
|
2014-05-30 08:53:19 +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();
|
2014-09-30 14:11:09 +00:00
|
|
|
QString psAppDataPathOld();
|
2014-05-30 08:53:19 +00:00
|
|
|
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();
|
|
|
|
|
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(TWidget *widget);
|
2015-11-26 17:34:52 +00:00
|
|
|
inline QByteArray psDownloadPathBookmark(const QString &path) {
|
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
inline QByteArray psPathBookmark(const QString &path) {
|
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
inline void psDownloadPathEnableAccess() {
|
|
|
|
}
|
|
|
|
|
|
|
|
class PsFileBookmark {
|
|
|
|
public:
|
|
|
|
PsFileBookmark(const QByteArray &bookmark) {
|
|
|
|
}
|
|
|
|
bool check() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool enable() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
void disable() const {
|
|
|
|
}
|
|
|
|
const QString &name(const QString &original) const {
|
|
|
|
return original;
|
|
|
|
}
|
|
|
|
QByteArray bookmark() const {
|
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2016-02-17 16:37:21 +00:00
|
|
|
|
2016-02-28 13:54:04 +00:00
|
|
|
bool psLaunchMaps(const LocationCoords &coords);
|