Actualizaciones varias: mejoras en cuenta, sincronización, UI

This commit is contained in:
2026-07-05 10:45:44 +02:00
parent 8799633447
commit 4569c174f0
195 changed files with 32571 additions and 20694 deletions
@@ -39,10 +39,17 @@ template <> constexpr inline auto FolderListModel::qt_create_metaobjectdata<qt_m
{
namespace QMC = QtMocConstants;
QtMocHelpers::StringRefStorage qt_stringData {
"FolderListModel"
"FolderListModel",
"refresh",
"",
"onAccountListChanged"
};
QtMocHelpers::UintData qt_methods {
// Slot 'refresh'
QtMocHelpers::SlotData<void()>(1, 2, QMC::AccessPublic, QMetaType::Void),
// Slot 'onAccountListChanged'
QtMocHelpers::SlotData<void()>(3, 2, QMC::AccessPrivate, QMetaType::Void),
};
QtMocHelpers::UintData qt_properties {
};
@@ -64,9 +71,13 @@ Q_CONSTINIT const QMetaObject FolderListModel::staticMetaObject = { {
void FolderListModel::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
auto *_t = static_cast<FolderListModel *>(_o);
(void)_t;
(void)_c;
(void)_id;
if (_c == QMetaObject::InvokeMetaMethod) {
switch (_id) {
case 0: _t->refresh(); break;
case 1: _t->onAccountListChanged(); break;
default: ;
}
}
(void)_a;
}
@@ -86,6 +97,18 @@ void *FolderListModel::qt_metacast(const char *_clname)
int FolderListModel::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QAbstractItemModel::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;
}
if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 2)
*reinterpret_cast<QMetaType *>(_a[0]) = QMetaType();
_id -= 2;
}
return _id;
}
QT_WARNING_POP