1/****************************************************************************
2** Meta object code from reading C++ file 'chatdialog.h'
3**
4** Created by: The Qt Meta Object Compiler version 68 (Qt 6.0.0)
5**
6** WARNING! All changes made in this file will be lost!
7*****************************************************************************/
8
9#include <memory>
10#include "chatdialog.h"
11#include <QtCore/qbytearray.h>
12#include <QtCore/qmetatype.h>
13#if !defined(Q_MOC_OUTPUT_REVISION)
14#error "The header file 'chatdialog.h' doesn't include <QObject>."
15#elif Q_MOC_OUTPUT_REVISION != 68
16#error "This file was generated using the moc from 6.0.0. It"
17#error "cannot be used with the include files from this version of Qt."
18#error "(The moc has changed too much.)"
19#endif
20
21QT_BEGIN_MOC_NAMESPACE
22QT_WARNING_PUSH
23QT_WARNING_DISABLE_DEPRECATED
24struct qt_meta_stringdata_ChatDialog_t {
25 const uint offsetsAndSize[20];
26 char stringdata0[105];
27};
28#define QT_MOC_LITERAL(ofs, len) \
29 uint(offsetof(qt_meta_stringdata_ChatDialog_t, stringdata0) + ofs), len
30static const qt_meta_stringdata_ChatDialog_t qt_meta_stringdata_ChatDialog = {
31 {
32QT_MOC_LITERAL(0, 10), // "ChatDialog"
33QT_MOC_LITERAL(11, 13), // "appendMessage"
34QT_MOC_LITERAL(25, 0), // ""
35QT_MOC_LITERAL(26, 4), // "from"
36QT_MOC_LITERAL(31, 7), // "message"
37QT_MOC_LITERAL(39, 13), // "returnPressed"
38QT_MOC_LITERAL(53, 14), // "newParticipant"
39QT_MOC_LITERAL(68, 4), // "nick"
40QT_MOC_LITERAL(73, 15), // "participantLeft"
41QT_MOC_LITERAL(89, 15) // "showInformation"
42
43 },
44 "ChatDialog\0appendMessage\0\0from\0message\0"
45 "returnPressed\0newParticipant\0nick\0"
46 "participantLeft\0showInformation"
47};
48#undef QT_MOC_LITERAL
49
50static const uint qt_meta_data_ChatDialog[] = {
51
52 // content:
53 9, // revision
54 0, // classname
55 0, 0, // classinfo
56 5, 14, // methods
57 0, 0, // properties
58 0, 0, // enums/sets
59 0, 0, // constructors
60 0, // flags
61 0, // signalCount
62
63 // slots: name, argc, parameters, tag, flags, initial metatype offsets
64 1, 2, 44, 2, 0x0a, 0 /* Public */,
65 5, 0, 49, 2, 0x08, 3 /* Private */,
66 6, 1, 50, 2, 0x08, 4 /* Private */,
67 8, 1, 53, 2, 0x08, 6 /* Private */,
68 9, 0, 56, 2, 0x08, 8 /* Private */,
69
70 // slots: parameters
71 QMetaType::Void, QMetaType::QString, QMetaType::QString, 3, 4,
72 QMetaType::Void,
73 QMetaType::Void, QMetaType::QString, 7,
74 QMetaType::Void, QMetaType::QString, 7,
75 QMetaType::Void,
76
77 0 // eod
78};
79
80void ChatDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
81{
82 if (_c == QMetaObject::InvokeMetaMethod) {
83 Q_ASSERT(staticMetaObject.cast(_o));
84 auto *_t = static_cast<ChatDialog *>(_o);
85 Q_UNUSED(_t)
86 switch (_id) {
87 case 0: _t->appendMessage((*reinterpret_cast< const QString(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break;
88 case 1: _t->returnPressed(); break;
89 case 2: _t->newParticipant((*reinterpret_cast< const QString(*)>(_a[1]))); break;
90 case 3: _t->participantLeft((*reinterpret_cast< const QString(*)>(_a[1]))); break;
91 case 4: _t->showInformation(); break;
92 default: ;
93 }
94 }
95}
96
97const QMetaObject ChatDialog::staticMetaObject = { {
98 QMetaObject::SuperData::link<QDialog::staticMetaObject>(),
99 qt_meta_stringdata_ChatDialog.offsetsAndSize,
100 qt_meta_data_ChatDialog,
101 qt_static_metacall,
102 nullptr,
103qt_incomplete_metaTypeArray<qt_meta_stringdata_ChatDialog_t
104
105, QtPrivate::TypeAndForceComplete<void, std::false_type>, QtPrivate::TypeAndForceComplete<const QString &, std::false_type>, QtPrivate::TypeAndForceComplete<const QString &, std::false_type>, QtPrivate::TypeAndForceComplete<void, std::false_type>, QtPrivate::TypeAndForceComplete<void, std::false_type>, QtPrivate::TypeAndForceComplete<const QString &, std::false_type>, QtPrivate::TypeAndForceComplete<void, std::false_type>, QtPrivate::TypeAndForceComplete<const QString &, std::false_type>, QtPrivate::TypeAndForceComplete<void, std::false_type>
106
107
108>,
109 nullptr
110} };
111
112
113const QMetaObject *ChatDialog::metaObject() const
114{
115 return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
116}
117
118void *ChatDialog::qt_metacast(const char *_clname)
119{
120 if (!_clname) return nullptr;
121 if (!strcmp(_clname, qt_meta_stringdata_ChatDialog.stringdata0))
122 return static_cast<void*>(this);
123 return QDialog::qt_metacast(_clname);
124}
125
126int ChatDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
127{
128 _id = QDialog::qt_metacall(_c, _id, _a);
129 if (_id < 0)
130 return _id;
131 if (_c == QMetaObject::InvokeMetaMethod) {
132 if (_id < 5)
133 qt_static_metacall(this, _c, _id, _a);
134 _id -= 5;
135 } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
136 if (_id < 5)
137 *reinterpret_cast<QMetaType *>(_a[0]) = QMetaType();
138 _id -= 5;
139 }
140 return _id;
141}
142QT_WARNING_POP
143QT_END_MOC_NAMESPACE
144