1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /****************************************************************************
- ** Meta object code from reading C++ file 'colortools.h'
- **
- ** Created: Sun 3. Jun 16:48:55 2012
- ** by: The Qt Meta Object Compiler version 62 (Qt 4.7.4)
- **
- ** WARNING! All changes made in this file will be lost!
- *****************************************************************************/
- #include "../colortools.h"
- #if !defined(Q_MOC_OUTPUT_REVISION)
- #error "The header file 'colortools.h' doesn't include <QObject>."
- #elif Q_MOC_OUTPUT_REVISION != 62
- #error "This file was generated using the moc from 4.7.4. It"
- #error "cannot be used with the include files from this version of Qt."
- #error "(The moc has changed too much.)"
- #endif
- QT_BEGIN_MOC_NAMESPACE
- static const uint qt_meta_data_ColorTools[] = {
- // content:
- 5, // revision
- 0, // classname
- 0, 0, // classinfo
- 4, 14, // methods
- 0, 0, // properties
- 0, 0, // enums/sets
- 0, 0, // constructors
- 0, // flags
- 0, // signalCount
- // methods: signature, parameters, type, tag, flags
- 24, 18, 12, 11, 0x02,
- 36, 18, 12, 11, 0x02,
- 55, 18, 12, 11, 0x02,
- 79, 73, 12, 11, 0x02,
- 0 // eod
- };
- static const char qt_meta_stringdata_ColorTools[] = {
- "ColorTools\0\0qreal\0color\0hue(QColor)\0"
- "saturation(QColor)\0lightness(QColor)\0"
- "r,g,b\0hue(qreal,qreal,qreal)\0"
- };
- const QMetaObject ColorTools::staticMetaObject = {
- { &QDeclarativeItem::staticMetaObject, qt_meta_stringdata_ColorTools,
- qt_meta_data_ColorTools, 0 }
- };
- #ifdef Q_NO_DATA_RELOCATION
- const QMetaObject &ColorTools::getStaticMetaObject() { return staticMetaObject; }
- #endif //Q_NO_DATA_RELOCATION
- const QMetaObject *ColorTools::metaObject() const
- {
- return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
- }
- void *ColorTools::qt_metacast(const char *_clname)
- {
- if (!_clname) return 0;
- if (!strcmp(_clname, qt_meta_stringdata_ColorTools))
- return static_cast<void*>(const_cast< ColorTools*>(this));
- return QDeclarativeItem::qt_metacast(_clname);
- }
- int ColorTools::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
- {
- _id = QDeclarativeItem::qt_metacall(_c, _id, _a);
- if (_id < 0)
- return _id;
- if (_c == QMetaObject::InvokeMetaMethod) {
- switch (_id) {
- case 0: { qreal _r = hue((*reinterpret_cast< QColor(*)>(_a[1])));
- if (_a[0]) *reinterpret_cast< qreal*>(_a[0]) = _r; } break;
- case 1: { qreal _r = saturation((*reinterpret_cast< QColor(*)>(_a[1])));
- if (_a[0]) *reinterpret_cast< qreal*>(_a[0]) = _r; } break;
- case 2: { qreal _r = lightness((*reinterpret_cast< QColor(*)>(_a[1])));
- if (_a[0]) *reinterpret_cast< qreal*>(_a[0]) = _r; } break;
- case 3: { qreal _r = hue((*reinterpret_cast< qreal(*)>(_a[1])),(*reinterpret_cast< qreal(*)>(_a[2])),(*reinterpret_cast< qreal(*)>(_a[3])));
- if (_a[0]) *reinterpret_cast< qreal*>(_a[0]) = _r; } break;
- default: ;
- }
- _id -= 4;
- }
- return _id;
- }
- QT_END_MOC_NAMESPACE
|