Files
neochat/src/trayicon.h
2021-09-07 11:27:13 +00:00

19 lines
329 B
C++

// SPDX-FileCopyrightText: 2019 Black Hat <bhat@encom.eu.org>
// SPDX-License-Identifier: GPL-3.0-only
#pragma once
// Modified from mujx/nheko's TrayIcon.
#include <QSystemTrayIcon>
class TrayIcon : public QSystemTrayIcon
{
Q_OBJECT
public:
TrayIcon(QObject *parent = nullptr);
Q_SIGNALS:
void showWindow();
};