2014-09-26 23:48:19 +00:00
|
|
|
|
2014-05-30 08:53:19 +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-05-30 08:53:19 +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.
|
|
|
|
|
2015-10-03 13:16:42 +00:00
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2016-02-08 10:56:18 +00:00
|
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
inline QString psServerPrefix() {
|
|
|
|
return qsl("Global\\");
|
|
|
|
}
|
|
|
|
inline void psCheckLocalSocket(const QString &) {
|
|
|
|
}
|
|
|
|
|
2014-07-06 03:32:21 +00:00
|
|
|
class NotifyWindow;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
class PsMainWindow : public QMainWindow {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
PsMainWindow(QWidget *parent = 0);
|
|
|
|
|
|
|
|
int32 psResizeRowWidth() const {
|
|
|
|
return 0;//st::wndResizeAreaWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
void psInitFrameless();
|
|
|
|
void psInitSize();
|
|
|
|
HWND psHwnd() const;
|
|
|
|
HMENU psMenu() const;
|
|
|
|
|
|
|
|
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-06 03:32:21 +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-06 03:32:21 +00:00
|
|
|
|
2014-12-15 15:55:45 +00:00
|
|
|
void psUpdateCounter();
|
|
|
|
|
2015-08-11 19:50:48 +00:00
|
|
|
bool psHasNativeNotifications();
|
|
|
|
void psCleanNotifyPhotosIn(int32 dt);
|
|
|
|
|
2014-12-15 15:55:45 +00:00
|
|
|
virtual QImage iconWithCounter(int size, int count, style::color bg, bool smallIcon) = 0;
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
~PsMainWindow();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
2014-09-20 21:31:03 +00:00
|
|
|
void psUpdateDelegate();
|
2014-05-30 08:53:19 +00:00
|
|
|
void psSavePosition(Qt::WindowState state = Qt::WindowActive);
|
2015-01-15 14:22:15 +00:00
|
|
|
void psShowTrayMenu();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-08-11 19:50:48 +00:00
|
|
|
void psCleanNotifyPhotos();
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
protected:
|
|
|
|
|
2015-01-15 14:22:15 +00:00
|
|
|
bool psHasTrayIcon() const {
|
|
|
|
return trayIcon;
|
|
|
|
}
|
2014-06-20 07:06:21 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
bool posInited;
|
|
|
|
QSystemTrayIcon *trayIcon;
|
2015-10-23 16:15:24 +00:00
|
|
|
PopupMenu *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-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
QTimer psUpdatedPositionTimer;
|
|
|
|
|
|
|
|
private:
|
|
|
|
HWND ps_hWnd;
|
2016-03-20 18:34:20 +00:00
|
|
|
// HWND ps_tbHider_hWnd;
|
2014-05-30 08:53:19 +00:00
|
|
|
HMENU ps_menu;
|
|
|
|
HICON ps_iconBig, ps_iconSmall, ps_iconOverlay;
|
|
|
|
|
2015-08-11 19:50:48 +00:00
|
|
|
SingleTimer ps_cleanNotifyPhotosTimer;
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void psDestroyIcons();
|
|
|
|
};
|
|
|
|
|
2016-01-25 10:22:58 +00:00
|
|
|
void psWriteDump();
|
2016-01-31 11:32:29 +00:00
|
|
|
void psWriteStackTrace();
|
2016-01-21 06:58:58 +00:00
|
|
|
|
2015-06-03 18:13:01 +00:00
|
|
|
void psDeleteDir(const QString &dir);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
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();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-09-26 23:48:19 +00:00
|
|
|
void psActivateProcess(uint64 pid = 0);
|
2014-05-30 08:53:19 +00:00
|
|
|
QString psLocalServerPrefix();
|
|
|
|
QString psCurrentCountry();
|
|
|
|
QString psCurrentLanguage();
|
|
|
|
QString psAppDataPath();
|
2014-09-30 14:11:09 +00:00
|
|
|
QString psAppDataPathOld();
|
|
|
|
QString psDownloadPath();
|
2014-06-14 19:32:11 +00:00
|
|
|
QString psCurrentExeDirectory(int argc, char *argv[]);
|
2014-11-27 18:20:48 +00:00
|
|
|
QString psCurrentExeName(int argc, char *argv[]);
|
2014-05-30 08:53:19 +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-05-30 08:53:19 +00:00
|
|
|
|
2014-07-06 03:32:21 +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-06 03:32:21 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
int psCleanup();
|
|
|
|
int psFixPrevious();
|
|
|
|
|
|
|
|
void psExecUpdater();
|
2016-01-30 18:24:42 +00:00
|
|
|
void psExecTelegram(const QString &arg = QString());
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-01-21 10:20:23 +00:00
|
|
|
bool psShowOpenWithMenu(int x, int y, const QString &file);
|
|
|
|
|
2014-05-30 08:53:19 +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(TWidget *widget);
|
2016-05-27 10:57:11 +00:00
|
|
|
inline QString psConvertFileUrl(const QUrl &url) {
|
|
|
|
return url.toLocalFile();
|
2014-09-30 14:13:47 +00:00
|
|
|
}
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2016-02-17 16:37:21 +00:00
|
|
|
|
2016-02-28 13:54:04 +00:00
|
|
|
bool psLaunchMaps(const LocationCoords &coords);
|