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
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2014-12-01 10:47:38 +00:00
|
|
|
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
2014-07-08 10:24:21 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
inline QString psServerPrefix() {
|
|
|
|
return qsl("/tmp/");
|
|
|
|
}
|
|
|
|
inline void psCheckLocalSocket(const QString &serverName) {
|
|
|
|
QFile address(serverName);
|
|
|
|
if (address.exists()) {
|
|
|
|
address.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-09 05:54:12 +00:00
|
|
|
class NotifyWindow;
|
2014-07-08 10:24:21 +00:00
|
|
|
|
|
|
|
class PsMainWindow : public QMainWindow {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
PsMainWindow(QWidget *parent = 0);
|
|
|
|
|
|
|
|
int32 psResizeRowWidth() const {
|
|
|
|
return 0;//st::wndResizeAreaWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
void psInitFrameless();
|
|
|
|
void psInitSize();
|
|
|
|
|
|
|
|
void psFirstShow();
|
|
|
|
void psInitSysMenu();
|
|
|
|
void psUpdateSysMenu(Qt::WindowState state);
|
|
|
|
void psUpdateMargins();
|
|
|
|
void psUpdatedPosition();
|
|
|
|
|
|
|
|
bool psHandleTitle();
|
|
|
|
|
|
|
|
void psFlash();
|
|
|
|
void psNotifySettingGot();
|
|
|
|
|
|
|
|
void psUpdateWorkmode();
|
|
|
|
|
|
|
|
void psRefreshTaskbarIcon();
|
|
|
|
|
|
|
|
bool psPosInited() const {
|
|
|
|
return posInited;
|
|
|
|
}
|
2014-07-09 05:54:12 +00:00
|
|
|
|
|
|
|
void psActivateNotify(NotifyWindow *w);
|
|
|
|
void psClearNotifies(PeerId peerId = 0);
|
|
|
|
void psNotifyShown(NotifyWindow *w);
|
2015-04-23 15:50:11 +00:00
|
|
|
void psPlatformNotify(HistoryItem *item, int32 fwdCount);
|
2014-07-09 05:54:12 +00:00
|
|
|
|
2014-12-15 15:55:45 +00:00
|
|
|
void psUpdateCounter();
|
|
|
|
|
|
|
|
virtual QImage iconWithCounter(int size, int count, style::color bg, bool smallIcon) = 0;
|
|
|
|
|
2014-07-08 10:24:21 +00:00
|
|
|
~PsMainWindow();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
2014-09-20 21:31:03 +00:00
|
|
|
void psUpdateDelegate();
|
2014-07-08 10:24:21 +00:00
|
|
|
void psSavePosition(Qt::WindowState state = Qt::WindowActive);
|
2014-09-29 02:47:30 +00:00
|
|
|
void psShowTrayMenu();
|
2014-07-08 10:24:21 +00:00
|
|
|
|
2015-01-15 14:22:15 +00:00
|
|
|
void psStatusIconCheck();
|
|
|
|
void psUpdateIndicator();
|
|
|
|
|
2014-07-08 10:24:21 +00:00
|
|
|
protected:
|
|
|
|
|
2015-01-15 14:22:15 +00:00
|
|
|
bool psHasTrayIcon() const;
|
2014-07-08 10:24:21 +00:00
|
|
|
|
|
|
|
bool posInited;
|
|
|
|
QSystemTrayIcon *trayIcon;
|
|
|
|
QMenu *trayIconMenu;
|
2014-11-25 20:33:11 +00:00
|
|
|
QImage icon256, iconbig256;
|
2014-11-13 18:26:17 +00:00
|
|
|
QIcon wndIcon;
|
2014-09-20 21:31:03 +00:00
|
|
|
|
2015-01-15 14:22:15 +00:00
|
|
|
void psTrayMenuUpdated();
|
|
|
|
void psSetupTrayIcon();
|
2014-07-08 10:24:21 +00:00
|
|
|
|
|
|
|
QTimer psUpdatedPositionTimer;
|
|
|
|
|
|
|
|
private:
|
2015-01-15 14:22:15 +00:00
|
|
|
void psCreateTrayIcon();
|
|
|
|
|
|
|
|
QTimer _psCheckStatusIconTimer;
|
|
|
|
int _psCheckStatusIconLeft;
|
|
|
|
|
|
|
|
QTimer _psUpdateIndicatorTimer;
|
|
|
|
uint64 _psLastIndicatorUpdate;
|
2014-07-08 10:24:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class PsApplication : public QApplication {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
PsApplication(int &argc, char **argv);
|
|
|
|
void psInstallEventFilter();
|
|
|
|
~PsApplication();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
void updateChecking();
|
|
|
|
void updateLatest();
|
|
|
|
void updateDownloading(qint64 ready, qint64 total);
|
|
|
|
void updateReady();
|
|
|
|
void updateFailed();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class PsUpdateDownloader : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
PsUpdateDownloader(QThread *thread, const MTPDhelp_appUpdate &update);
|
|
|
|
PsUpdateDownloader(QThread *thread, const QString &url);
|
|
|
|
|
|
|
|
void unpackUpdate();
|
|
|
|
|
|
|
|
int32 ready();
|
|
|
|
int32 size();
|
|
|
|
|
|
|
|
static void deleteDir(const QString &dir);
|
|
|
|
static void clearAll();
|
|
|
|
|
|
|
|
~PsUpdateDownloader();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void start();
|
|
|
|
void partMetaGot();
|
|
|
|
void partFinished(qint64 got, qint64 total);
|
|
|
|
void partFailed(QNetworkReply::NetworkError e);
|
|
|
|
void sendRequest();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void initOutput();
|
|
|
|
|
|
|
|
void fatalFail();
|
|
|
|
|
|
|
|
QString updateUrl;
|
|
|
|
QNetworkAccessManager manager;
|
|
|
|
QNetworkReply *reply;
|
|
|
|
int32 already, full;
|
|
|
|
QFile outputFile;
|
|
|
|
|
|
|
|
QMutex mutex;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-01-26 13:04:41 +00:00
|
|
|
void psUserActionDone();
|
2015-03-02 12:34:16 +00:00
|
|
|
bool psIdleSupported();
|
2015-01-26 13:04:41 +00:00
|
|
|
uint64 psIdleTime();
|
|
|
|
|
2015-01-27 16:58:58 +00:00
|
|
|
bool psSkipAudioNotify();
|
|
|
|
bool psSkipDesktopNotify();
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
bool psCheckReadyUpdate();
|
|
|
|
void psExecUpdater();
|
|
|
|
void psExecTelegram();
|
|
|
|
|
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);
|
2014-09-20 21:31:03 +00:00
|
|
|
void psStart();
|
2014-07-08 10:24:21 +00:00
|
|
|
void psFinish();
|
2014-09-29 02:47:30 +00:00
|
|
|
|
2014-12-03 13:10:32 +00:00
|
|
|
void psRegisterCustomScheme();
|
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
void psUpdateOverlayed(QWidget *widget);
|
2014-09-30 14:13:47 +00:00
|
|
|
inline QString psConvertFileUrl(const QString &url) {
|
|
|
|
return url;
|
|
|
|
}
|