diff options
Diffstat (limited to 'qtinterface/tqt4/Qt/qobjectdefs.h')
-rw-r--r-- | qtinterface/tqt4/Qt/qobjectdefs.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/qtinterface/tqt4/Qt/qobjectdefs.h b/qtinterface/tqt4/Qt/qobjectdefs.h index 32f9b80..3a50a14 100644 --- a/qtinterface/tqt4/Qt/qobjectdefs.h +++ b/qtinterface/tqt4/Qt/qobjectdefs.h @@ -450,8 +450,16 @@ struct Q_CORE_EXPORT QMetaObject int numSignals( bool super = FALSE ) const; const QMetaMethod *slot( int index, bool super = FALSE ) const; const QMetaMethod *signal( int index, bool super = FALSE ) const; - QStringList slotNames( bool super = FALSE ) const; - QStringList signalNames( bool super = FALSE ) const; + TQT_QT_STRING_LIST_TYPE slotNames( bool super = FALSE ) const; + TQT_QT_STRING_LIST_TYPE signalNames( bool super = FALSE ) const; + int findSlot( const char *, bool super = FALSE ) const; + int findSignal( const char *, bool super = FALSE ) const; +#ifndef QT_NO_PROPERTIES + int numProperties( bool super = FALSE ) const; + const QMetaProperty *property( int index, bool super ) const; + TQT_QT_STRING_LIST_TYPE propertyNames( bool super = FALSE ) const; + int findProperty( const char *name, bool super ) const; +#endif struct { // private data const QMetaObject *superdata; |