18 lines
385 B
C++
18 lines
385 B
C++
#pragma once
|
|
|
|
#include <QSystemTrayIcon>
|
|
#include "core/NodeWidget/nodewidget.h"
|
|
#include "napi.h"
|
|
|
|
class NSystemTrayIcon: public QSystemTrayIcon, public NodeWidget
|
|
{
|
|
Q_OBJECT
|
|
NODEWIDGET_IMPLEMENTATIONS(QSystemTrayIcon)
|
|
public:
|
|
using QSystemTrayIcon::QSystemTrayIcon; //inherit all constructors of QSystemTrayIcon
|
|
void connectWidgetSignalsToEventEmitter() {
|
|
}
|
|
};
|
|
|
|
|