/* 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/linux/main_window_linux.h" #include "styles/style_window.h" #include "platform/linux/linux_libs.h" #include "platform/linux/specific_linux.h" #include "platform/linux/linux_desktop_environment.h" #include "platform/platform_notifications_manager.h" #include "history/history.h" #include "mainwindow.h" #include "core/application.h" #include "core/sandbox.h" #include "lang/lang_keys.h" #include "storage/localstorage.h" #include "facades.h" #include "app.h" #include #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #include #include #include #include #include #include #include #include #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION namespace Platform { namespace { constexpr auto kDisableTrayCounter = "TDESKTOP_DISABLE_TRAY_COUNTER"_cs; constexpr auto kForcePanelIcon = "TDESKTOP_FORCE_PANEL_ICON"_cs; constexpr auto kPanelTrayIconName = "telegram-panel"_cs; constexpr auto kMutePanelTrayIconName = "telegram-mute-panel"_cs; constexpr auto kAttentionPanelTrayIconName = "telegram-attention-panel"_cs; constexpr auto kSNIWatcherService = "org.kde.StatusNotifierWatcher"_cs; constexpr auto kPropertiesInterface = "org.freedesktop.DBus.Properties"_cs; constexpr auto kTrayIconFilename = "tdesktop-trayicon-XXXXXX.png"_cs; bool TrayIconMuted = true; int32 TrayIconCount = 0; base::flat_map TrayIconImageBack; QIcon TrayIcon; QString TrayIconThemeName, TrayIconName; bool SNIAvailable = false; QString GetPanelIconName(int counter, bool muted) { return (counter > 0) ? (muted ? kMutePanelTrayIconName.utf16() : kAttentionPanelTrayIconName.utf16()) : kPanelTrayIconName.utf16(); } QString GetTrayIconName(int counter, bool muted) { const auto iconName = GetIconName(); const auto panelIconName = GetPanelIconName(counter, muted); if (QIcon::hasThemeIcon(panelIconName)) { return panelIconName; } else if (QIcon::hasThemeIcon(iconName)) { return iconName; } return QString(); } int GetCounterSlice(int counter) { return (counter >= 1000) ? (1000 + (counter % 100)) : counter; } bool IsIconRegenerationNeeded( int counter, bool muted, const QString &iconThemeName = QIcon::themeName()) { const auto iconName = GetTrayIconName(counter, muted); const auto counterSlice = GetCounterSlice(counter); return TrayIcon.isNull() || iconThemeName != TrayIconThemeName || iconName != TrayIconName || muted != TrayIconMuted || counterSlice != TrayIconCount; } void UpdateIconRegenerationNeeded( const QIcon &icon, int counter, bool muted, const QString &iconThemeName) { const auto iconName = GetTrayIconName(counter, muted); const auto counterSlice = GetCounterSlice(counter); TrayIcon = icon; TrayIconMuted = muted; TrayIconCount = counterSlice; TrayIconThemeName = iconThemeName; TrayIconName = iconName; } QIcon TrayIconGen(int counter, bool muted) { const auto iconThemeName = QIcon::themeName(); if (!IsIconRegenerationNeeded(counter, muted, iconThemeName)) { return TrayIcon; } const auto iconName = GetTrayIconName(counter, muted); if (qEnvironmentVariableIsSet(kDisableTrayCounter.utf8()) && !iconName.isEmpty()) { const auto result = QIcon::fromTheme(iconName); UpdateIconRegenerationNeeded(result, counter, muted, iconThemeName); return result; } QIcon result; QIcon systemIcon; const auto iconSizes = { 16, 22, 24, 32, 48, 64 }; for (const auto iconSize : iconSizes) { auto ¤tImageBack = TrayIconImageBack[iconSize]; const auto desiredSize = QSize(iconSize, iconSize); if (currentImageBack.isNull() || iconThemeName != TrayIconThemeName || iconName != TrayIconName) { if (!iconName.isEmpty()) { if(systemIcon.isNull()) { systemIcon = QIcon::fromTheme(iconName); } if (systemIcon.actualSize(desiredSize) == desiredSize) { currentImageBack = systemIcon .pixmap(desiredSize) .toImage(); } else { const auto availableSizes = systemIcon .availableSizes(); const auto biggestSize = ranges::max_element( availableSizes, std::less<>(), &QSize::width); currentImageBack = systemIcon .pixmap(*biggestSize) .toImage(); } } else { currentImageBack = Core::App().logo(); } if (currentImageBack.size() != desiredSize) { currentImageBack = currentImageBack.scaled( desiredSize, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); } } auto iconImage = currentImageBack; if (!qEnvironmentVariableIsSet(kDisableTrayCounter.utf8()) && counter > 0) { QPainter p(&iconImage); int32 layerSize = -16; if (iconSize >= 48) { layerSize = -32; } else if (iconSize >= 36) { layerSize = -24; } else if (iconSize >= 32) { layerSize = -20; } auto &bg = muted ? st::trayCounterBgMute : st::trayCounterBg; auto &fg = st::trayCounterFg; auto layer = App::wnd()->iconWithCounter( layerSize, counter, bg, fg, false); p.drawImage( iconImage.width() - layer.width() - 1, iconImage.height() - layer.height() - 1, layer); } result.addPixmap(App::pixmapFromImageInPlace( std::move(iconImage))); } UpdateIconRegenerationNeeded(result, counter, muted, iconThemeName); return result; } #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION bool IsIndicatorApplication() { // Hack for indicator-application, which doesn't handle icons sent across D-Bus: // save the icon to a temp file and set the icon name to that filename. static const auto IndicatorApplication = [&] { const auto interface = QDBusConnection::sessionBus().interface(); const auto ubuntuIndicator = interface->isServiceRegistered( qsl("com.canonical.indicator.application")); const auto ayatanaIndicator = interface->isServiceRegistered( qsl("org.ayatana.indicator.application")); return ubuntuIndicator || ayatanaIndicator; }(); return IndicatorApplication; } std::unique_ptr TrayIconFile( const QIcon &icon, int size, QObject *parent) { static const auto templateName = AppRuntimeDirectory() + kTrayIconFilename.utf16(); auto ret = std::make_unique( templateName, parent); ret->open(); icon.pixmap(size).save(ret.get()); ret->close(); return ret; } #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION bool IsSNIAvailable() { #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION auto message = QDBusMessage::createMethodCall( kSNIWatcherService.utf16(), qsl("/StatusNotifierWatcher"), kPropertiesInterface.utf16(), qsl("Get")); message.setArguments({ kSNIWatcherService.utf16(), qsl("IsStatusNotifierHostRegistered") }); const QDBusReply reply = QDBusConnection::sessionBus().call( message); if (reply.isValid()) { return reply.value().toBool(); } else if (reply.error().type() != QDBusError::ServiceUnknown) { LOG(("SNI Error: %1").arg(reply.error().message())); } #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION return false; } bool UseUnityCounter() { #ifdef TDESKTOP_DISABLE_DBUS_INTEGRATION static const auto UnityCounter = false; #else // TDESKTOP_DISABLE_DBUS_INTEGRATION static const auto UnityCounter = QDBusInterface( "com.canonical.Unity", "/").isValid(); #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION return UnityCounter; } quint32 djbStringHash(QString string) { quint32 hash = 5381; QByteArray chars = string.toLatin1(); for(int i = 0; i < chars.length(); i++){ hash = (hash << 5) + hash + chars[i]; } return hash; } } // namespace MainWindow::MainWindow(not_null controller) : Window::MainWindow(controller) { } void MainWindow::initHook() { SNIAvailable = IsSNIAvailable(); const auto trayAvailable = SNIAvailable || QSystemTrayIcon::isSystemTrayAvailable(); LOG(("System tray available: %1").arg(Logs::b(trayAvailable))); cSetSupportTray(trayAvailable); #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION auto sniWatcher = new QDBusServiceWatcher( kSNIWatcherService.utf16(), QDBusConnection::sessionBus(), QDBusServiceWatcher::WatchForOwnerChange, this); connect( sniWatcher, &QDBusServiceWatcher::serviceOwnerChanged, this, &MainWindow::onSNIOwnerChanged); #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION if (UseUnityCounter()) { LOG(("Using Unity launcher counter.")); } else { LOG(("Not using Unity launcher counter.")); } } bool MainWindow::hasTrayIcon() const { #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION return trayIcon || _sniTrayIcon; #else return trayIcon; #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION } void MainWindow::psShowTrayMenu() { _trayIconMenuXEmbed->popup(QCursor::pos()); } void MainWindow::psTrayMenuUpdated() { #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION if (_sniTrayIcon && trayIconMenu) { _sniTrayIcon->setContextMenu(trayIconMenu); } #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION } #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION void MainWindow::setSNITrayIcon(int counter, bool muted, bool firstShow) { const auto iconName = GetTrayIconName(counter, muted); if (qEnvironmentVariableIsSet(kDisableTrayCounter.utf8()) && (!iconName.isEmpty() || qEnvironmentVariableIsSet(kForcePanelIcon.utf8()))) { if (_sniTrayIcon->iconName() == iconName) { return; } _sniTrayIcon->setIconByName(iconName); _sniTrayIcon->setToolTipIconByName(iconName); } else if (IsIndicatorApplication()) { if(!IsIconRegenerationNeeded(counter, muted) && !firstShow) { return; } const auto icon = TrayIconGen(counter, muted); _trayIconFile = TrayIconFile(icon, 22, this); if (_trayIconFile) { // indicator-application doesn't support tooltips _sniTrayIcon->setIconByName(_trayIconFile->fileName()); } } else { if(!IsIconRegenerationNeeded(counter, muted) && !firstShow) { return; } const auto icon = TrayIconGen(counter, muted); _sniTrayIcon->setIconByPixmap(icon); _sniTrayIcon->setToolTipIconByPixmap(icon); } } void MainWindow::attachToSNITrayIcon() { _sniTrayIcon->setToolTipTitle(AppName.utf16()); connect(_sniTrayIcon, &StatusNotifierItem::activateRequested, this, [=](const QPoint &) { Core::Sandbox::Instance().customEnterFromEventLoop([&] { handleTrayIconActication(QSystemTrayIcon::Trigger); }); }); connect(_sniTrayIcon, &StatusNotifierItem::secondaryActivateRequested, this, [=](const QPoint &) { Core::Sandbox::Instance().customEnterFromEventLoop([&] { handleTrayIconActication(QSystemTrayIcon::MiddleClick); }); }); updateTrayMenu(); } void MainWindow::onSNIOwnerChanged( const QString &service, const QString &oldOwner, const QString &newOwner) { if (oldOwner.isEmpty() && !newOwner.isEmpty()) { LOG(("Switching to SNI tray icon...")); } else if (!oldOwner.isEmpty() && newOwner.isEmpty()) { LOG(("Switching to Qt tray icon...")); } else { return; } if (_sniTrayIcon) { _sniTrayIcon->setContextMenu(0); _sniTrayIcon->deleteLater(); } _sniTrayIcon = nullptr; if (trayIcon) { trayIcon->setContextMenu(0); trayIcon->deleteLater(); } trayIcon = nullptr; SNIAvailable = IsSNIAvailable(); const auto trayAvailable = SNIAvailable || QSystemTrayIcon::isSystemTrayAvailable(); cSetSupportTray(trayAvailable); if(cSupportTray()) { psSetupTrayIcon(); } else { LOG(("System tray is not available.")); } } #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION void MainWindow::psSetupTrayIcon() { const auto counter = Core::App().unreadBadge(); const auto muted = Core::App().unreadBadgeMuted(); if (SNIAvailable) { #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION LOG(("Using SNI tray icon.")); if (!_sniTrayIcon) { _sniTrayIcon = new StatusNotifierItem( QCoreApplication::applicationName(), this); _sniTrayIcon->setTitle(AppName.utf16()); setSNITrayIcon(counter, muted, true); attachToSNITrayIcon(); } updateIconCounters(); #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION } else { LOG(("Using Qt tray icon.")); if (!trayIcon) { trayIcon = new QSystemTrayIcon(this); trayIcon->setIcon(TrayIconGen(counter, muted)); attachToTrayIcon(trayIcon); } updateIconCounters(); trayIcon->show(); } } void MainWindow::workmodeUpdated(DBIWorkMode mode) { if (!cSupportTray()) return; if (mode == dbiwmWindowOnly) { #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION if (_sniTrayIcon) { _sniTrayIcon->setContextMenu(0); _sniTrayIcon->deleteLater(); } _sniTrayIcon = nullptr; #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION if (trayIcon) { trayIcon->setContextMenu(0); trayIcon->deleteLater(); } trayIcon = nullptr; } else { psSetupTrayIcon(); } } void MainWindow::unreadCounterChangedHook() { setWindowTitle(titleText()); updateIconCounters(); } void MainWindow::updateIconCounters() { const auto counter = Core::App().unreadBadge(); const auto muted = Core::App().unreadBadgeMuted(); updateWindowIcon(); #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION if (UseUnityCounter()) { const auto launcherUrl = "application://" + GetLauncherFilename(); QVariantMap dbusUnityProperties; if (counter > 0) { // Gnome requires that count is a 64bit integer dbusUnityProperties.insert( "count", (qint64) ((counter > 9999) ? 9999 : counter)); dbusUnityProperties.insert("count-visible", true); } else { dbusUnityProperties.insert("count-visible", false); } QDBusMessage signal = QDBusMessage::createSignal( "/com/canonical/unity/launcherentry/" + QString::number(djbStringHash(launcherUrl)), "com.canonical.Unity.LauncherEntry", "Update"); signal << launcherUrl; signal << dbusUnityProperties; QDBusConnection::sessionBus().send(signal); } #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION if (_sniTrayIcon) { setSNITrayIcon(counter, muted); } #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION if (trayIcon && IsIconRegenerationNeeded(counter, muted)) { trayIcon->setIcon(TrayIconGen(counter, muted)); } } void MainWindow::LibsLoaded() { #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION } void MainWindow::initTrayMenuHook() { _trayIconMenuXEmbed = new Ui::PopupMenu(nullptr, trayIconMenu); _trayIconMenuXEmbed->deleteOnHide(false); } MainWindow::~MainWindow() { #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION delete _sniTrayIcon; #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION delete _trayIconMenuXEmbed; } } // namespace Platform