// For license of this file, see /LICENSE.md. #include "gui/systemtrayicon.h" #include "definitions/definitions.h" #include "gui/dialogs/formmain.h" #include "gui/dialogs/formsettings.h" #include "miscellaneous/application.h" #include "miscellaneous/settings.h" #include #include #if defined(Q_OS_WIN) TrayIconMenu::TrayIconMenu(const QString& title, QWidget* parent) : QMenu(title, parent) {} TrayIconMenu::~TrayIconMenu() {} bool TrayIconMenu::event(QEvent* event) { if (event->type() == QEvent::Show && Application::activeModalWidget() != nullptr) { QTimer::singleShot(0, this, SLOT(hide())); qApp->showGuiMessage(QSL(APP_LONG_NAME), tr("Close opened modal dialogs first."), QSystemTrayIcon::Warning, qApp->mainFormWidget(), true); } return QMenu::event(event); } #endif SystemTrayIcon::SystemTrayIcon(const QString& normal_icon, const QString& plain_icon, FormMain* parent) : QSystemTrayIcon(parent), m_normalIcon(normal_icon), m_plainPixmap(plain_icon) { qDebug("Creating SystemTrayIcon instance."); m_font.setBold(true); // Initialize icon. setNumber(); setContextMenu(parent->trayMenu()); // Create necessary connections. connect(this, &SystemTrayIcon::activated, this, &SystemTrayIcon::onActivated); } SystemTrayIcon::~SystemTrayIcon() { qDebug("Destroying SystemTrayIcon instance."); hide(); } void SystemTrayIcon::onActivated(QSystemTrayIcon::ActivationReason reason) { switch (reason) { case SystemTrayIcon::Trigger: case SystemTrayIcon::DoubleClick: case SystemTrayIcon::MiddleClick: static_cast(parent())->switchVisibility(); break; default: break; } } bool SystemTrayIcon::isSystemTrayAvailable() { return QSystemTrayIcon::isSystemTrayAvailable() && QSystemTrayIcon::supportsMessages(); } bool SystemTrayIcon::isSystemTrayActivated() { return SystemTrayIcon::isSystemTrayAvailable() && qApp->settings()->value(GROUP(GUI), SETTING(GUI::UseTrayIcon)).toBool(); } bool SystemTrayIcon::areNotificationsEnabled() { return qApp->settings()->value(GROUP(GUI), SETTING(GUI::EnableNotifications)).toBool(); } void SystemTrayIcon::showPrivate() { // Make sure that application does not exit some window (for example // the settings window) gets closed. Behavior for main window // is handled explicitly by FormMain::closeEvent() method. qApp->setQuitOnLastWindowClosed(false); // Display the tray icon. QSystemTrayIcon::show(); emit shown(); qDebug("Tray icon displayed."); } void SystemTrayIcon::show() { #if defined(Q_OS_WIN) // Show immediately. qDebug("Showing tray icon immediately."); showPrivate(); #else // Delay avoids race conditions and tray icon is properly displayed. qDebug("Showing tray icon with 1000 ms delay."); QTimer::singleShot(1000, this, SLOT(showPrivate())); #endif } void SystemTrayIcon::setNumber(int number, bool any_new_message) { Q_UNUSED(any_new_message) if (number <= 0) { setToolTip(QSL(APP_LONG_NAME)); QSystemTrayIcon::setIcon(QIcon(m_normalIcon)); } else { setToolTip(tr("%1\nUnread news: %2").arg(QSL(APP_LONG_NAME), QString::number(number))); QPixmap background(m_plainPixmap); QPainter tray_painter; tray_painter.begin(&background); if (qApp->settings()->value(GROUP(GUI), SETTING(GUI::MonochromeTrayIcon)).toBool()) { tray_painter.setPen(Qt::GlobalColor::white); } else { tray_painter.setPen(Qt::GlobalColor::black); } tray_painter.setRenderHint(QPainter::RenderHint::SmoothPixmapTransform, true); tray_painter.setRenderHint(QPainter::RenderHint::TextAntialiasing, true); // Numbers with more than 2 digits won't be readable, display // infinity symbol in that case. if (number > 999) { m_font.setPixelSize(100); tray_painter.setFont(m_font); tray_painter.drawText(QRect(0, 0, 128, 128), Qt::AlignVCenter | Qt::AlignCenter, QChar(8734)); } else { // Smaller number if it has 3 digits. if (number > 99) { m_font.setPixelSize(55); } else if (number > 9) { m_font.setPixelSize(80); } // Bigger number if it has just one digit. else { m_font.setPixelSize(100); } tray_painter.setFont(m_font); tray_painter.drawText(QRect(0, 0, 128, 128), Qt::AlignmentFlag::AlignVCenter | Qt::AlignmentFlag::AlignCenter, QString::number(number)); } tray_painter.end(); QSystemTrayIcon::setIcon(QIcon(background)); } } void SystemTrayIcon::showMessage(const QString& title, const QString& message, QSystemTrayIcon::MessageIcon icon, int milliseconds_timeout_hint, std::function functor) { if (m_connection) { // Disconnect previous bubble click signalling. disconnect(m_connection); } if (functor) { // Establish new connection for bubble click. m_connection = connect(this, &SystemTrayIcon::messageClicked, functor); } // NOTE: If connections do not work, then use QMetaObject::invokeMethod(...). QSystemTrayIcon::showMessage(title, message, icon, milliseconds_timeout_hint); }