CuteLogger
Fast and simple logging solution for Qt based applications
moc_playlisttable.cpp
1/****************************************************************************
2** Meta object code from reading C++ file 'playlisttable.h'
3**
4** Created by: The Qt Meta Object Compiler version 68 (Qt 6.6.2)
5**
6** WARNING! All changes made in this file will be lost!
7*****************************************************************************/
8
9#include "../../../../src/widgets/playlisttable.h"
10#include <QtCore/qmetatype.h>
11
12#if __has_include(<QtCore/qtmochelpers.h>)
13#include <QtCore/qtmochelpers.h>
14#else
15QT_BEGIN_MOC_NAMESPACE
16#endif
17
18
19#include <memory>
20
21#if !defined(Q_MOC_OUTPUT_REVISION)
22#error "The header file 'playlisttable.h' doesn't include <QObject>."
23#elif Q_MOC_OUTPUT_REVISION != 68
24#error "This file was generated using the moc from 6.6.2. It"
25#error "cannot be used with the include files from this version of Qt."
26#error "(The moc has changed too much.)"
27#endif
28
29#ifndef Q_CONSTINIT
30#define Q_CONSTINIT
31#endif
32
33QT_WARNING_PUSH
34QT_WARNING_DISABLE_DEPRECATED
35QT_WARNING_DISABLE_GCC("-Wuseless-cast")
36namespace {
37
38#ifdef QT_MOC_HAS_STRINGDATA
39struct qt_meta_stringdata_CLASSPlaylistTableENDCLASS_t {};
40constexpr auto qt_meta_stringdata_CLASSPlaylistTableENDCLASS = QtMocHelpers::stringData(
41 "PlaylistTable",
42 "movedToEnd",
43 ""
44);
45#else // !QT_MOC_HAS_STRING_DATA
46struct qt_meta_stringdata_CLASSPlaylistTableENDCLASS_t {
47 uint offsetsAndSizes[6];
48 char stringdata0[14];
49 char stringdata1[11];
50 char stringdata2[1];
51};
52#define QT_MOC_LITERAL(ofs, len) \
53 uint(sizeof(qt_meta_stringdata_CLASSPlaylistTableENDCLASS_t::offsetsAndSizes) + ofs), len
54Q_CONSTINIT static const qt_meta_stringdata_CLASSPlaylistTableENDCLASS_t qt_meta_stringdata_CLASSPlaylistTableENDCLASS = {
55 {
56 QT_MOC_LITERAL(0, 13), // "PlaylistTable"
57 QT_MOC_LITERAL(14, 10), // "movedToEnd"
58 QT_MOC_LITERAL(25, 0) // ""
59 },
60 "PlaylistTable",
61 "movedToEnd",
62 ""
63};
64#undef QT_MOC_LITERAL
65#endif // !QT_MOC_HAS_STRING_DATA
66} // unnamed namespace
67
68Q_CONSTINIT static const uint qt_meta_data_CLASSPlaylistTableENDCLASS[] = {
69
70 // content:
71 12, // revision
72 0, // classname
73 0, 0, // classinfo
74 1, 14, // methods
75 0, 0, // properties
76 0, 0, // enums/sets
77 0, 0, // constructors
78 0, // flags
79 1, // signalCount
80
81 // signals: name, argc, parameters, tag, flags, initial metatype offsets
82 1, 0, 20, 2, 0x06, 1 /* Public */,
83
84 // signals: parameters
85 QMetaType::Void,
86
87 0 // eod
88};
89
90Q_CONSTINIT const QMetaObject PlaylistTable::staticMetaObject = { {
91 QMetaObject::SuperData::link<QTableView::staticMetaObject>(),
92 qt_meta_stringdata_CLASSPlaylistTableENDCLASS.offsetsAndSizes,
93 qt_meta_data_CLASSPlaylistTableENDCLASS,
94 qt_static_metacall,
95 nullptr,
96 qt_incomplete_metaTypeArray<qt_meta_stringdata_CLASSPlaylistTableENDCLASS_t,
97 // Q_OBJECT / Q_GADGET
98 QtPrivate::TypeAndForceComplete<PlaylistTable, std::true_type>,
99 // method 'movedToEnd'
100 QtPrivate::TypeAndForceComplete<void, std::false_type>
101 >,
102 nullptr
103} };
104
105void PlaylistTable::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
106{
107 if (_c == QMetaObject::InvokeMetaMethod) {
108 auto *_t = static_cast<PlaylistTable *>(_o);
109 (void)_t;
110 switch (_id) {
111 case 0: _t->movedToEnd(); break;
112 default: ;
113 }
114 } else if (_c == QMetaObject::IndexOfMethod) {
115 int *result = reinterpret_cast<int *>(_a[0]);
116 {
117 using _t = void (PlaylistTable::*)();
118 if (_t _q_method = &PlaylistTable::movedToEnd; *reinterpret_cast<_t *>(_a[1]) == _q_method) {
119 *result = 0;
120 return;
121 }
122 }
123 }
124 (void)_a;
125}
126
127const QMetaObject *PlaylistTable::metaObject() const
128{
129 return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
130}
131
132void *PlaylistTable::qt_metacast(const char *_clname)
133{
134 if (!_clname) return nullptr;
135 if (!strcmp(_clname, qt_meta_stringdata_CLASSPlaylistTableENDCLASS.stringdata0))
136 return static_cast<void*>(this);
137 return QTableView::qt_metacast(_clname);
138}
139
140int PlaylistTable::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
141{
142 _id = QTableView::qt_metacall(_c, _id, _a);
143 if (_id < 0)
144 return _id;
145 if (_c == QMetaObject::InvokeMetaMethod) {
146 if (_id < 1)
147 qt_static_metacall(this, _c, _id, _a);
148 _id -= 1;
149 } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
150 if (_id < 1)
151 *reinterpret_cast<QMetaType *>(_a[0]) = QMetaType();
152 _id -= 1;
153 }
154 return _id;
155}
156
157// SIGNAL 0
158void PlaylistTable::movedToEnd()
159{
160 QMetaObject::activate(this, &staticMetaObject, 0, nullptr);
161}
162QT_WARNING_POP