2014-06-14 23:32:11 +04:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 13:47:38 +03:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2016-01-11 23:43:29 +08:00
|
|
|
|
2014-06-14 23:32:11 +04:00
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2016-01-11 23:43:29 +08:00
|
|
|
|
2014-06-14 23:32:11 +04:00
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2016-01-11 23:43:29 +08:00
|
|
|
|
2014-06-14 23:32:11 +04:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 22:31:31 +04:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2014-06-14 23:32:11 +04:00
|
|
|
*/
|
2014-05-30 12:53:19 +04:00
|
|
|
#pragma once
|
|
|
|
|
2014-06-14 23:32:11 +04:00
|
|
|
#include "pspecific_mac_p.h"
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
inline QString psServerPrefix() {
|
2016-08-31 11:58:46 -06:00
|
|
|
#ifndef OS_MAC_STORE
|
2014-05-30 12:53:19 +04:00
|
|
|
return qsl("/tmp/");
|
2016-08-31 11:58:46 -06:00
|
|
|
#else // OS_MAC_STORE
|
|
|
|
return objc_documentsPath();
|
|
|
|
#endif // OS_MAC_STORE
|
2014-05-30 12:53:19 +04:00
|
|
|
}
|
|
|
|
inline void psCheckLocalSocket(const QString &serverName) {
|
|
|
|
QFile address(serverName);
|
|
|
|
if (address.exists()) {
|
|
|
|
address.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-30 21:24:18 +03:00
|
|
|
void psWriteDump();
|
2016-01-31 21:01:43 +03:00
|
|
|
QString psPrepareCrashDump(const QByteArray &crashdump, QString dumpfile);
|
2016-01-30 21:24:18 +03:00
|
|
|
|
2015-06-03 21:13:01 +03:00
|
|
|
void psDeleteDir(const QString &dir);
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2015-01-26 16:04:41 +03:00
|
|
|
void psUserActionDone();
|
2015-03-02 15:34:16 +03:00
|
|
|
bool psIdleSupported();
|
2016-12-01 22:20:33 +03:00
|
|
|
TimeMs psIdleTime();
|
2015-01-26 16:04:41 +03:00
|
|
|
|
2015-01-18 12:23:03 +03:00
|
|
|
QStringList psInitLogs();
|
|
|
|
void psClearInitLogs();
|
2015-01-16 19:46:01 +03: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 psCurrentCountry();
|
|
|
|
QString psCurrentLanguage();
|
|
|
|
QString psAppDataPath();
|
2014-09-30 07:11:09 -07:00
|
|
|
QString psDownloadPath();
|
2014-06-14 23:32:11 +04:00
|
|
|
QString psCurrentExeDirectory(int argc, char *argv[]);
|
2014-11-27 21:20:48 +03:00
|
|
|
QString psCurrentExeName(int argc, char *argv[]);
|
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();
|
|
|
|
|
|
|
|
void psExecUpdater();
|
2016-01-30 21:24:18 +03:00
|
|
|
void psExecTelegram(const QString &crashreport = QString());
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2015-01-21 13:20:23 +03:00
|
|
|
bool psShowOpenWithMenu(int x, int y, const QString &file);
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
void psPostprocessFile(const QString &name);
|
|
|
|
void psOpenFile(const QString &name, bool openWith = false);
|
|
|
|
void psShowInFolder(const QString &name);
|
2016-01-11 23:43:29 +08:00
|
|
|
|
|
|
|
QAbstractNativeEventFilter *psNativeEventFilter();
|
2014-09-28 19:47:30 -07:00
|
|
|
|
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(QWidget *widget);
|
2014-11-25 15:16:36 +03:00
|
|
|
|
2015-11-26 20:34:52 +03:00
|
|
|
void psDownloadPathEnableAccess();
|
|
|
|
QByteArray psDownloadPathBookmark(const QString &path);
|
|
|
|
QByteArray psPathBookmark(const QString &path);
|
|
|
|
|
|
|
|
class PsFileBookmark {
|
|
|
|
public:
|
|
|
|
PsFileBookmark(const QByteArray &bookmark) : _inner(bookmark) {
|
|
|
|
}
|
|
|
|
bool check() const {
|
|
|
|
return _inner.valid();
|
|
|
|
}
|
|
|
|
bool enable() const {
|
|
|
|
return _inner.enable();
|
|
|
|
}
|
|
|
|
void disable() const {
|
|
|
|
return _inner.disable();
|
|
|
|
}
|
|
|
|
const QString &name(const QString &original) const {
|
|
|
|
return _inner.name(original);
|
|
|
|
}
|
|
|
|
QByteArray bookmark() const {
|
|
|
|
return _inner.bookmark();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
objc_FileBookmark _inner;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-11-25 15:16:36 +03:00
|
|
|
QString strNotificationAboutThemeChange();
|
2016-07-07 19:15:34 +03:00
|
|
|
QString strNotificationAboutScreenLocked();
|
|
|
|
QString strNotificationAboutScreenUnlocked();
|
2014-11-25 15:16:36 +03:00
|
|
|
QString strStyleOfInterface();
|
|
|
|
QString strNeedToReload();
|
|
|
|
QString strNeedToRefresh1();
|
|
|
|
QString strNeedToRefresh2();
|
2016-02-17 19:37:21 +03:00
|
|
|
|
2016-02-28 16:54:04 +03:00
|
|
|
bool psLaunchMaps(const LocationCoords &coords);
|