2016-06-16 12:59:54 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-06-16 12:59:54 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-28 10:51:00 +00:00
|
|
|
#include "platform/platform_main_window.h"
|
2016-06-16 12:59:54 +00:00
|
|
|
|
|
|
|
namespace Platform {
|
|
|
|
|
|
|
|
class MainWindow : public Window::MainWindow {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
MainWindow();
|
|
|
|
|
|
|
|
void psFirstShow();
|
|
|
|
void psInitSysMenu();
|
|
|
|
void psUpdateMargins();
|
|
|
|
|
2016-11-04 08:23:50 +00:00
|
|
|
void psRefreshTaskbarIcon() {
|
|
|
|
}
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-12-23 13:21:01 +00:00
|
|
|
virtual QImage iconWithCounter(int size, int count, style::color bg, style::color fg, bool smallIcon) = 0;
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-06-16 17:20:58 +00:00
|
|
|
static void LibsLoaded();
|
|
|
|
|
2016-06-16 12:59:54 +00:00
|
|
|
~MainWindow();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void psShowTrayMenu();
|
|
|
|
|
|
|
|
void psStatusIconCheck();
|
|
|
|
void psUpdateIndicator();
|
|
|
|
|
|
|
|
protected:
|
2016-11-09 08:34:38 +00:00
|
|
|
void unreadCounterChangedHook() override;
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2017-01-01 16:45:20 +00:00
|
|
|
bool hasTrayIcon() const override;
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2017-03-04 19:36:59 +00:00
|
|
|
void workmodeUpdated(DBIWorkMode mode) override;
|
|
|
|
|
2016-06-16 17:20:58 +00:00
|
|
|
QSystemTrayIcon *trayIcon = nullptr;
|
|
|
|
QMenu *trayIconMenu = nullptr;
|
2016-06-16 12:59:54 +00:00
|
|
|
|
|
|
|
void psTrayMenuUpdated();
|
|
|
|
void psSetupTrayIcon();
|
|
|
|
|
2016-12-23 13:21:01 +00:00
|
|
|
virtual void placeSmallCounter(QImage &img, int size, int count, style::color bg, const QPoint &shift, style::color color) = 0;
|
2016-06-16 12:59:54 +00:00
|
|
|
|
|
|
|
private:
|
2016-11-11 07:51:53 +00:00
|
|
|
void updateIconCounters();
|
2016-06-16 12:59:54 +00:00
|
|
|
void psCreateTrayIcon();
|
|
|
|
|
|
|
|
QTimer _psCheckStatusIconTimer;
|
2016-06-16 17:20:58 +00:00
|
|
|
int _psCheckStatusIconLeft = 100;
|
2016-06-16 12:59:54 +00:00
|
|
|
|
|
|
|
QTimer _psUpdateIndicatorTimer;
|
2019-02-19 06:57:53 +00:00
|
|
|
crl::time _psLastIndicatorUpdate = 0;
|
2016-11-11 07:51:53 +00:00
|
|
|
|
2016-06-16 12:59:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Platform
|