diff options
author | Michele Calgaro <[email protected]> | 2024-09-04 11:53:23 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-09-04 13:56:43 +0900 |
commit | 0582c90a9ed4b965629267713f51c0da7c38b39d (patch) | |
tree | cae95e850081d0a7f2be6cef5837f43a28d53d2c /doc/man/man3/tqmetaproperty.3qt | |
parent | 39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (diff) | |
download | tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.tar.gz tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.zip |
Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqmetaproperty.3qt')
-rw-r--r-- | doc/man/man3/tqmetaproperty.3qt | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/doc/man/man3/tqmetaproperty.3qt b/doc/man/man3/tqmetaproperty.3qt index 08ec73579..8e424980b 100644 --- a/doc/man/man3/tqmetaproperty.3qt +++ b/doc/man/man3/tqmetaproperty.3qt @@ -1,5 +1,5 @@ '\" t -.TH QMetaProperty 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQMetaProperty 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 -QMetaProperty \- Stores meta data about a property +TQMetaProperty \- Stores meta data about a property .SH SYNOPSIS -\fC#include <ntqmetaobject.h>\fR +\fC#include <tqmetaobject.h>\fR .PP .SS "Public Members" .in +1c @@ -57,7 +57,7 @@ QMetaProperty \- Stores meta data about a property .br .in -1c .SH DESCRIPTION -The QMetaProperty class stores meta data about a property. +The TQMetaProperty class stores meta data about a property. .PP Property meta data includes type(), name(), and whether a property is writable(), designable() and stored(). .PP @@ -65,68 +65,68 @@ The functions isSetType(), isEnumType() and enumKeys() provide further informati .PP Actual property values are set and received through TQObject's set and get functions. See TQObject::setProperty() and TQObject::property() for details. .PP -You receive meta property data through an object's meta object. See QMetaObject::property() and QMetaObject::propertyNames() for details. +You receive meta property data through an object's meta object. See TQMetaObject::property() and TQMetaObject::propertyNames() for details. .PP See also Object Model. .SH MEMBER FUNCTION DOCUMENTATION -.SH "bool QMetaProperty::designable ( TQObject * o = 0 ) const" +.SH "bool TQMetaProperty::designable ( TQObject * o = 0 ) const" Returns TRUE if the property is designable for object \fIo\fR; otherwise returns FALSE. .PP If no object \fIo\fR is given, the function returns a static approximation. -.SH "TQStrList QMetaProperty::enumKeys () const" +.SH "TQStrList TQMetaProperty::enumKeys () const" Returns the possible enumeration keys if this property is an enumeration type (or a set type). .PP See also isEnumType(). -.SH "bool QMetaProperty::isEnumType () const" +.SH "bool TQMetaProperty::isEnumType () const" Returns TRUE if the property's type is an enumeration value; otherwise returns FALSE. .PP See also isSetType() and enumKeys(). -.SH "bool QMetaProperty::isSetType () const" +.SH "bool TQMetaProperty::isSetType () const" Returns TRUE if the property's type is an enumeration value that is used as set, i.e. if the enumeration values can be OR-ed together; otherwise returns FALSE. A set type is implicitly also an enum type. .PP See also isEnumType() and enumKeys(). -.SH "int QMetaProperty::keyToValue ( const char * key ) const" +.SH "int TQMetaProperty::keyToValue ( const char * key ) const" Converts the enumeration key \fIkey\fR to its integer value. .PP For set types, use keysToValue(). .PP See also valueToKey(), isSetType(), and keysToValue(). -.SH "int QMetaProperty::keysToValue ( const TQStrList & keys ) const" +.SH "int TQMetaProperty::keysToValue ( const TQStrList & keys ) const" Converts the list of keys \fIkeys\fR to their combined (OR-ed) integer value. .PP See also isSetType() and valueToKey(). -.SH "const char * QMetaProperty::name () const" +.SH "const char * TQMetaProperty::name () const" Returns the name of the property. -.SH "bool QMetaProperty::reset ( TQObject * o ) const" +.SH "bool TQMetaProperty::reset ( TQObject * o ) const" Tries to reset the property for object \fIo\fR with a reset method. On success, returns TRUE; otherwise returns FALSE. .PP Reset methods are optional, usually only a few properties support them. -.SH "bool QMetaProperty::scriptable ( TQObject * o = 0 ) const" +.SH "bool TQMetaProperty::scriptable ( TQObject * o = 0 ) const" Returns TRUE if the property is scriptable for object \fIo\fR; otherwise returns FALSE. .PP If no object \fIo\fR is given, the function returns a static approximation. -.SH "bool QMetaProperty::stored ( TQObject * o = 0 ) const" +.SH "bool TQMetaProperty::stored ( TQObject * o = 0 ) const" Returns TRUE if the property shall be stored for object \fIo\fR; otherwise returns FALSE. .PP If no object \fIo\fR is given, the function returns a static approximation. -.SH "const char * QMetaProperty::type () const" +.SH "const char * TQMetaProperty::type () const" Returns the type of the property. -.SH "const char * QMetaProperty::valueToKey ( int value ) const" +.SH "const char * TQMetaProperty::valueToKey ( int value ) const" Converts the enumeration value \fIvalue\fR to its literal key. .PP For set types, use valueToKeys(). .PP See also isSetType() and valueToKeys(). -.SH "TQStrList QMetaProperty::valueToKeys ( int value ) const" +.SH "TQStrList TQMetaProperty::valueToKeys ( int value ) const" Converts the set value \fIvalue\fR to a list of keys. .PP See also isSetType() and valueToKey(). -.SH "bool QMetaProperty::writable () const" +.SH "bool TQMetaProperty::writable () const" Returns TRUE if the property is writable; otherwise returns FALSE. .PP .SH "SEE ALSO" -.BR http://doc.trolltech.com/qmetaproperty.html +.BR http://doc.trolltech.com/tqmetaproperty.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the |