2014-07-08 10:24:21 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2016-01-11 15:43:29 +00:00
|
|
|
|
2014-07-08 10:24:21 +00: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 15:43:29 +00:00
|
|
|
|
2014-07-08 10:24:21 +00: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 15:43:29 +00:00
|
|
|
|
2014-07-08 10:24:21 +00:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 18:31:31 +00:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2014-07-08 10:24:21 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2015-09-25 15:03:57 +00:00
|
|
|
#include <execinfo.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
2014-07-08 10:24:21 +00:00
|
|
|
inline QString psServerPrefix() {
|
|
|
|
return qsl("/tmp/");
|
|
|
|
}
|
|
|
|
inline void psCheckLocalSocket(const QString &serverName) {
|
|
|
|
QFile address(serverName);
|
|
|
|
if (address.exists()) {
|
|
|
|
address.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-30 18:24:42 +00:00
|
|
|
void psWriteDump();
|
2016-01-31 18:01:43 +00:00
|
|
|
QString psPrepareCrashDump(const QByteArray &crashdump, QString dumpfile);
|
2016-01-30 18:24:42 +00:00
|
|
|
|
2015-06-03 18:13:01 +00:00
|
|
|
void psDeleteDir(const QString &dir);
|
2014-07-08 10:24:21 +00:00
|
|
|
|
2015-01-26 13:04:41 +00:00
|
|
|
void psUserActionDone();
|
2015-03-02 12:34:16 +00:00
|
|
|
bool psIdleSupported();
|
2016-12-01 19:20:33 +00:00
|
|
|
TimeMs psIdleTime();
|
2016-01-11 15:43:29 +00:00
|
|
|
|
2015-01-18 09:23:03 +00:00
|
|
|
QStringList psInitLogs();
|
|
|
|
void psClearInitLogs();
|
2015-01-16 16:46:01 +00:00
|
|
|
|
2014-09-26 23:48:19 +00:00
|
|
|
void psActivateProcess(uint64 pid = 0);
|
2014-07-08 10:24:21 +00:00
|
|
|
QString psLocalServerPrefix();
|
|
|
|
QString psCurrentCountry();
|
|
|
|
QString psCurrentLanguage();
|
|
|
|
QString psAppDataPath();
|
2014-09-30 14:11:09 +00:00
|
|
|
QString psDownloadPath();
|
2014-07-08 10:24:21 +00:00
|
|
|
QString psCurrentExeDirectory(int argc, char *argv[]);
|
2014-11-27 18:20:48 +00:00
|
|
|
QString psCurrentExeName(int argc, char *argv[]);
|
2014-07-08 10:24:21 +00:00
|
|
|
void psAutoStart(bool start, bool silent = false);
|
2014-07-18 10:37:34 +00:00
|
|
|
void psSendToMenu(bool send, bool silent = false);
|
2014-07-08 10:24:21 +00:00
|
|
|
|
2014-07-09 05:54:12 +00:00
|
|
|
QRect psDesktopRect();
|
2014-10-17 12:57:14 +00:00
|
|
|
void psShowOverAll(QWidget *w, bool canFocus = true);
|
|
|
|
void psBringToBack(QWidget *w);
|
2014-07-09 05:54:12 +00:00
|
|
|
|
2014-07-08 10:24:21 +00:00
|
|
|
int psCleanup();
|
|
|
|
int psFixPrevious();
|
|
|
|
|
|
|
|
void psExecUpdater();
|
2016-01-30 18:24:42 +00:00
|
|
|
void psExecTelegram(const QString &arg = QString());
|
2014-07-08 10:24:21 +00:00
|
|
|
|
2015-01-21 10:20:23 +00:00
|
|
|
bool psShowOpenWithMenu(int x, int y, const QString &file);
|
|
|
|
|
2014-07-08 10:24:21 +00:00
|
|
|
void psPostprocessFile(const QString &name);
|
|
|
|
void psOpenFile(const QString &name, bool openWith = false);
|
|
|
|
void psShowInFolder(const QString &name);
|
2016-01-11 15:43:29 +00:00
|
|
|
|
|
|
|
QAbstractNativeEventFilter *psNativeEventFilter();
|
2014-09-29 02:47:30 +00:00
|
|
|
|
2015-08-13 15:11:07 +00:00
|
|
|
void psNewVersion();
|
2014-12-03 13:10:32 +00:00
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
void psUpdateOverlayed(QWidget *widget);
|
2015-11-26 17:34:52 +00:00
|
|
|
inline QByteArray psDownloadPathBookmark(const QString &path) {
|
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
inline QByteArray psPathBookmark(const QString &path) {
|
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
inline void psDownloadPathEnableAccess() {
|
|
|
|
}
|
|
|
|
|
|
|
|
class PsFileBookmark {
|
|
|
|
public:
|
|
|
|
PsFileBookmark(const QByteArray &bookmark) {
|
|
|
|
}
|
|
|
|
bool check() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool enable() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
void disable() const {
|
|
|
|
}
|
|
|
|
const QString &name(const QString &original) const {
|
|
|
|
return original;
|
|
|
|
}
|
|
|
|
QByteArray bookmark() const {
|
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2015-06-03 18:13:01 +00:00
|
|
|
|
|
|
|
bool linuxMoveFile(const char *from, const char *to);
|
2016-02-17 16:37:21 +00:00
|
|
|
|
2016-02-28 13:54:04 +00:00
|
|
|
bool psLaunchMaps(const LocationCoords &coords);
|