Remove unneeded TrayIconFileTemplate function

Use /.flatpak-info instead of deprecated /run/user/$UID/flatpak-info

Improve indentation in UseXDGDesktopPortal and IsAppIndicator

Remove unneeded NeedTrayIconFile and rename IsAppIndicator to IsIndicatorApplication

Include only needed part of QtDBus in main_window_linux.cpp

Remove usage of QDBusInterface from SandboxAutostart and IsSNIAvailable

Don't check dbus activatable services in IsIndicatorApplication

Move XEmbed menu initialization to initTrayMenuHook, tray availability check to initHook

Don't create unneeded file for tooltip icon, since indicator-application doesn't support tooltips

Passthrough counter from updateIconCounters

Suppress log errors for LastUserInputTime on GNOME

Set applcation name and icon name for pulseaudio
This commit is contained in:
Ilya Fedin 2020-03-03 05:24:13 +04:00 committed by John Preston
parent 5c89dfad85
commit 7202ffca76
3 changed files with 118 additions and 93 deletions

View File

@ -24,7 +24,13 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include <QtCore/QSize> #include <QtCore/QSize>
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
#include <QtDBus> #include <QtDBus/QDBusInterface>
#include <QtDBus/QDBusConnection>
#include <QtDBus/QDBusConnectionInterface>
#include <QtDBus/QDBusMessage>
#include <QtDBus/QDBusReply>
#include <QtDBus/QDBusError>
#include <QtDBus/QDBusMetaType>
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
namespace Platform { namespace Platform {
@ -35,6 +41,7 @@ constexpr auto kPanelTrayIconName = "telegram-panel"_cs;
constexpr auto kMutePanelTrayIconName = "telegram-mute-panel"_cs; constexpr auto kMutePanelTrayIconName = "telegram-mute-panel"_cs;
constexpr auto kAttentionPanelTrayIconName = "telegram-attention-panel"_cs; constexpr auto kAttentionPanelTrayIconName = "telegram-attention-panel"_cs;
constexpr auto kSNIWatcherService = "org.kde.StatusNotifierWatcher"_cs; constexpr auto kSNIWatcherService = "org.kde.StatusNotifierWatcher"_cs;
constexpr auto kPropertiesInterface = "org.freedesktop.DBus.Properties"_cs;
constexpr auto kTrayIconFilename = "tdesktop-trayicon-XXXXXX.png"_cs; constexpr auto kTrayIconFilename = "tdesktop-trayicon-XXXXXX.png"_cs;
bool TrayIconMuted = true; bool TrayIconMuted = true;
@ -43,10 +50,7 @@ base::flat_map<int, QImage> TrayIconImageBack;
QIcon TrayIcon; QIcon TrayIcon;
QString TrayIconThemeName, TrayIconName; QString TrayIconThemeName, TrayIconName;
QString GetPanelIconName() { QString GetPanelIconName(int counter, bool muted) {
const auto counter = Core::App().unreadBadge();
const auto muted = Core::App().unreadBadgeMuted();
return (counter > 0) return (counter > 0)
? (muted ? (muted
? kMutePanelTrayIconName.utf16() ? kMutePanelTrayIconName.utf16()
@ -54,9 +58,9 @@ QString GetPanelIconName() {
: kPanelTrayIconName.utf16(); : kPanelTrayIconName.utf16();
} }
QString GetTrayIconName() { QString GetTrayIconName(int counter, bool muted) {
const auto iconName = GetIconName(); const auto iconName = GetIconName();
const auto panelIconName = GetPanelIconName(); const auto panelIconName = GetPanelIconName(counter, muted);
if (QIcon::hasThemeIcon(panelIconName)) { if (QIcon::hasThemeIcon(panelIconName)) {
return panelIconName; return panelIconName;
@ -67,9 +71,9 @@ QString GetTrayIconName() {
return QString(); return QString();
} }
QIcon TrayIconGen() { QIcon TrayIconGen(int counter, bool muted) {
const auto iconThemeName = QIcon::themeName(); const auto iconThemeName = QIcon::themeName();
const auto iconName = GetTrayIconName(); const auto iconName = GetTrayIconName(counter, muted);
if (qEnvironmentVariableIsSet(kDisableTrayCounter.utf8()) if (qEnvironmentVariableIsSet(kDisableTrayCounter.utf8())
&& !iconName.isEmpty()) { && !iconName.isEmpty()) {
@ -84,8 +88,6 @@ QIcon TrayIconGen() {
return TrayIcon; return TrayIcon;
} }
const auto counter = Core::App().unreadBadge();
const auto muted = Core::App().unreadBadgeMuted();
const auto counterSlice = (counter >= 1000) const auto counterSlice = (counter >= 1000)
? (1000 + (counter % 100)) ? (1000 + (counter % 100))
: counter; : counter;
@ -196,47 +198,40 @@ QIcon TrayIconGen() {
return TrayIcon; return TrayIcon;
} }
bool IsAppIndicator() {
#ifdef TDESKTOP_DISABLE_DBUS_INTEGRATION
static const auto AppIndicator = false;
#else // TDESKTOP_DISABLE_DBUS_INTEGRATION
static const auto AppIndicator = QDBusInterface(
qsl("com.canonical.indicator.application"),
qsl("/com/canonical/indicator/application/service"),
qsl("com.canonical.indicator.application.service")).isValid()
|| QDBusInterface(
qsl("org.ayatana.indicator.application"),
qsl("/org/ayatana/indicator/application/service"),
qsl("org.ayatana.indicator.application.service")).isValid();
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
return AppIndicator;
}
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
static bool NeedTrayIconFile() { bool IsIndicatorApplication() {
// Hack for indicator-application, which doesn't handle icons sent across D-Bus: // 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. // save the icon to a temp file and set the icon name to that filename.
static const auto TrayIconFileNeeded = IsAppIndicator(); static const auto IndicatorApplication = [&] {
return TrayIconFileNeeded; const auto interface = QDBusConnection::sessionBus().interface();
}
static inline QString TrayIconFileTemplate() { const auto ubuntuIndicator = interface->isServiceRegistered(
static const auto TempFileTemplate = AppRuntimeDirectory() qsl("com.canonical.indicator.application"));
+ kTrayIconFilename.utf16();
return TempFileTemplate; const auto ayatanaIndicator = interface->isServiceRegistered(
qsl("org.ayatana.indicator.application"));
return ubuntuIndicator || ayatanaIndicator;
}();
return IndicatorApplication;
} }
std::unique_ptr<QTemporaryFile> TrayIconFile( std::unique_ptr<QTemporaryFile> TrayIconFile(
const QIcon &icon, const QIcon &icon,
int size, int size,
QObject *parent) { QObject *parent) {
static const auto templateName = AppRuntimeDirectory()
+ kTrayIconFilename.utf16();
auto ret = std::make_unique<QTemporaryFile>( auto ret = std::make_unique<QTemporaryFile>(
TrayIconFileTemplate(), templateName,
parent); parent);
ret->open(); ret->open();
icon.pixmap(size).save(ret.get()); icon.pixmap(size).save(ret.get());
ret->close(); ret->close();
return ret; return ret;
} }
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
@ -244,15 +239,25 @@ std::unique_ptr<QTemporaryFile> TrayIconFile(
bool IsSNIAvailable() { bool IsSNIAvailable() {
static const auto SNIAvailable = [&] { static const auto SNIAvailable = [&] {
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
QDBusInterface systrayHost( auto message = QDBusMessage::createMethodCall(
kSNIWatcherService.utf16(), kSNIWatcherService.utf16(),
qsl("/StatusNotifierWatcher"), qsl("/StatusNotifierWatcher"),
kSNIWatcherService.utf16()); kPropertiesInterface.utf16(),
qsl("Get"));
return systrayHost.isValid() message.setArguments({
&& systrayHost kSNIWatcherService.utf16(),
.property("IsStatusNotifierHostRegistered") qsl("IsStatusNotifierHostRegistered")
.toBool(); });
const QDBusReply<QVariant> 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 #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
return false; return false;
@ -288,6 +293,20 @@ MainWindow::MainWindow(not_null<Window::Controller*> controller)
: Window::MainWindow(controller) { : Window::MainWindow(controller) {
} }
void MainWindow::initHook() {
const auto trayAvailable = IsSNIAvailable()
|| QSystemTrayIcon::isSystemTrayAvailable();
LOG(("System tray available: %1").arg(Logs::b(trayAvailable)));
cSetSupportTray(trayAvailable);
if (UseUnityCounter()) {
LOG(("Using Unity launcher counter."));
} else {
LOG(("Not using Unity launcher counter."));
}
}
bool MainWindow::hasTrayIcon() const { bool MainWindow::hasTrayIcon() const {
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
return trayIcon || _sniTrayIcon; return trayIcon || _sniTrayIcon;
@ -313,23 +332,23 @@ void MainWindow::psTrayMenuUpdated() {
} }
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
void MainWindow::setSNITrayIcon(const QIcon &icon) { void MainWindow::setSNITrayIcon(int counter, bool muted) {
const auto iconName = GetTrayIconName(); const auto iconName = GetTrayIconName(counter, muted);
if (qEnvironmentVariableIsSet(kDisableTrayCounter.utf8()) if (qEnvironmentVariableIsSet(kDisableTrayCounter.utf8())
&& !iconName.isEmpty()) { && !iconName.isEmpty()) {
_sniTrayIcon->setIconByName(iconName); _sniTrayIcon->setIconByName(iconName);
_sniTrayIcon->setToolTipIconByName(iconName); _sniTrayIcon->setToolTipIconByName(iconName);
} else if (NeedTrayIconFile()) { } else if (IsIndicatorApplication()) {
const auto icon = TrayIconGen(counter, muted);
_trayIconFile = TrayIconFile(icon, 22, this); _trayIconFile = TrayIconFile(icon, 22, this);
_trayToolTipIconFile = TrayIconFile(icon, 48, this);
if (_trayIconFile) { if (_trayIconFile) {
// indicator-application doesn't support tooltips
_sniTrayIcon->setIconByName(_trayIconFile->fileName()); _sniTrayIcon->setIconByName(_trayIconFile->fileName());
_sniTrayIcon->setToolTipIconByName(
_trayToolTipIconFile->fileName());
} }
} else { } else {
const auto icon = TrayIconGen(counter, muted);
_sniTrayIcon->setIconByPixmap(icon); _sniTrayIcon->setIconByPixmap(icon);
_sniTrayIcon->setToolTipIconByPixmap(icon); _sniTrayIcon->setToolTipIconByPixmap(icon);
} }
@ -358,6 +377,9 @@ void MainWindow::attachToSNITrayIcon() {
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
void MainWindow::psSetupTrayIcon() { void MainWindow::psSetupTrayIcon() {
const auto counter = Core::App().unreadBadge();
const auto muted = Core::App().unreadBadgeMuted();
if (IsSNIAvailable()) { if (IsSNIAvailable()) {
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
LOG(("Using SNI tray icon.")); LOG(("Using SNI tray icon."));
@ -367,7 +389,7 @@ void MainWindow::psSetupTrayIcon() {
this); this);
_sniTrayIcon->setTitle(AppName.utf16()); _sniTrayIcon->setTitle(AppName.utf16());
setSNITrayIcon(TrayIconGen()); setSNITrayIcon(counter, muted);
attachToSNITrayIcon(); attachToSNITrayIcon();
} }
@ -375,15 +397,9 @@ void MainWindow::psSetupTrayIcon() {
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
} else { } else {
LOG(("Using Qt tray icon.")); LOG(("Using Qt tray icon."));
if (!_trayIconMenuXEmbed) {
_trayIconMenuXEmbed = new Ui::PopupMenu(nullptr, trayIconMenu);
_trayIconMenuXEmbed->deleteOnHide(false);
}
if (!trayIcon) { if (!trayIcon) {
trayIcon = new QSystemTrayIcon(this); trayIcon = new QSystemTrayIcon(this);
trayIcon->setIcon(TrayIconGen()); trayIcon->setIcon(TrayIconGen(counter, muted));
attachToTrayIcon(trayIcon); attachToTrayIcon(trayIcon);
} }
@ -423,11 +439,13 @@ void MainWindow::unreadCounterChangedHook() {
} }
void MainWindow::updateIconCounters() { void MainWindow::updateIconCounters() {
const auto counter = Core::App().unreadBadge();
const auto muted = Core::App().unreadBadgeMuted();
updateWindowIcon(); updateWindowIcon();
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
if (UseUnityCounter()) { if (UseUnityCounter()) {
const auto counter = Core::App().unreadBadge();
const auto launcherUrl = "application://" + GetLauncherFilename(); const auto launcherUrl = "application://" + GetLauncherFilename();
QVariantMap dbusUnityProperties; QVariantMap dbusUnityProperties;
if (counter > 0) { if (counter > 0) {
@ -455,11 +473,11 @@ void MainWindow::updateIconCounters() {
if (IsSNIAvailable()) { if (IsSNIAvailable()) {
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
if (_sniTrayIcon) { if (_sniTrayIcon) {
setSNITrayIcon(TrayIconGen()); setSNITrayIcon(counter, muted);
} }
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
} else if (trayIcon) { } else if (trayIcon) {
trayIcon->setIcon(TrayIconGen()); trayIcon->setIcon(TrayIconGen(counter, muted));
} }
} }
@ -472,16 +490,9 @@ void MainWindow::LibsLoaded() {
} }
void MainWindow::initTrayMenuHook() { void MainWindow::initTrayMenuHook() {
const auto trayAvailable = IsSNIAvailable() if (!IsSNIAvailable()) {
|| QSystemTrayIcon::isSystemTrayAvailable(); _trayIconMenuXEmbed = new Ui::PopupMenu(nullptr, trayIconMenu);
_trayIconMenuXEmbed->deleteOnHide(false);
LOG(("System tray available: %1").arg(Logs::b(trayAvailable)));
cSetSupportTray(trayAvailable);
if (UseUnityCounter()) {
LOG(("Using Unity launcher counter."));
} else {
LOG(("Not using Unity launcher counter."));
} }
} }

View File

@ -39,6 +39,7 @@ public slots:
void psShowTrayMenu(); void psShowTrayMenu();
protected: protected:
void initHook() override;
void unreadCounterChangedHook() override; void unreadCounterChangedHook() override;
void initTrayMenuHook() override; void initTrayMenuHook() override;
@ -68,9 +69,8 @@ private:
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
StatusNotifierItem *_sniTrayIcon = nullptr; StatusNotifierItem *_sniTrayIcon = nullptr;
std::unique_ptr<QTemporaryFile> _trayIconFile = nullptr; std::unique_ptr<QTemporaryFile> _trayIconFile = nullptr;
std::unique_ptr<QTemporaryFile> _trayToolTipIconFile = nullptr;
void setSNITrayIcon(const QIcon &icon); void setSNITrayIcon(int counter, bool muted);
void attachToSNITrayIcon(); void attachToSNITrayIcon();
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION

View File

@ -30,7 +30,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include <QtDBus/QDBusMessage> #include <QtDBus/QDBusMessage>
#include <QtDBus/QDBusReply> #include <QtDBus/QDBusReply>
#include <QtDBus/QDBusError> #include <QtDBus/QDBusError>
#endif #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/types.h> #include <sys/types.h>
@ -61,23 +61,29 @@ void SandboxAutostart(bool autostart, bool silent = false) {
}); });
options["dbus-activatable"] = false; options["dbus-activatable"] = false;
const auto requestBackgroundReply = QDBusInterface( auto message = QDBusMessage::createMethodCall(
qsl("org.freedesktop.portal.Desktop"), qsl("org.freedesktop.portal.Desktop"),
qsl("/org/freedesktop/portal/desktop"), qsl("/org/freedesktop/portal/desktop"),
qsl("org.freedesktop.portal.Background") qsl("org.freedesktop.portal.Background"),
).call(qsl("RequestBackground"), QString(), options); qsl("RequestBackground"));
if (!silent) { message.setArguments({
if (requestBackgroundReply.type() == QDBusMessage::ErrorMessage) { QString(),
LOG(("Flatpak autostart error: %1") options
.arg(requestBackgroundReply.errorMessage())); });
} else if (requestBackgroundReply.type()
!= QDBusMessage::ReplyMessage) { if (silent) {
LOG(("Flatpak autostart error: invalid reply")); QDBusConnection::sessionBus().send(message);
} else {
const QDBusReply<void> reply = QDBusConnection::sessionBus().call(
message);
if (!reply.isValid()) {
LOG(("Flatpak autostart error: %1").arg(reply.error().message()));
} }
} }
} }
#endif #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
bool RunShellCommand(const QByteArray &command) { bool RunShellCommand(const QByteArray &command) {
auto result = system(command.constData()); auto result = system(command.constData());
@ -168,7 +174,7 @@ bool GenerateDesktopFile(
QRegularExpression::MultilineOption), QRegularExpression::MultilineOption),
qsl("Exec=\\1") qsl("Exec=\\1")
+ (args.isEmpty() ? QString() : ' ' + args)); + (args.isEmpty() ? QString() : ' ' + args));
#else #else // DESKTOP_APP_USE_PACKAGED
fileText = fileText.replace( fileText = fileText.replace(
QRegularExpression( QRegularExpression(
qsl("^TryExec=.*$"), qsl("^TryExec=.*$"),
@ -184,7 +190,7 @@ bool GenerateDesktopFile(
+ EscapeShell(QFile::encodeName(cExeDir() + cExeName())) + EscapeShell(QFile::encodeName(cExeDir() + cExeName()))
.replace('\\', qsl("\\\\")) .replace('\\', qsl("\\\\"))
+ (args.isEmpty() ? QString() : ' ' + args)); + (args.isEmpty() ? QString() : ' ' + args));
#endif #endif // !DESKTOP_APP_USE_PACKAGED
target.write(fileText.toUtf8()); target.write(fileText.toUtf8());
target.close(); target.close();
@ -209,9 +215,7 @@ void SetApplicationIcon(const QIcon &icon) {
} }
bool InSandbox() { bool InSandbox() {
static const auto Sandbox = QFileInfo::exists( static const auto Sandbox = QFileInfo::exists(qsl("/.flatpak-info"));
QStandardPaths::writableLocation(QStandardPaths::RuntimeLocation)
+ qsl("/flatpak-info"));
return Sandbox; return Sandbox;
} }
@ -228,12 +232,18 @@ bool IsXDGDesktopPortalPresent() {
"org.freedesktop.portal.Desktop", "org.freedesktop.portal.Desktop",
"/org/freedesktop/portal/desktop").isValid(); "/org/freedesktop/portal/desktop").isValid();
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
return XDGDesktopPortalPresent; return XDGDesktopPortalPresent;
} }
bool UseXDGDesktopPortal() { bool UseXDGDesktopPortal() {
static const auto UsePortal = qEnvironmentVariableIsSet("TDESKTOP_USE_PORTAL") static const auto UsePortal = [&] {
&& IsXDGDesktopPortalPresent(); const auto envVar = qEnvironmentVariableIsSet("TDESKTOP_USE_PORTAL");
const auto portalPresent = IsXDGDesktopPortalPresent();
return envVar && portalPresent;
}();
return UsePortal; return UsePortal;
} }
@ -360,7 +370,8 @@ std::optional<crl::time> LastUserInputTime() {
if (reply.isValid()) { if (reply.isValid()) {
return (crl::now() - static_cast<crl::time>(reply.value())); return (crl::now() - static_cast<crl::time>(reply.value()));
} else if (reply.error().type() != QDBusError::ServiceUnknown) { } else if (reply.error().type() != QDBusError::ServiceUnknown
&& reply.error().type() != QDBusError::NotSupported) {
LOG(("Unable to get last user input time: %1: %2") LOG(("Unable to get last user input time: %1: %2")
.arg(reply.error().name()) .arg(reply.error().name())
.arg(reply.error().message())); .arg(reply.error().message()));
@ -488,6 +499,9 @@ void start() {
LOG(("Launcher filename: %1").arg(GetLauncherFilename())); LOG(("Launcher filename: %1").arg(GetLauncherFilename()));
FallbackFontConfig(); FallbackFontConfig();
qputenv("PULSE_PROP_application.name", AppName.utf8());
qputenv("PULSE_PROP_application.icon_name", GetIconName().toLatin1());
#ifdef TDESKTOP_FORCE_GTK_FILE_DIALOG #ifdef TDESKTOP_FORCE_GTK_FILE_DIALOG
LOG(("Checking for XDG Desktop Portal...")); LOG(("Checking for XDG Desktop Portal..."));
// this can give us a chance to use a proper file dialog for current session // this can give us a chance to use a proper file dialog for current session
@ -622,7 +636,7 @@ void psAutoStart(bool start, bool silent) {
if (InSandbox()) { if (InSandbox()) {
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
SandboxAutostart(start, silent); SandboxAutostart(start, silent);
#endif #endif // !DESKTOP_APP_USE_PACKAGED
} else { } else {
const auto autostart = [&] { const auto autostart = [&] {
if (InSnap()) { if (InSnap()) {