2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-25 11:47:29 +00:00

109 lines
2.1 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 {
2020-07-23 12:30:20 +04:00
[[nodiscard]] bool IsDarkMenuBar();
inline QImage GetClipboardImage() {
return {};
}
inline bool SetClipboardImage(const QImage &image) {
return false;
}
inline bool StartSystemMove(QWindow *window) {
return false;
}
inline bool StartSystemResize(QWindow *window, Qt::Edges edges) {
return false;
}
inline bool ShowWindowMenu(QWindow *window) {
return false;
}
inline bool AutostartSupported() {
return false;
}
inline bool TrayIconSupported() {
return true;
}
inline bool SkipTaskbarSupported() {
return false;
}
inline bool SetWindowExtents(QWindow *window, const QMargins &extents) {
return false;
}
inline bool UnsetWindowExtents(QWindow *window) {
return false;
}
inline bool WindowsNeedShadow() {
return false;
}
namespace ThirdParty {
inline void start() {
}
inline void finish() {
}
} // namespace ThirdParty
} // namespace Platform
inline void psCheckLocalSocket(const QString &serverName) {
QFile address(serverName);
if (address.exists()) {
address.remove();
}
}
2016-01-30 21:24:18 +03:00
void psWriteDump();
void psActivateProcess(uint64 pid = 0);
QString psAppDataPath();
void psAutoStart(bool start, bool silent = false);
void psSendToMenu(bool send, bool silent = false);
QRect psDesktopRect();
int psCleanup();
int psFixPrevious();
void psNewVersion();
void psDownloadPathEnableAccess();
QByteArray psDownloadPathBookmark(const QString &path);
QByteArray psPathBookmark(const QString &path);
2014-11-25 15:16:36 +03:00
QString strNotificationAboutThemeChange();
QString strNotificationAboutScreenLocked();
QString strNotificationAboutScreenUnlocked();
2014-11-25 15:16:36 +03:00
QString strStyleOfInterface();
QString strTitleWrapClass();
QString strTitleClass();
2019-06-21 14:27:46 +02:00
bool psLaunchMaps(const Data::LocationPoint &point);