// SPDX-FileCopyrightText: 2019 Black Hat // SPDX-License-Identifier: GPL-3.0-only #pragma once // Modified from mujx/nheko's TrayIcon. #include /** * @class TrayIcon * * A class inheriting from QSystemTrayIcon to handle setting the system tray icon. * * Works for Windows, Linux and MacOS. * * @sa QSystemTrayIcon */ class TrayIcon : public QSystemTrayIcon { Q_OBJECT public: TrayIcon(QObject *parent = nullptr); };