74 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
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"
 | 
						|
#include "platform/mac/specific_mac_p.h"
 | 
						|
 | 
						|
namespace Data {
 | 
						|
class LocationPoint;
 | 
						|
} // namespace Data
 | 
						|
 | 
						|
namespace Platform {
 | 
						|
 | 
						|
[[nodiscard]] bool IsDarkMenuBar();
 | 
						|
 | 
						|
inline bool AutostartSupported() {
 | 
						|
	return false;
 | 
						|
}
 | 
						|
 | 
						|
inline void AutostartRequestStateFromSystem(Fn<void(bool)> callback) {
 | 
						|
}
 | 
						|
 | 
						|
inline bool TrayIconSupported() {
 | 
						|
	return true;
 | 
						|
}
 | 
						|
 | 
						|
inline bool SkipTaskbarSupported() {
 | 
						|
	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();
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void psActivateProcess(uint64 pid = 0);
 | 
						|
QString psAppDataPath();
 | 
						|
void psSendToMenu(bool send, bool silent = false);
 | 
						|
 | 
						|
int psCleanup();
 | 
						|
int psFixPrevious();
 | 
						|
 | 
						|
void psNewVersion();
 | 
						|
 | 
						|
void psDownloadPathEnableAccess();
 | 
						|
QByteArray psDownloadPathBookmark(const QString &path);
 | 
						|
QByteArray psPathBookmark(const QString &path);
 | 
						|
 | 
						|
QString strNotificationAboutThemeChange();
 | 
						|
QString strNotificationAboutScreenLocked();
 | 
						|
QString strNotificationAboutScreenUnlocked();
 | 
						|
QString strStyleOfInterface();
 | 
						|
QString strTitleWrapClass();
 | 
						|
QString strTitleClass();
 | 
						|
 | 
						|
bool psLaunchMaps(const Data::LocationPoint &point);
 |