diff --git a/src/trayc/QtTrayMenu.cpp b/src/trayc/QtTrayMenu.cpp index 9ce6c3a..5346d52 100644 --- a/src/trayc/QtTrayMenu.cpp +++ b/src/trayc/QtTrayMenu.cpp @@ -1,5 +1,6 @@ #include "QtTrayMenu.h" #include +#include "main.moc" int argc = 1; char *argvArray[] = {(char*)"TrayMenuApp", nullptr}; diff --git a/src/trayc/main.moc b/src/trayc/main.moc new file mode 100644 index 0000000..177af59 --- /dev/null +++ b/src/trayc/main.moc @@ -0,0 +1,145 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'QtTrayMenu.h' +** +** Created by: The Qt Meta Object Compiler version 68 (Qt 6.2.4) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "QtTrayMenu.h" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'QtTrayMenu.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 68 +#error "This file was generated using the moc from 6.2.4. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_QtTrayMenu_t { + const uint offsetsAndSize[8]; + char stringdata0[42]; +}; +#define QT_MOC_LITERAL(ofs, len) \ + uint(offsetof(qt_meta_stringdata_QtTrayMenu_t, stringdata0) + ofs), len +static const qt_meta_stringdata_QtTrayMenu_t qt_meta_stringdata_QtTrayMenu = { + { +QT_MOC_LITERAL(0, 10), // "QtTrayMenu" +QT_MOC_LITERAL(11, 13), // "exitRequested" +QT_MOC_LITERAL(25, 0), // "" +QT_MOC_LITERAL(26, 15) // "onExitRequested" + + }, + "QtTrayMenu\0exitRequested\0\0onExitRequested" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_QtTrayMenu[] = { + + // content: + 10, // revision + 0, // classname + 0, 0, // classinfo + 2, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 1, // signalCount + + // signals: name, argc, parameters, tag, flags, initial metatype offsets + 1, 0, 26, 2, 0x06, 1 /* Public */, + + // slots: name, argc, parameters, tag, flags, initial metatype offsets + 3, 0, 27, 2, 0x08, 2 /* Private */, + + // signals: parameters + QMetaType::Void, + + // slots: parameters + QMetaType::Void, + + 0 // eod +}; + +void QtTrayMenu::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->exitRequested(); break; + case 1: _t->onExitRequested(); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (QtTrayMenu::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&QtTrayMenu::exitRequested)) { + *result = 0; + return; + } + } + } + (void)_a; +} + +const QMetaObject QtTrayMenu::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_QtTrayMenu.offsetsAndSize, + qt_meta_data_QtTrayMenu, + qt_static_metacall, + nullptr, +qt_incomplete_metaTypeArray, QtPrivate::TypeAndForceComplete +, QtPrivate::TypeAndForceComplete + + +>, + nullptr +} }; + + +const QMetaObject *QtTrayMenu::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *QtTrayMenu::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_QtTrayMenu.stringdata0)) + return static_cast(this); + return QObject::qt_metacast(_clname); +} + +int QtTrayMenu::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 2) + qt_static_metacall(this, _c, _id, _a); + _id -= 2; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 2) + *reinterpret_cast(_a[0]) = QMetaType(); + _id -= 2; + } + return _id; +} + +// SIGNAL 0 +void QtTrayMenu::exitRequested() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE