1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/****************************************************************************
** QtTableView meta object code from reading C++ file 'qttableview.h'
**
** Created: Tue Apr 19 21:28:48 2005
** by: The Qt MOC ($Id: qt/moc_yacc.cpp 3.3.4 edited Jan 21 18:14 $)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#undef QT_NO_COMPAT
#include "qttableview.h"
#include <qmetaobject.h>
#include <qapplication.h>
#include <private/qucomextra_p.h>
#if !defined(Q_MOC_OUTPUT_REVISION) || (Q_MOC_OUTPUT_REVISION != 26)
#error "This file was generated using the moc from 3.3.4. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
const char *QtTableView::className() const
{
return "QtTableView";
}
QMetaObject *QtTableView::metaObj = 0;
static QMetaObjectCleanUp cleanUp_QtTableView( "QtTableView", &QtTableView::staticMetaObject );
#ifndef QT_NO_TRANSLATION
QString QtTableView::tr( const char *s, const char *c )
{
if ( qApp )
return qApp->translate( "QtTableView", s, c, QApplication::DefaultCodec );
else
return QString::fromLatin1( s );
}
#ifndef QT_NO_TRANSLATION_UTF8
QString QtTableView::trUtf8( const char *s, const char *c )
{
if ( qApp )
return qApp->translate( "QtTableView", s, c, QApplication::UnicodeUTF8 );
else
return QString::fromUtf8( s );
}
#endif // QT_NO_TRANSLATION_UTF8
#endif // QT_NO_TRANSLATION
QMetaObject* QtTableView::staticMetaObject()
{
if ( metaObj )
return metaObj;
QMetaObject* parentObject = QFrame::staticMetaObject();
static const QUParameter param_slot_0[] = {
{ 0, &static_QUType_int, 0, QUParameter::In }
};
static const QUMethod slot_0 = {"horSbValue", 1, param_slot_0 };
static const QUParameter param_slot_1[] = {
{ 0, &static_QUType_int, 0, QUParameter::In }
};
static const QUMethod slot_1 = {"horSbSliding", 1, param_slot_1 };
static const QUMethod slot_2 = {"horSbSlidingDone", 0, 0 };
static const QUParameter param_slot_3[] = {
{ 0, &static_QUType_int, 0, QUParameter::In }
};
static const QUMethod slot_3 = {"verSbValue", 1, param_slot_3 };
static const QUParameter param_slot_4[] = {
{ 0, &static_QUType_int, 0, QUParameter::In }
};
static const QUMethod slot_4 = {"verSbSliding", 1, param_slot_4 };
static const QUMethod slot_5 = {"verSbSlidingDone", 0, 0 };
static const QMetaData slot_tbl[] = {
{ "horSbValue(int)", &slot_0, QMetaData::Private },
{ "horSbSliding(int)", &slot_1, QMetaData::Private },
{ "horSbSlidingDone()", &slot_2, QMetaData::Private },
{ "verSbValue(int)", &slot_3, QMetaData::Private },
{ "verSbSliding(int)", &slot_4, QMetaData::Private },
{ "verSbSlidingDone()", &slot_5, QMetaData::Private }
};
metaObj = QMetaObject::new_metaobject(
"QtTableView", parentObject,
slot_tbl, 6,
0, 0,
#ifndef QT_NO_PROPERTIES
0, 0,
0, 0,
#endif // QT_NO_PROPERTIES
0, 0 );
cleanUp_QtTableView.setMetaObject( metaObj );
return metaObj;
}
void* QtTableView::qt_cast( const char* clname )
{
if ( !qstrcmp( clname, "QtTableView" ) )
return this;
return QFrame::qt_cast( clname );
}
bool QtTableView::qt_invoke( int _id, QUObject* _o )
{
switch ( _id - staticMetaObject()->slotOffset() ) {
case 0: horSbValue((int)static_QUType_int.get(_o+1)); break;
case 1: horSbSliding((int)static_QUType_int.get(_o+1)); break;
case 2: horSbSlidingDone(); break;
case 3: verSbValue((int)static_QUType_int.get(_o+1)); break;
case 4: verSbSliding((int)static_QUType_int.get(_o+1)); break;
case 5: verSbSlidingDone(); break;
default:
return QFrame::qt_invoke( _id, _o );
}
return TRUE;
}
bool QtTableView::qt_emit( int _id, QUObject* _o )
{
return QFrame::qt_emit(_id,_o);
}
#ifndef QT_NO_PROPERTIES
bool QtTableView::qt_property( int id, int f, QVariant* v)
{
return QFrame::qt_property( id, f, v);
}
bool QtTableView::qt_static_property( QObject* , int , int , QVariant* ){ return FALSE; }
#endif // QT_NO_PROPERTIES
|