tdesktop/Telegram/SourceFiles/platform/win/specific_win.h

96 lines
1.7 KiB
C
Raw Normal View History

/*
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
*/
#pragma once
#include "platform/platform_specific.h"
2019-09-26 10:20:34 +00:00
#include "base/platform/win/base_windows_h.h"
2019-06-21 12:27:46 +00:00
namespace Data {
class LocationPoint;
} // namespace Data
2018-10-11 15:54:57 +00:00
namespace Platform {
inline void SetWatchingMediaKeys(bool watching) {
}
2019-09-16 11:14:06 +00:00
inline void IgnoreApplicationActivationRightNow() {
}
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 TrayIconSupported() {
return true;
}
inline bool SkipTaskbarSupported() {
return true;
}
inline bool SetWindowExtents(QWindow *window, const QMargins &extents) {
return false;
}
inline bool UnsetWindowExtents(QWindow *window) {
return false;
}
inline bool WindowsNeedShadow() {
return false;
}
namespace ThirdParty {
void start();
inline void finish() {
}
} // namespace ThirdParty
} // namespace Platform
inline void psCheckLocalSocket(const QString &) {
}
void psWriteDump();
void psActivateProcess(uint64 pid = 0);
QString psAppDataPath();
QString psAppDataPathOld();
void psAutoStart(bool start, bool silent = false);
void psSendToMenu(bool send, bool silent = false);
QRect psDesktopRect();
int psCleanup();
int psFixPrevious();
void psNewVersion();
inline QByteArray psDownloadPathBookmark(const QString &path) {
return QByteArray();
}
inline void psDownloadPathEnableAccess() {
}
2019-06-21 12:27:46 +00:00
bool psLaunchMaps(const Data::LocationPoint &point);