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
|
/****************************************************************************
** toLicense meta object code from reading C++ file 'tolicense.h'
**
** Created: Sun Mar 10 10:28:39 2002
** by: The Qt MOC ($Id: qt/moc_yacc.cpp 3.0.1 edited Dec 12 07:57 $)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#undef QT_NO_COMPAT
#include "tolicense.h"
#include <qmetaobject.h>
#include <qapplication.h>
#include <private/qucomextra_p.h>
#if !defined(Q_MOC_OUTPUT_REVISION) || (Q_MOC_OUTPUT_REVISION != 19)
#error "This file was generated using the moc from 3.0.1. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
const char *toLicense::className() const
{
return "toLicense";
}
QMetaObject *toLicense::metaObj = 0;
static QMetaObjectCleanUp cleanUp_toLicense;
#ifndef QT_NO_TRANSLATION
QString toLicense::tr( const char *s, const char *c )
{
if ( qApp )
return qApp->translate( "toLicense", s, c, QApplication::DefaultCodec );
else
return QString::fromLatin1( s );
}
#ifndef QT_NO_TRANSLATION_UTF8
QString toLicense::trUtf8( const char *s, const char *c )
{
if ( qApp )
return qApp->translate( "toLicense", s, c, QApplication::UnicodeUTF8 );
else
return QString::fromUtf8( s );
}
#endif // QT_NO_TRANSLATION_UTF8
#endif // QT_NO_TRANSLATION
QMetaObject* toLicense::staticMetaObject()
{
if ( metaObj )
return metaObj;
QMetaObject* parentObject = toLicenseUI::staticMetaObject();
static const QUMethod slot_0 = {"dontRegisterButton", 0, 0 };
static const QUMethod slot_1 = {"licenseButton", 0, 0 };
static const QUMethod slot_2 = {"quitButton", 0, 0 };
static const QMetaData slot_tbl[] = {
{ "dontRegisterButton()", &slot_0, QMetaData::Public },
{ "licenseButton()", &slot_1, QMetaData::Public },
{ "quitButton()", &slot_2, QMetaData::Public }
};
metaObj = QMetaObject::new_metaobject(
"toLicense", parentObject,
slot_tbl, 3,
0, 0,
#ifndef QT_NO_PROPERTIES
0, 0,
0, 0,
#endif // QT_NO_PROPERTIES
0, 0 );
cleanUp_toLicense.setMetaObject( metaObj );
return metaObj;
}
void* toLicense::qt_cast( const char* clname )
{
if ( !qstrcmp( clname, "toLicense" ) ) return (toLicense*)this;
return toLicenseUI::qt_cast( clname );
}
bool toLicense::qt_invoke( int _id, QUObject* _o )
{
switch ( _id - staticMetaObject()->slotOffset() ) {
case 0: dontRegisterButton(); break;
case 1: licenseButton(); break;
case 2: quitButton(); break;
default:
return toLicenseUI::qt_invoke( _id, _o );
}
return TRUE;
}
bool toLicense::qt_emit( int _id, QUObject* _o )
{
return toLicenseUI::qt_emit(_id,_o);
}
#ifndef QT_NO_PROPERTIES
bool toLicense::qt_property( int _id, int _f, QVariant* _v)
{
return toLicenseUI::qt_property( _id, _f, _v);
}
#endif // QT_NO_PROPERTIES
|