2022-03-23 15:59:53 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
|
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
|
|
*/
|
|
|
|
#include "platform/win/tray_win.h"
|
|
|
|
|
2022-04-18 13:34:59 +00:00
|
|
|
#include "base/invoke_queued.h"
|
|
|
|
#include "base/qt_signal_producer.h"
|
|
|
|
#include "core/application.h"
|
|
|
|
#include "main/main_session.h"
|
|
|
|
#include "storage/localstorage.h"
|
|
|
|
#include "ui/ui_utility.h"
|
|
|
|
#include "ui/widgets/popup_menu.h"
|
|
|
|
#include "window/window_controller.h"
|
|
|
|
#include "window/window_session_controller.h"
|
|
|
|
#include "styles/style_window.h"
|
|
|
|
|
2023-08-15 10:11:45 +00:00
|
|
|
#include <qpa/qplatformscreen.h>
|
|
|
|
#include <qpa/qplatformsystemtrayicon.h>
|
|
|
|
#include <qpa/qplatformtheme.h>
|
|
|
|
#include <private/qguiapplication_p.h>
|
|
|
|
#include <private/qhighdpiscaling_p.h>
|
2022-04-18 13:34:59 +00:00
|
|
|
|
2022-03-23 15:59:53 +00:00
|
|
|
namespace Platform {
|
|
|
|
|
2022-04-18 13:34:59 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
constexpr auto kTooltipDelay = crl::time(10000);
|
|
|
|
|
2022-04-21 11:59:26 +00:00
|
|
|
[[nodiscard]] QImage ImageIconWithCounter(
|
2022-04-18 13:34:59 +00:00
|
|
|
Window::CounterLayerArgs &&args,
|
|
|
|
bool supportMode,
|
|
|
|
bool smallIcon) {
|
|
|
|
static constexpr auto kCount = 3;
|
|
|
|
static auto ScaledLogo = std::array<QImage, kCount>();
|
|
|
|
static auto ScaledLogoNoMargin = std::array<QImage, kCount>();
|
|
|
|
|
|
|
|
struct Dimensions {
|
|
|
|
int index = 0;
|
|
|
|
int size = 0;
|
|
|
|
};
|
|
|
|
const auto d = [&]() -> Dimensions {
|
|
|
|
switch (args.size) {
|
|
|
|
case 16:
|
|
|
|
return {
|
|
|
|
.index = 0,
|
|
|
|
.size = 16,
|
|
|
|
};
|
|
|
|
case 32:
|
|
|
|
return {
|
|
|
|
.index = 1,
|
|
|
|
.size = 32,
|
|
|
|
};
|
|
|
|
default:
|
|
|
|
return {
|
|
|
|
.index = 2,
|
|
|
|
.size = 64,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
Assert(d.index < kCount);
|
|
|
|
|
|
|
|
auto &scaled = smallIcon ? ScaledLogoNoMargin : ScaledLogo;
|
|
|
|
auto result = [&] {
|
|
|
|
auto &image = scaled[d.index];
|
|
|
|
if (image.isNull()) {
|
|
|
|
image = (smallIcon
|
|
|
|
? Window::LogoNoMargin()
|
|
|
|
: Window::Logo()).scaledToWidth(
|
|
|
|
d.size,
|
|
|
|
Qt::SmoothTransformation);
|
|
|
|
}
|
|
|
|
return image;
|
|
|
|
}();
|
|
|
|
if (supportMode) {
|
|
|
|
Window::ConvertIconToBlack(result);
|
|
|
|
}
|
|
|
|
if (!args.count) {
|
|
|
|
return result;
|
|
|
|
} else if (smallIcon) {
|
|
|
|
return Window::WithSmallCounter(std::move(result), std::move(args));
|
|
|
|
}
|
|
|
|
QPainter p(&result);
|
|
|
|
const auto half = d.size / 2;
|
|
|
|
args.size = half;
|
|
|
|
p.drawPixmap(
|
|
|
|
half,
|
|
|
|
half,
|
|
|
|
Ui::PixmapFromImage(Window::GenerateCounterLayer(std::move(args))));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2022-03-23 15:59:53 +00:00
|
|
|
Tray::Tray() {
|
|
|
|
}
|
|
|
|
|
2022-04-18 13:34:59 +00:00
|
|
|
void Tray::createIcon() {
|
|
|
|
if (!_icon) {
|
2023-08-15 10:11:45 +00:00
|
|
|
if (const auto theme = QGuiApplicationPrivate::platformTheme()) {
|
|
|
|
_icon.reset(theme->createPlatformSystemTrayIcon());
|
|
|
|
}
|
|
|
|
if (!_icon) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_icon->init();
|
2022-04-18 13:34:59 +00:00
|
|
|
updateIcon();
|
2023-08-15 10:11:45 +00:00
|
|
|
_icon->updateToolTip(AppName.utf16());
|
|
|
|
|
|
|
|
using Reason = QPlatformSystemTrayIcon::ActivationReason;
|
2022-04-18 13:34:59 +00:00
|
|
|
base::qt_signal_producer(
|
|
|
|
_icon.get(),
|
2023-08-15 10:11:45 +00:00
|
|
|
&QPlatformSystemTrayIcon::activated
|
|
|
|
) | rpl::filter(
|
|
|
|
rpl::mappers::_1 != Reason::Context
|
|
|
|
) | rpl::map_to(
|
|
|
|
rpl::empty
|
|
|
|
) | rpl::start_to_stream(_iconClicks, _lifetime);
|
|
|
|
|
|
|
|
base::qt_signal_producer(
|
|
|
|
_icon.get(),
|
|
|
|
&QPlatformSystemTrayIcon::contextMenuRequested
|
|
|
|
) | rpl::filter([=] {
|
|
|
|
return _menu != nullptr;
|
|
|
|
}) | rpl::start_with_next([=](
|
|
|
|
QPoint globalNativePosition,
|
|
|
|
const QPlatformScreen *screen) {
|
|
|
|
_aboutToShowRequests.fire({});
|
|
|
|
const auto position = QHighDpi::fromNativePixels(
|
|
|
|
globalNativePosition,
|
|
|
|
screen ? screen->screen() : nullptr);
|
|
|
|
InvokeQueued(_menu.get(), [=] {
|
|
|
|
_menu->popup(position);
|
|
|
|
});
|
2022-04-18 13:34:59 +00:00
|
|
|
}, _lifetime);
|
|
|
|
} else {
|
|
|
|
updateIcon();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Tray::destroyIcon() {
|
|
|
|
_icon = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Tray::updateIcon() {
|
|
|
|
if (!_icon) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const auto counter = Core::App().unreadBadge();
|
|
|
|
const auto muted = Core::App().unreadBadgeMuted();
|
2023-01-17 15:47:58 +00:00
|
|
|
const auto controller = Core::App().activePrimaryWindow();
|
2022-04-18 13:34:59 +00:00
|
|
|
const auto session = !controller
|
|
|
|
? nullptr
|
|
|
|
: !controller->sessionController()
|
|
|
|
? nullptr
|
|
|
|
: &controller->sessionController()->session();
|
2022-04-21 11:59:26 +00:00
|
|
|
const auto supportMode = session && session->supportMode();
|
|
|
|
const auto iconSizeWidth = GetSystemMetrics(SM_CXSMICON);
|
2022-04-18 13:34:59 +00:00
|
|
|
|
2022-04-21 11:59:26 +00:00
|
|
|
auto iconSmallPixmap16 = Tray::IconWithCounter(
|
|
|
|
CounterLayerArgs(16, counter, muted),
|
|
|
|
true,
|
|
|
|
supportMode);
|
|
|
|
auto iconSmallPixmap32 = Tray::IconWithCounter(
|
|
|
|
CounterLayerArgs(32, counter, muted),
|
|
|
|
true,
|
|
|
|
supportMode);
|
2022-04-18 13:34:59 +00:00
|
|
|
auto iconSmall = QIcon();
|
|
|
|
iconSmall.addPixmap(iconSmallPixmap16);
|
|
|
|
iconSmall.addPixmap(iconSmallPixmap32);
|
|
|
|
// Force Qt to use right icon size, not the larger one.
|
|
|
|
QIcon forTrayIcon;
|
2022-04-21 11:59:26 +00:00
|
|
|
forTrayIcon.addPixmap(iconSizeWidth >= 20
|
2022-04-18 13:34:59 +00:00
|
|
|
? iconSmallPixmap32
|
|
|
|
: iconSmallPixmap16);
|
2023-08-15 10:11:45 +00:00
|
|
|
_icon->updateIcon(forTrayIcon);
|
2022-04-18 13:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Tray::createMenu() {
|
|
|
|
if (!_menu) {
|
|
|
|
_menu = base::make_unique_q<Ui::PopupMenu>(nullptr);
|
|
|
|
_menu->deleteOnHide(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Tray::destroyMenu() {
|
|
|
|
_menu = nullptr;
|
|
|
|
_actionsLifetime.destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Tray::addAction(rpl::producer<QString> text, Fn<void()> &&callback) {
|
|
|
|
if (!_menu) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-21 11:59:26 +00:00
|
|
|
// If we try to activate() window before the _menu is hidden,
|
|
|
|
// then the window will be shown in semi-active state (Qt bug).
|
|
|
|
// It will receive input events, but it will be rendered as inactive.
|
|
|
|
auto callbackLater = crl::guard(_menu.get(), [=] {
|
|
|
|
using namespace rpl::mappers;
|
|
|
|
_callbackFromTrayLifetime = _menu->shownValue(
|
|
|
|
) | rpl::filter(!_1) | rpl::take(1) | rpl::start_with_next([=] {
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
const auto action = _menu->addAction(QString(), std::move(callbackLater));
|
2022-04-18 13:34:59 +00:00
|
|
|
std::move(
|
|
|
|
text
|
|
|
|
) | rpl::start_with_next([=](const QString &text) {
|
|
|
|
action->setText(text);
|
|
|
|
}, _actionsLifetime);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Tray::showTrayMessage() const {
|
|
|
|
if (!cSeenTrayTooltip() && _icon) {
|
|
|
|
_icon->showMessage(
|
|
|
|
AppName.utf16(),
|
|
|
|
tr::lng_tray_icon_text(tr::now),
|
2023-08-15 10:11:45 +00:00
|
|
|
QIcon(),
|
|
|
|
QPlatformSystemTrayIcon::Information,
|
2022-04-18 13:34:59 +00:00
|
|
|
kTooltipDelay);
|
|
|
|
cSetSeenTrayTooltip(true);
|
|
|
|
Local::writeSettings();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Tray::hasTrayMessageSupport() const {
|
|
|
|
return !cSeenTrayTooltip();
|
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<> Tray::aboutToShowRequests() const {
|
|
|
|
return _aboutToShowRequests.events();
|
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<> Tray::showFromTrayRequests() const {
|
|
|
|
return rpl::never<>();
|
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<> Tray::hideToTrayRequests() const {
|
|
|
|
return rpl::never<>();
|
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<> Tray::iconClicks() const {
|
|
|
|
return _iconClicks.events();
|
|
|
|
}
|
|
|
|
|
2022-06-23 05:29:11 +00:00
|
|
|
bool Tray::hasIcon() const {
|
|
|
|
return _icon;
|
|
|
|
}
|
|
|
|
|
2022-04-18 13:34:59 +00:00
|
|
|
rpl::lifetime &Tray::lifetime() {
|
|
|
|
return _lifetime;
|
|
|
|
}
|
|
|
|
|
2022-04-21 11:59:26 +00:00
|
|
|
Window::CounterLayerArgs Tray::CounterLayerArgs(
|
|
|
|
int size,
|
|
|
|
int counter,
|
|
|
|
bool muted) {
|
|
|
|
return Window::CounterLayerArgs{
|
|
|
|
.size = size,
|
|
|
|
.count = counter,
|
|
|
|
.bg = muted ? st::trayCounterBgMute : st::trayCounterBg,
|
|
|
|
.fg = st::trayCounterFg,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
QPixmap Tray::IconWithCounter(
|
|
|
|
Window::CounterLayerArgs &&args,
|
|
|
|
bool smallIcon,
|
|
|
|
bool supportMode) {
|
|
|
|
return Ui::PixmapFromImage(
|
|
|
|
ImageIconWithCounter(std::move(args), supportMode, smallIcon));
|
|
|
|
}
|
|
|
|
|
2022-03-23 15:59:53 +00:00
|
|
|
} // namespace Platform
|