summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqmetaproperty.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-24 20:14:25 +0900
commitd73937a9f779e2aafa6c392f94c9c29aa32b78fd (patch)
treee2c52ad435e8cca696acae34b1f451e934675a64 /doc/man/man3/tqmetaproperty.3qt
parenteb42871e999672a8fad5793733c58be05928c8ea (diff)
downloadtqt-r14.1.1.tar.gz
tqt-r14.1.1.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b35e0845dc9b3c8b9a5e52a682c769f383933fae)
Diffstat (limited to 'doc/man/man3/tqmetaproperty.3qt')
-rw-r--r--doc/man/man3/tqmetaproperty.3qt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqmetaproperty.3qt b/doc/man/man3/tqmetaproperty.3qt
index 49575ae5c..1ea8f6b23 100644
--- a/doc/man/man3/tqmetaproperty.3qt
+++ b/doc/man/man3/tqmetaproperty.3qt
@@ -44,16 +44,16 @@ QMetaProperty \- Stores meta data about a property
.BI "QStrList \fBvalueToKeys\fR ( int value ) const"
.br
.ti -1c
-.BI "bool \fBdesignable\fR ( QObject * o = 0 ) const"
+.BI "bool \fBdesignable\fR ( TQObject * o = 0 ) const"
.br
.ti -1c
-.BI "bool \fBscriptable\fR ( QObject * o = 0 ) const"
+.BI "bool \fBscriptable\fR ( TQObject * o = 0 ) const"
.br
.ti -1c
-.BI "bool \fBstored\fR ( QObject * o = 0 ) const"
+.BI "bool \fBstored\fR ( TQObject * o = 0 ) const"
.br
.ti -1c
-.BI "bool \fBreset\fR ( QObject * o ) const"
+.BI "bool \fBreset\fR ( TQObject * o ) const"
.br
.in -1c
.SH DESCRIPTION
@@ -63,13 +63,13 @@ Property meta data includes type(), name(), and whether a property is writable()
.PP
The functions isSetType(), isEnumType() and enumKeys() provide further information about a property's type. The conversion functions keyToValue(), valueToKey(), keysToValue() and valueToKeys() allow conversion between the integer representation of an enumeration or set value and its literal representation.
.PP
-Actual property values are set and received through QObject's set and get functions. See QObject::setProperty() and QObject::property() for details.
+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.
.PP
See also Object Model.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "bool QMetaProperty::designable ( QObject * o = 0 ) const"
+.SH "bool QMetaProperty::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.
@@ -97,15 +97,15 @@ Converts the list of keys \fIkeys\fR to their combined (OR-ed) integer value.
See also isSetType() and valueToKey().
.SH "const char * QMetaProperty::name () const"
Returns the name of the property.
-.SH "bool QMetaProperty::reset ( QObject * o ) const"
+.SH "bool QMetaProperty::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 ( QObject * o = 0 ) const"
+.SH "bool QMetaProperty::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 ( QObject * o = 0 ) const"
+.SH "bool QMetaProperty::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.