mirror of https://github.com/procxx/kepka.git
128 lines
3.2 KiB
C++
128 lines
3.2 KiB
C++
//
|
|
// This file is part of Kepka,
|
|
// an unofficial desktop version of Telegram messaging app,
|
|
// see https://github.com/procxx/kepka
|
|
//
|
|
// Kepka 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.
|
|
//
|
|
// 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.
|
|
//
|
|
// In addition, as a special exception, the copyright holders give permission
|
|
// to link the code of portions of this program with the OpenSSL library.
|
|
//
|
|
// Full license: https://github.com/procxx/kepka/blob/master/LICENSE
|
|
// Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
|
// Copyright (c) 2017- Kepka Contributors, https://github.com/procxx
|
|
//
|
|
#pragma once
|
|
|
|
#include "base/timer.h" // TimeMs
|
|
|
|
#include <execinfo.h>
|
|
#include <signal.h>
|
|
|
|
#include <QFile>
|
|
#include <QString>
|
|
|
|
class QWidget;
|
|
class QPainter;
|
|
class QPaintEvent;
|
|
class QAbstractNativeEventFilter;
|
|
class LocationCoords;
|
|
|
|
namespace Platform {
|
|
|
|
inline void SetWatchingMediaKeys(bool watching) {}
|
|
|
|
inline void StartTranslucentPaint(QPainter &p, QPaintEvent *e) {}
|
|
|
|
inline void InitOnTopPanel(QWidget *panel) {}
|
|
|
|
inline void DeInitOnTopPanel(QWidget *panel) {}
|
|
|
|
inline void ReInitOnTopPanel(QWidget *panel) {}
|
|
|
|
QString CurrentExecutablePath(int argc, char *argv[]);
|
|
|
|
} // namespace Platform
|
|
|
|
inline QString psServerPrefix() {
|
|
return QStringLiteral("/tmp/");
|
|
}
|
|
inline void psCheckLocalSocket(const QString &serverName) {
|
|
QFile address(serverName);
|
|
if (address.exists()) {
|
|
address.remove();
|
|
}
|
|
}
|
|
|
|
void psWriteDump();
|
|
QString psPrepareCrashDump(const QByteArray &crashdump, QString dumpfile);
|
|
|
|
void psDeleteDir(const QString &dir);
|
|
|
|
void psUserActionDone();
|
|
bool psIdleSupported();
|
|
TimeMs psIdleTime();
|
|
|
|
QStringList psInitLogs();
|
|
void psClearInitLogs();
|
|
|
|
void psActivateProcess(quint64 pid = 0);
|
|
QString psLocalServerPrefix();
|
|
QString psAppDataPath();
|
|
QString psDownloadPath();
|
|
void psAutoStart(bool start, bool silent = false);
|
|
void psSendToMenu(bool send, bool silent = false);
|
|
|
|
QRect psDesktopRect();
|
|
void psShowOverAll(QWidget *w, bool canFocus = true);
|
|
void psBringToBack(QWidget *w);
|
|
|
|
int psCleanup();
|
|
int psFixPrevious();
|
|
|
|
void psExecUpdater();
|
|
void psExecTelegram(const QString &arg = QString());
|
|
|
|
QAbstractNativeEventFilter *psNativeEventFilter();
|
|
|
|
void psNewVersion();
|
|
|
|
void psUpdateOverlayed(QWidget *widget);
|
|
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();
|
|
}
|
|
};
|
|
|
|
bool linuxMoveFile(const char *from, const char *to);
|
|
|
|
bool psLaunchMaps(const LocationCoords &coords);
|