diff options
Diffstat (limited to 'doc/man/man3/tqmetaobject.3qt')
-rw-r--r-- | doc/man/man3/tqmetaobject.3qt | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/doc/man/man3/tqmetaobject.3qt b/doc/man/man3/tqmetaobject.3qt index 3d2317fe0..7a68ee4d7 100644 --- a/doc/man/man3/tqmetaobject.3qt +++ b/doc/man/man3/tqmetaobject.3qt @@ -1,5 +1,5 @@ '\" t -.TH QMetaObject 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQMetaObject 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,9 +7,9 @@ .ad l .nh .SH NAME -QMetaObject \- Meta information about TQt objects +TQMetaObject \- Meta information about TQt objects .SH SYNOPSIS -\fC#include <ntqmetaobject.h>\fR +\fC#include <tqmetaobject.h>\fR .PP .SS "Public Members" .in +1c @@ -20,7 +20,7 @@ QMetaObject \- Meta information about TQt objects .BI "const char * \fBsuperClassName\fR () const" .br .ti -1c -.BI "QMetaObject * \fBsuperClass\fR () const" +.BI "TQMetaObject * \fBsuperClass\fR () const" .br .ti -1c .BI "bool \fBinherits\fR ( const char * clname ) const" @@ -47,7 +47,7 @@ QMetaObject \- Meta information about TQt objects .BI "const char * \fBclassInfo\fR ( const char * name, bool super = FALSE ) const" .br .ti -1c -.BI "const QMetaProperty * \fBproperty\fR ( int index, bool super = FALSE ) const" +.BI "const TQMetaProperty * \fBproperty\fR ( int index, bool super = FALSE ) const" .br .ti -1c .BI "int \fBfindProperty\fR ( const char * name, bool super = FALSE ) const" @@ -60,9 +60,9 @@ QMetaObject \- Meta information about TQt objects .br .in -1c .SH DESCRIPTION -The QMetaObject class contains meta information about TQt objects. +The TQMetaObject class contains meta information about TQt objects. .PP -The Meta Object System in TQt is responsible for the signals and slots inter-object communication mechanism, runtime type information and the property system. All meta information in TQt is kept in a single instance of QMetaObject per class. +The Meta Object System in TQt is responsible for the signals and slots inter-object communication mechanism, runtime type information and the property system. All meta information in TQt is kept in a single instance of TQMetaObject per class. .PP This class is not normally required for application programming. But if you write meta applications, such as scripting engines or GUI builders, you might find these functions useful: .TP @@ -83,83 +83,83 @@ Classes may have a list of name-value pairs of class information. The number of See also moc (Meta Object Compiler) and Object Model. .PP .SH MEMBER FUNCTION DOCUMENTATION -.SH "const QClassInfo * QMetaObject::classInfo ( int index, bool super = FALSE ) const" +.SH "const QClassInfo * TQMetaObject::classInfo ( int index, bool super = FALSE ) const" Returns the class information with index \fIindex\fR or 0 if no such information exists. .PP If \fIsuper\fR is TRUE, inherited class information is included. -.SH "const char * QMetaObject::classInfo ( const char * name, bool super = FALSE ) const" +.SH "const char * TQMetaObject::classInfo ( const char * name, bool super = FALSE ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Returns the class information with name \fIname\fR or 0 if no such information exists. .PP If \fIsuper\fR is TRUE, inherited class information is included. -.SH "const char * QMetaObject::className () const" +.SH "const char * TQMetaObject::className () const" Returns the class name. .PP See also TQObject::className() and superClassName(). -.SH "int QMetaObject::findProperty ( const char * name, bool super = FALSE ) const" +.SH "int TQMetaObject::findProperty ( const char * name, bool super = FALSE ) const" Returns the index for the property with name \fIname\fR or -1 if no such property exists. .PP If \fIsuper\fR is TRUE, inherited properties are included. .PP See also property() and propertyNames(). -.SH "bool QMetaObject::inherits ( const char * clname ) const" +.SH "bool TQMetaObject::inherits ( const char * clname ) const" Returns TRUE if this class inherits \fIclname\fR within the meta object inheritance chain; otherwise returns FALSE. .PP (A class is considered to inherit itself.) -.SH "int QMetaObject::numClassInfo ( bool super = FALSE ) const" +.SH "int TQMetaObject::numClassInfo ( bool super = FALSE ) const" Returns the number of items of class information available for this class. .PP If \fIsuper\fR is TRUE, inherited class information is included. -.SH "int QMetaObject::numProperties ( bool super = FALSE ) const" +.SH "int TQMetaObject::numProperties ( bool super = FALSE ) const" Returns the number of properties for this class. .PP If \fIsuper\fR is TRUE, inherited properties are included. .PP See also propertyNames(). -.SH "int QMetaObject::numSignals ( bool super = FALSE ) const" +.SH "int TQMetaObject::numSignals ( bool super = FALSE ) const" Returns the number of signals for this class. .PP If \fIsuper\fR is TRUE, inherited signals are included. .PP See also signalNames(). -.SH "int QMetaObject::numSlots ( bool super = FALSE ) const" +.SH "int TQMetaObject::numSlots ( bool super = FALSE ) const" Returns the number of slots for this class. .PP If \fIsuper\fR is TRUE, inherited slots are included. .PP See also slotNames(). -.SH "const QMetaProperty * QMetaObject::property ( int index, bool super = FALSE ) const" +.SH "const TQMetaProperty * TQMetaObject::property ( int index, bool super = FALSE ) const" Returns the property meta data for the property at index \fIindex\fR or 0 if no such property exists. .PP If \fIsuper\fR is TRUE, inherited properties are included. .PP See also propertyNames(). -.SH "TQStrList QMetaObject::propertyNames ( bool super = FALSE ) const" +.SH "TQStrList TQMetaObject::propertyNames ( bool super = FALSE ) const" Returns a list with the names of all this class's properties. .PP If \fIsuper\fR is TRUE, inherited properties are included. .PP See also property(). -.SH "TQStrList QMetaObject::signalNames ( bool super = FALSE ) const" +.SH "TQStrList TQMetaObject::signalNames ( bool super = FALSE ) const" Returns a list with the names of all this class's signals. .PP If \fIsuper\fR is TRUE, inherited signals are included. -.SH "TQStrList QMetaObject::slotNames ( bool super = FALSE ) const" +.SH "TQStrList TQMetaObject::slotNames ( bool super = FALSE ) const" Returns a list with the names of all this class's slots. .PP If \fIsuper\fR is TRUE, inherited slots are included. .PP See also numSlots(). -.SH "QMetaObject * QMetaObject::superClass () const" +.SH "TQMetaObject * TQMetaObject::superClass () const" Returns the meta object of the super class or 0 if there is no such object. -.SH "const char * QMetaObject::superClassName () const" +.SH "const char * TQMetaObject::superClassName () const" Returns the class name of the superclass or 0 if there is no superclass in the TQObject hierachy. .PP See also className(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqmetaobject.html +.BR http://doc.trolltech.com/tqmetaobject.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the |