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