summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqlabel.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqlabel.3qt')
-rw-r--r--doc/man/man3/tqlabel.3qt20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/man/man3/tqlabel.3qt b/doc/man/man3/tqlabel.3qt
index 360d5743a..7e432496b 100644
--- a/doc/man/man3/tqlabel.3qt
+++ b/doc/man/man3/tqlabel.3qt
@@ -37,7 +37,7 @@ Inherits QFrame.
.BI "QPicture * \fBpicture\fR () const"
.br
.ti -1c
-.BI "QMovie * \fBmovie\fR () const"
+.BI "TQMovie * \fBmovie\fR () const"
.br
.ti -1c
.BI "TextFormat \fBtextFormat\fR () const"
@@ -76,7 +76,7 @@ Inherits QFrame.
.BI "TQWidget * \fBbuddy\fR () const"
.br
.ti -1c
-.BI "virtual void \fBsetFont\fR ( const QFont & f )"
+.BI "virtual void \fBsetFont\fR ( const TQFont & f )"
.br
.in -1c
.SS "Public Slots"
@@ -91,7 +91,7 @@ Inherits QFrame.
.BI "virtual void \fBsetPicture\fR ( const QPicture & picture )"
.br
.ti -1c
-.BI "virtual void \fBsetMovie\fR ( const QMovie & movie )"
+.BI "virtual void \fBsetMovie\fR ( const TQMovie & movie )"
.br
.ti -1c
.BI "virtual void \fBsetNum\fR ( int num )"
@@ -130,7 +130,7 @@ Inherits QFrame.
.SS "Protected Members"
.in +1c
.ti -1c
-.BI "virtual void \fBdrawContents\fR ( QPainter * p )"
+.BI "virtual void \fBdrawContents\fR ( TQPainter * p )"
.br
.in -1c
.SH DESCRIPTION
@@ -140,7 +140,7 @@ QLabel is used for displaying text or an image. No user interaction functionalit
.PP
A QLabel can contain any of the following content types: <center>.nf
.TS
-l - l. Content Setting Plain text Pass a TQString to setText(). Rich text Pass a TQString that contains rich text to setText(). A pixmap Pass a QPixmap to setPixmap(). A movie Pass a QMovie to setMovie(). A number Pass an \fIint\fR or a \fIdouble\fR to setNum(), which converts the number to plain text. Nothing
+l - l. Content Setting Plain text Pass a TQString to setText(). Rich text Pass a TQString that contains rich text to setText(). A pixmap Pass a QPixmap to setPixmap(). A movie Pass a TQMovie to setMovie(). A number Pass an \fIint\fR or a \fIdouble\fR to setNum(), which converts the number to plain text. Nothing
.TE
.fi
</center>
@@ -180,7 +180,7 @@ In this example, keyboard focus is transferred to the label's buddy (the QLineEd
.ce 1
.B "[Image Omitted]"
.PP
-See also QLineEdit, TQTextEdit, QPixmap, QMovie, GUI Design Handbook: Label, Basic Widgets, and Text Related Classes.
+See also QLineEdit, TQTextEdit, QPixmap, TQMovie, GUI Design Handbook: Label, Basic Widgets, and Text Related Classes.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QLabel::QLabel ( TQWidget * parent, const char * name = 0, WFlags f = 0 )"
Constructs an empty label.
@@ -220,7 +220,7 @@ Returns this label's buddy, or 0 if no buddy is currently set.
See also setBuddy().
.SH "void QLabel::clear ()\fC [slot]\fR"
Clears any label contents. Equivalent to setText( "" ).
-.SH "void QLabel::drawContents ( QPainter * p )\fC [virtual protected]\fR"
+.SH "void QLabel::drawContents ( TQPainter * p )\fC [virtual protected]\fR"
Draws the label contents using the painter \fIp\fR.
.PP
Reimplemented from QFrame.
@@ -228,7 +228,7 @@ Reimplemented from QFrame.
Returns TRUE if the label will scale its contents to fill all available space; otherwise returns FALSE. See the "scaledContents" property for details.
.SH "int QLabel::indent () const"
Returns the label's text indent in pixels. See the "indent" property for details.
-.SH "QMovie * QLabel::movie () const"
+.SH "TQMovie * QLabel::movie () const"
Returns a pointer to the label's movie, or 0 if no movie has been set.
.PP
See also setMovie().
@@ -283,7 +283,7 @@ See also buddy(), text, QAccel, and alignment.
.PP
Examples:
.)l addressbook/centralwidget.cpp, chart/optionsform.cpp, and regexptester/regexptester.cpp.
-.SH "void QLabel::setFont ( const QFont & f )\fC [virtual]\fR"
+.SH "void QLabel::setFont ( const TQFont & f )\fC [virtual]\fR"
Sets the font used on the QLabel to font \fIf\fR.
.PP
Example: menu/menu.cpp.
@@ -291,7 +291,7 @@ Example: menu/menu.cpp.
Reimplemented from TQWidget.
.SH "void QLabel::setIndent ( int )"
Sets the label's text indent in pixels. See the "indent" property for details.
-.SH "void QLabel::setMovie ( const QMovie & movie )\fC [virtual slot]\fR"
+.SH "void QLabel::setMovie ( const TQMovie & movie )\fC [virtual slot]\fR"
Sets the label contents to \fImovie\fR. Any previous content is cleared.
.PP
The buddy accelerator, if any, is disabled.