bugfix/feat: main loading bar, add bar for sender

This commit is contained in:
semenov
2024-09-24 13:23:29 +03:00
parent daf1b3e3ef
commit 435f9ca1ab
24 changed files with 1016 additions and 143 deletions

View File

@@ -22,8 +22,8 @@ QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_SendSystem_t {
QByteArrayData data[3];
char stringdata0[28];
QByteArrayData data[4];
char stringdata0[36];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
@@ -33,11 +33,12 @@ struct qt_meta_stringdata_SendSystem_t {
static const qt_meta_stringdata_SendSystem_t qt_meta_stringdata_SendSystem = {
{
QT_MOC_LITERAL(0, 0, 10), // "SendSystem"
QT_MOC_LITERAL(1, 11, 15), // "sigGetXmlAnswer"
QT_MOC_LITERAL(2, 27, 0) // ""
QT_MOC_LITERAL(1, 11, 7), // "sigSend"
QT_MOC_LITERAL(2, 19, 0), // ""
QT_MOC_LITERAL(3, 20, 15) // "sigGetXmlAnswer"
},
"SendSystem\0sigGetXmlAnswer\0"
"SendSystem\0sigSend\0\0sigGetXmlAnswer"
};
#undef QT_MOC_LITERAL
@@ -47,17 +48,19 @@ static const uint qt_meta_data_SendSystem[] = {
8, // revision
0, // classname
0, 0, // classinfo
1, 14, // methods
2, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
1, // signalCount
2, // signalCount
// signals: name, argc, parameters, tag, flags
1, 1, 19, 2, 0x06 /* Public */,
1, 0, 24, 2, 0x06 /* Public */,
3, 1, 25, 2, 0x06 /* Public */,
// signals: parameters
QMetaType::Void,
QMetaType::QByteArray, QMetaType::QString, 2,
0 // eod
@@ -69,16 +72,24 @@ void SendSystem::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id,
auto *_t = static_cast<SendSystem *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: { QByteArray _r = _t->sigGetXmlAnswer((*reinterpret_cast< QString(*)>(_a[1])));
case 0: _t->sigSend(); break;
case 1: { QByteArray _r = _t->sigGetXmlAnswer((*reinterpret_cast< QString(*)>(_a[1])));
if (_a[0]) *reinterpret_cast< QByteArray*>(_a[0]) = std::move(_r); } break;
default: ;
}
} else if (_c == QMetaObject::IndexOfMethod) {
int *result = reinterpret_cast<int *>(_a[0]);
{
using _t = void (SendSystem::*)();
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&SendSystem::sigSend)) {
*result = 0;
return;
}
}
{
using _t = QByteArray (SendSystem::*)(QString );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&SendSystem::sigGetXmlAnswer)) {
*result = 0;
*result = 1;
return;
}
}
@@ -114,23 +125,29 @@ int SendSystem::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 1)
if (_id < 2)
qt_static_metacall(this, _c, _id, _a);
_id -= 1;
_id -= 2;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 1)
if (_id < 2)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 1;
_id -= 2;
}
return _id;
}
// SIGNAL 0
void SendSystem::sigSend()
{
QMetaObject::activate(this, &staticMetaObject, 0, nullptr);
}
// SIGNAL 1
QByteArray SendSystem::sigGetXmlAnswer(QString _t1)
{
QByteArray _t0{};
void *_a[] = { const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t0))), const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
QMetaObject::activate(this, &staticMetaObject, 0, _a);
QMetaObject::activate(this, &staticMetaObject, 1, _a);
return _t0;
}
QT_WARNING_POP