2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 02:37:11 +00:00

78 lines
1.5 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"
2023-11-13 22:27:31 +04:00
#include <windows.h>
2019-06-21 14:27:46 +02:00
namespace Data {
class LocationPoint;
} // namespace Data
2018-10-11 18:54:57 +03:00
namespace Platform {
2019-09-16 14:14:06 +03:00
inline void IgnoreApplicationActivationRightNow() {
}
inline bool TrayIconSupported() {
return true;
}
inline bool SkipTaskbarSupported() {
return true;
}
inline bool PreventsQuit(Core::QuitReason reason) {
return false;
}
2023-01-09 16:08:34 +04:00
inline void ActivateThisProcess() {
}
// 1 - secondary, 2 - primary.
void SetWindowPriority(not_null<QWidget*> window, uint32 priority);
[[nodiscard]] uint64 ActivationWindowId(not_null<QWidget*> window);
// Activate window with windowId (if found) or the largest priority.
void ActivateOtherProcess(uint64 processId, uint64 windowId);
inline QString ApplicationIconName() {
return {};
}
inline QString ExecutablePathForShortcuts() {
return cExeDir() + cExeName();
}
namespace ThirdParty {
void start();
} // namespace ThirdParty
} // namespace Platform
inline void psCheckLocalSocket(const QString &) {
}
QString psAppDataPath();
QString psAppDataPathOld();
void psSendToMenu(bool send, bool silent = false);
int psCleanup();
int psFixPrevious();
inline QByteArray psDownloadPathBookmark(const QString &path) {
return QByteArray();
}
inline void psDownloadPathEnableAccess() {
}
2019-06-21 14:27:46 +02:00
bool psLaunchMaps(const Data::LocationPoint &point);