mirror of
https://github.com/mappu/miqt.git
synced 2025-02-01 19:10:21 +00:00
525 lines
16 KiB
C++
525 lines
16 KiB
C++
#include <QChildEvent>
|
|
#include <QEvent>
|
|
#include <QIcon>
|
|
#include <QMenu>
|
|
#include <QMetaMethod>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QRect>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QSystemTrayIcon>
|
|
#include <QTimerEvent>
|
|
#include <qsystemtrayicon.h>
|
|
#include "gen_qsystemtrayicon.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void miqt_exec_callback_QSystemTrayIcon_activated(intptr_t, int);
|
|
void miqt_exec_callback_QSystemTrayIcon_messageClicked(intptr_t);
|
|
bool miqt_exec_callback_QSystemTrayIcon_event(QSystemTrayIcon*, intptr_t, QEvent*);
|
|
bool miqt_exec_callback_QSystemTrayIcon_eventFilter(QSystemTrayIcon*, intptr_t, QObject*, QEvent*);
|
|
void miqt_exec_callback_QSystemTrayIcon_timerEvent(QSystemTrayIcon*, intptr_t, QTimerEvent*);
|
|
void miqt_exec_callback_QSystemTrayIcon_childEvent(QSystemTrayIcon*, intptr_t, QChildEvent*);
|
|
void miqt_exec_callback_QSystemTrayIcon_customEvent(QSystemTrayIcon*, intptr_t, QEvent*);
|
|
void miqt_exec_callback_QSystemTrayIcon_connectNotify(QSystemTrayIcon*, intptr_t, QMetaMethod*);
|
|
void miqt_exec_callback_QSystemTrayIcon_disconnectNotify(QSystemTrayIcon*, intptr_t, QMetaMethod*);
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
class MiqtVirtualQSystemTrayIcon final : public QSystemTrayIcon {
|
|
public:
|
|
|
|
MiqtVirtualQSystemTrayIcon(): QSystemTrayIcon() {};
|
|
MiqtVirtualQSystemTrayIcon(const QIcon& icon): QSystemTrayIcon(icon) {};
|
|
MiqtVirtualQSystemTrayIcon(QObject* parent): QSystemTrayIcon(parent) {};
|
|
MiqtVirtualQSystemTrayIcon(const QIcon& icon, QObject* parent): QSystemTrayIcon(icon, parent) {};
|
|
|
|
virtual ~MiqtVirtualQSystemTrayIcon() override = default;
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__event = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool event(QEvent* event) override {
|
|
if (handle__event == 0) {
|
|
return QSystemTrayIcon::event(event);
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QSystemTrayIcon_event(this, handle__event, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_event(QEvent* event) {
|
|
|
|
return QSystemTrayIcon::event(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__eventFilter = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool eventFilter(QObject* watched, QEvent* event) override {
|
|
if (handle__eventFilter == 0) {
|
|
return QSystemTrayIcon::eventFilter(watched, event);
|
|
}
|
|
|
|
QObject* sigval1 = watched;
|
|
QEvent* sigval2 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QSystemTrayIcon_eventFilter(this, handle__eventFilter, sigval1, sigval2);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_eventFilter(QObject* watched, QEvent* event) {
|
|
|
|
return QSystemTrayIcon::eventFilter(watched, event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__timerEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void timerEvent(QTimerEvent* event) override {
|
|
if (handle__timerEvent == 0) {
|
|
QSystemTrayIcon::timerEvent(event);
|
|
return;
|
|
}
|
|
|
|
QTimerEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QSystemTrayIcon_timerEvent(this, handle__timerEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_timerEvent(QTimerEvent* event) {
|
|
|
|
QSystemTrayIcon::timerEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__childEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void childEvent(QChildEvent* event) override {
|
|
if (handle__childEvent == 0) {
|
|
QSystemTrayIcon::childEvent(event);
|
|
return;
|
|
}
|
|
|
|
QChildEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QSystemTrayIcon_childEvent(this, handle__childEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_childEvent(QChildEvent* event) {
|
|
|
|
QSystemTrayIcon::childEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__customEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void customEvent(QEvent* event) override {
|
|
if (handle__customEvent == 0) {
|
|
QSystemTrayIcon::customEvent(event);
|
|
return;
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QSystemTrayIcon_customEvent(this, handle__customEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_customEvent(QEvent* event) {
|
|
|
|
QSystemTrayIcon::customEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__connectNotify = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void connectNotify(const QMetaMethod& signal) override {
|
|
if (handle__connectNotify == 0) {
|
|
QSystemTrayIcon::connectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QSystemTrayIcon_connectNotify(this, handle__connectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_connectNotify(QMetaMethod* signal) {
|
|
|
|
QSystemTrayIcon::connectNotify(*signal);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__disconnectNotify = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void disconnectNotify(const QMetaMethod& signal) override {
|
|
if (handle__disconnectNotify == 0) {
|
|
QSystemTrayIcon::disconnectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QSystemTrayIcon_disconnectNotify(this, handle__disconnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_disconnectNotify(QMetaMethod* signal) {
|
|
|
|
QSystemTrayIcon::disconnectNotify(*signal);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QSystemTrayIcon* QSystemTrayIcon_new() {
|
|
return new MiqtVirtualQSystemTrayIcon();
|
|
}
|
|
|
|
QSystemTrayIcon* QSystemTrayIcon_new2(QIcon* icon) {
|
|
return new MiqtVirtualQSystemTrayIcon(*icon);
|
|
}
|
|
|
|
QSystemTrayIcon* QSystemTrayIcon_new3(QObject* parent) {
|
|
return new MiqtVirtualQSystemTrayIcon(parent);
|
|
}
|
|
|
|
QSystemTrayIcon* QSystemTrayIcon_new4(QIcon* icon, QObject* parent) {
|
|
return new MiqtVirtualQSystemTrayIcon(*icon, parent);
|
|
}
|
|
|
|
void QSystemTrayIcon_virtbase(QSystemTrayIcon* src, QObject** outptr_QObject) {
|
|
*outptr_QObject = static_cast<QObject*>(src);
|
|
}
|
|
|
|
QMetaObject* QSystemTrayIcon_metaObject(const QSystemTrayIcon* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QSystemTrayIcon_metacast(QSystemTrayIcon* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string QSystemTrayIcon_tr(const char* s) {
|
|
QString _ret = QSystemTrayIcon::tr(s);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QSystemTrayIcon_trUtf8(const char* s) {
|
|
QString _ret = QSystemTrayIcon::trUtf8(s);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QSystemTrayIcon_setContextMenu(QSystemTrayIcon* self, QMenu* menu) {
|
|
self->setContextMenu(menu);
|
|
}
|
|
|
|
QMenu* QSystemTrayIcon_contextMenu(const QSystemTrayIcon* self) {
|
|
return self->contextMenu();
|
|
}
|
|
|
|
QIcon* QSystemTrayIcon_icon(const QSystemTrayIcon* self) {
|
|
return new QIcon(self->icon());
|
|
}
|
|
|
|
void QSystemTrayIcon_setIcon(QSystemTrayIcon* self, QIcon* icon) {
|
|
self->setIcon(*icon);
|
|
}
|
|
|
|
struct miqt_string QSystemTrayIcon_toolTip(const QSystemTrayIcon* self) {
|
|
QString _ret = self->toolTip();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QSystemTrayIcon_setToolTip(QSystemTrayIcon* self, struct miqt_string tip) {
|
|
QString tip_QString = QString::fromUtf8(tip.data, tip.len);
|
|
self->setToolTip(tip_QString);
|
|
}
|
|
|
|
bool QSystemTrayIcon_isSystemTrayAvailable() {
|
|
return QSystemTrayIcon::isSystemTrayAvailable();
|
|
}
|
|
|
|
bool QSystemTrayIcon_supportsMessages() {
|
|
return QSystemTrayIcon::supportsMessages();
|
|
}
|
|
|
|
QRect* QSystemTrayIcon_geometry(const QSystemTrayIcon* self) {
|
|
return new QRect(self->geometry());
|
|
}
|
|
|
|
bool QSystemTrayIcon_isVisible(const QSystemTrayIcon* self) {
|
|
return self->isVisible();
|
|
}
|
|
|
|
void QSystemTrayIcon_setVisible(QSystemTrayIcon* self, bool visible) {
|
|
self->setVisible(visible);
|
|
}
|
|
|
|
void QSystemTrayIcon_show(QSystemTrayIcon* self) {
|
|
self->show();
|
|
}
|
|
|
|
void QSystemTrayIcon_hide(QSystemTrayIcon* self) {
|
|
self->hide();
|
|
}
|
|
|
|
void QSystemTrayIcon_showMessage(QSystemTrayIcon* self, struct miqt_string title, struct miqt_string msg, QIcon* icon) {
|
|
QString title_QString = QString::fromUtf8(title.data, title.len);
|
|
QString msg_QString = QString::fromUtf8(msg.data, msg.len);
|
|
self->showMessage(title_QString, msg_QString, *icon);
|
|
}
|
|
|
|
void QSystemTrayIcon_showMessage2(QSystemTrayIcon* self, struct miqt_string title, struct miqt_string msg) {
|
|
QString title_QString = QString::fromUtf8(title.data, title.len);
|
|
QString msg_QString = QString::fromUtf8(msg.data, msg.len);
|
|
self->showMessage(title_QString, msg_QString);
|
|
}
|
|
|
|
void QSystemTrayIcon_activated(QSystemTrayIcon* self, int reason) {
|
|
self->activated(static_cast<QSystemTrayIcon::ActivationReason>(reason));
|
|
}
|
|
|
|
void QSystemTrayIcon_connect_activated(QSystemTrayIcon* self, intptr_t slot) {
|
|
MiqtVirtualQSystemTrayIcon::connect(self, static_cast<void (QSystemTrayIcon::*)(QSystemTrayIcon::ActivationReason)>(&QSystemTrayIcon::activated), self, [=](QSystemTrayIcon::ActivationReason reason) {
|
|
QSystemTrayIcon::ActivationReason reason_ret = reason;
|
|
int sigval1 = static_cast<int>(reason_ret);
|
|
miqt_exec_callback_QSystemTrayIcon_activated(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QSystemTrayIcon_messageClicked(QSystemTrayIcon* self) {
|
|
self->messageClicked();
|
|
}
|
|
|
|
void QSystemTrayIcon_connect_messageClicked(QSystemTrayIcon* self, intptr_t slot) {
|
|
MiqtVirtualQSystemTrayIcon::connect(self, static_cast<void (QSystemTrayIcon::*)()>(&QSystemTrayIcon::messageClicked), self, [=]() {
|
|
miqt_exec_callback_QSystemTrayIcon_messageClicked(slot);
|
|
});
|
|
}
|
|
|
|
struct miqt_string QSystemTrayIcon_tr2(const char* s, const char* c) {
|
|
QString _ret = QSystemTrayIcon::tr(s, c);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QSystemTrayIcon_tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QSystemTrayIcon::tr(s, c, static_cast<int>(n));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QSystemTrayIcon_trUtf82(const char* s, const char* c) {
|
|
QString _ret = QSystemTrayIcon::trUtf8(s, c);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QSystemTrayIcon_trUtf83(const char* s, const char* c, int n) {
|
|
QString _ret = QSystemTrayIcon::trUtf8(s, c, static_cast<int>(n));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QSystemTrayIcon_showMessage4(QSystemTrayIcon* self, struct miqt_string title, struct miqt_string msg, QIcon* icon, int msecs) {
|
|
QString title_QString = QString::fromUtf8(title.data, title.len);
|
|
QString msg_QString = QString::fromUtf8(msg.data, msg.len);
|
|
self->showMessage(title_QString, msg_QString, *icon, static_cast<int>(msecs));
|
|
}
|
|
|
|
void QSystemTrayIcon_showMessage3(QSystemTrayIcon* self, struct miqt_string title, struct miqt_string msg, int icon) {
|
|
QString title_QString = QString::fromUtf8(title.data, title.len);
|
|
QString msg_QString = QString::fromUtf8(msg.data, msg.len);
|
|
self->showMessage(title_QString, msg_QString, static_cast<QSystemTrayIcon::MessageIcon>(icon));
|
|
}
|
|
|
|
void QSystemTrayIcon_showMessage42(QSystemTrayIcon* self, struct miqt_string title, struct miqt_string msg, int icon, int msecs) {
|
|
QString title_QString = QString::fromUtf8(title.data, title.len);
|
|
QString msg_QString = QString::fromUtf8(msg.data, msg.len);
|
|
self->showMessage(title_QString, msg_QString, static_cast<QSystemTrayIcon::MessageIcon>(icon), static_cast<int>(msecs));
|
|
}
|
|
|
|
bool QSystemTrayIcon_override_virtual_event(void* self, intptr_t slot) {
|
|
MiqtVirtualQSystemTrayIcon* self_cast = dynamic_cast<MiqtVirtualQSystemTrayIcon*>( (QSystemTrayIcon*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__event = slot;
|
|
return true;
|
|
}
|
|
|
|
bool QSystemTrayIcon_virtualbase_event(void* self, QEvent* event) {
|
|
return ( (MiqtVirtualQSystemTrayIcon*)(self) )->virtualbase_event(event);
|
|
}
|
|
|
|
bool QSystemTrayIcon_override_virtual_eventFilter(void* self, intptr_t slot) {
|
|
MiqtVirtualQSystemTrayIcon* self_cast = dynamic_cast<MiqtVirtualQSystemTrayIcon*>( (QSystemTrayIcon*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__eventFilter = slot;
|
|
return true;
|
|
}
|
|
|
|
bool QSystemTrayIcon_virtualbase_eventFilter(void* self, QObject* watched, QEvent* event) {
|
|
return ( (MiqtVirtualQSystemTrayIcon*)(self) )->virtualbase_eventFilter(watched, event);
|
|
}
|
|
|
|
bool QSystemTrayIcon_override_virtual_timerEvent(void* self, intptr_t slot) {
|
|
MiqtVirtualQSystemTrayIcon* self_cast = dynamic_cast<MiqtVirtualQSystemTrayIcon*>( (QSystemTrayIcon*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__timerEvent = slot;
|
|
return true;
|
|
}
|
|
|
|
void QSystemTrayIcon_virtualbase_timerEvent(void* self, QTimerEvent* event) {
|
|
( (MiqtVirtualQSystemTrayIcon*)(self) )->virtualbase_timerEvent(event);
|
|
}
|
|
|
|
bool QSystemTrayIcon_override_virtual_childEvent(void* self, intptr_t slot) {
|
|
MiqtVirtualQSystemTrayIcon* self_cast = dynamic_cast<MiqtVirtualQSystemTrayIcon*>( (QSystemTrayIcon*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__childEvent = slot;
|
|
return true;
|
|
}
|
|
|
|
void QSystemTrayIcon_virtualbase_childEvent(void* self, QChildEvent* event) {
|
|
( (MiqtVirtualQSystemTrayIcon*)(self) )->virtualbase_childEvent(event);
|
|
}
|
|
|
|
bool QSystemTrayIcon_override_virtual_customEvent(void* self, intptr_t slot) {
|
|
MiqtVirtualQSystemTrayIcon* self_cast = dynamic_cast<MiqtVirtualQSystemTrayIcon*>( (QSystemTrayIcon*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__customEvent = slot;
|
|
return true;
|
|
}
|
|
|
|
void QSystemTrayIcon_virtualbase_customEvent(void* self, QEvent* event) {
|
|
( (MiqtVirtualQSystemTrayIcon*)(self) )->virtualbase_customEvent(event);
|
|
}
|
|
|
|
bool QSystemTrayIcon_override_virtual_connectNotify(void* self, intptr_t slot) {
|
|
MiqtVirtualQSystemTrayIcon* self_cast = dynamic_cast<MiqtVirtualQSystemTrayIcon*>( (QSystemTrayIcon*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__connectNotify = slot;
|
|
return true;
|
|
}
|
|
|
|
void QSystemTrayIcon_virtualbase_connectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQSystemTrayIcon*)(self) )->virtualbase_connectNotify(signal);
|
|
}
|
|
|
|
bool QSystemTrayIcon_override_virtual_disconnectNotify(void* self, intptr_t slot) {
|
|
MiqtVirtualQSystemTrayIcon* self_cast = dynamic_cast<MiqtVirtualQSystemTrayIcon*>( (QSystemTrayIcon*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__disconnectNotify = slot;
|
|
return true;
|
|
}
|
|
|
|
void QSystemTrayIcon_virtualbase_disconnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQSystemTrayIcon*)(self) )->virtualbase_disconnectNotify(signal);
|
|
}
|
|
|
|
void QSystemTrayIcon_delete(QSystemTrayIcon* self) {
|
|
delete self;
|
|
}
|
|
|