2014-05-30 12:53:19 +04:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2014-05-30 12:53:19 +04:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2019-02-15 15:24:58 +04:00
|
|
|
#include "platform/win/wrapper_windows_h.h"
|
2016-03-24 15:57:10 +03:00
|
|
|
|
2019-06-21 14:27:46 +02:00
|
|
|
namespace Data {
|
|
|
|
class LocationPoint;
|
|
|
|
} // namespace Data
|
2018-10-11 18:54:57 +03:00
|
|
|
|
2017-05-02 12:08:08 +03:00
|
|
|
namespace Platform {
|
|
|
|
|
|
|
|
inline void SetWatchingMediaKeys(bool watching) {
|
|
|
|
}
|
|
|
|
|
2018-08-04 15:06:39 +03:00
|
|
|
bool IsApplicationActive();
|
|
|
|
|
2017-05-02 12:08:08 +03: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 20:12:57 +03:00
|
|
|
QString CurrentExecutablePath(int argc, char *argv[]);
|
|
|
|
|
2017-04-13 20:59:05 +03:00
|
|
|
namespace ThirdParty {
|
|
|
|
|
2019-06-24 12:49:37 +02:00
|
|
|
void start();
|
2017-04-13 20:59:05 +03:00
|
|
|
|
|
|
|
inline void finish() {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ThirdParty
|
2017-05-02 12:08:08 +03:00
|
|
|
} // namespace Platform
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
inline QString psServerPrefix() {
|
|
|
|
return qsl("Global\\");
|
|
|
|
}
|
|
|
|
inline void psCheckLocalSocket(const QString &) {
|
|
|
|
}
|
|
|
|
|
2016-01-25 13:22:58 +03:00
|
|
|
void psWriteDump();
|
2016-01-21 14:58:58 +08:00
|
|
|
|
2015-06-03 21:13:01 +03:00
|
|
|
void psDeleteDir(const QString &dir);
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2015-01-18 12:23:03 +03:00
|
|
|
QStringList psInitLogs();
|
|
|
|
void psClearInitLogs();
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2014-09-26 16:48:19 -07:00
|
|
|
void psActivateProcess(uint64 pid = 0);
|
2014-05-30 12:53:19 +04:00
|
|
|
QString psLocalServerPrefix();
|
|
|
|
QString psAppDataPath();
|
2014-09-30 07:11:09 -07:00
|
|
|
QString psAppDataPathOld();
|
2014-05-30 12:53:19 +04:00
|
|
|
void psAutoStart(bool start, bool silent = false);
|
2014-07-18 14:37:34 +04:00
|
|
|
void psSendToMenu(bool send, bool silent = false);
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2014-07-06 07:32:21 +04:00
|
|
|
QRect psDesktopRect();
|
2014-10-17 16:57:14 +04:00
|
|
|
void psShowOverAll(QWidget *w, bool canFocus = true);
|
|
|
|
void psBringToBack(QWidget *w);
|
2014-07-06 07:32:21 +04:00
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
int psCleanup();
|
|
|
|
int psFixPrevious();
|
|
|
|
|
2015-08-13 18:11:07 +03:00
|
|
|
void psNewVersion();
|
2014-12-03 16:10:32 +03:00
|
|
|
|
2014-09-28 19:47:30 -07:00
|
|
|
void psUpdateOverlayed(TWidget *widget);
|
2015-11-26 20:34:52 +03: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 19:37:21 +03:00
|
|
|
|
2019-06-21 14:27:46 +02:00
|
|
|
bool psLaunchMaps(const Data::LocationPoint &point);
|