int Q3TimeEdit::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = Q3DateTimeEditBase::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { if (_id < 3) qt_static_metacall(this, _c, _id, _a); _id -= 3; } #ifndef QT_NO_PROPERTIES else if (_c == QMetaObject::ReadProperty) { void *_v = _a[0]; switch (_id) { case 0: *reinterpret_cast< QTime*>(_v) = time(); break; case 1: *reinterpret_cast< bool*>(_v) = autoAdvance(); break; case 2: *reinterpret_cast< QTime*>(_v) = maxValue(); break; case 3: *reinterpret_cast< QTime*>(_v) = minValue(); break; case 4: *reinterpret_cast<int*>(_v) = QFlag(display()); break; } _id -= 5; } else if (_c == QMetaObject::WriteProperty) { void *_v = _a[0]; switch (_id) { case 0: setTime(*reinterpret_cast< QTime*>(_v)); break; case 1: setAutoAdvance(*reinterpret_cast< bool*>(_v)); break; case 2: setMaxValue(*reinterpret_cast< QTime*>(_v)); break; case 3: setMinValue(*reinterpret_cast< QTime*>(_v)); break; case 4: setDisplay(QFlag(*reinterpret_cast<int*>(_v))); break; } _id -= 5; } else if (_c == QMetaObject::ResetProperty) { _id -= 5; } else if (_c == QMetaObject::QueryPropertyDesignable) { _id -= 5; } else if (_c == QMetaObject::QueryPropertyScriptable) { _id -= 5; } else if (_c == QMetaObject::QueryPropertyStored) { _id -= 5; } else if (_c == QMetaObject::QueryPropertyEditable) { _id -= 5; } else if (_c == QMetaObject::QueryPropertyUser) { _id -= 5; } #endif // QT_NO_PROPERTIES return _id; }
bool QTimeEdit::qt_property( int id, int f, QVariant* v) { switch ( id - staticMetaObject()->propertyOffset() ) { case 0: switch( f ) { case 0: setTime(v->asTime()); break; case 1: *v = QVariant( this->time() ); break; case 3: case 4: case 5: break; default: return FALSE; } break; case 1: switch( f ) { case 0: setAutoAdvance(v->asBool()); break; case 1: *v = QVariant( this->autoAdvance(), 0 ); break; case 3: case 4: case 5: break; default: return FALSE; } break; case 2: switch( f ) { case 0: setMaxValue(v->asTime()); break; case 1: *v = QVariant( this->maxValue() ); break; case 3: case 4: case 5: break; default: return FALSE; } break; case 3: switch( f ) { case 0: setMinValue(v->asTime()); break; case 1: *v = QVariant( this->minValue() ); break; case 3: case 4: case 5: break; default: return FALSE; } break; case 4: switch( f ) { case 0: setDisplay(v->asUInt()); break; case 1: *v = QVariant( (int)this->display() ); break; case 3: case 4: case 5: break; default: return FALSE; } break; default: return QDateTimeEditBase::qt_property( id, f, v ); } return TRUE; }