summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqlabel.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/tqlabel.3qt
parenteb42871e999672a8fad5793733c58be05928c8ea (diff)
downloadtqt3-d73937a9f779e2aafa6c392f94c9c29aa32b78fd.tar.gz
tqt3-d73937a9f779e2aafa6c392f94c9c29aa32b78fd.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/tqlabel.3qt')
-rw-r--r--doc/man/man3/tqlabel.3qt42
1 files changed, 21 insertions, 21 deletions
diff --git a/doc/man/man3/tqlabel.3qt b/doc/man/man3/tqlabel.3qt
index d04c2cc9..21b2398c 100644
--- a/doc/man/man3/tqlabel.3qt
+++ b/doc/man/man3/tqlabel.3qt
@@ -16,19 +16,19 @@ Inherits QFrame.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQLabel\fR ( QWidget * parent, const char * name = 0, WFlags f = 0 )"
+.BI "\fBQLabel\fR ( TQWidget * parent, const char * name = 0, WFlags f = 0 )"
.br
.ti -1c
-.BI "\fBQLabel\fR ( const QString & text, QWidget * parent, const char * name = 0, WFlags f = 0 )"
+.BI "\fBQLabel\fR ( const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )"
.br
.ti -1c
-.BI "\fBQLabel\fR ( QWidget * buddy, const QString & text, QWidget * parent, const char * name = 0, WFlags f = 0 )"
+.BI "\fBQLabel\fR ( TQWidget * buddy, const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )"
.br
.ti -1c
.BI "\fB~QLabel\fR ()"
.br
.ti -1c
-.BI "QString \fBtext\fR () const"
+.BI "TQString \fBtext\fR () const"
.br
.ti -1c
.BI "QPixmap * \fBpixmap\fR () const"
@@ -70,10 +70,10 @@ Inherits QFrame.
.BI "void \fBsetScaledContents\fR ( bool )"
.br
.ti -1c
-.BI "virtual void \fBsetBuddy\fR ( QWidget * buddy )"
+.BI "virtual void \fBsetBuddy\fR ( TQWidget * buddy )"
.br
.ti -1c
-.BI "QWidget * \fBbuddy\fR () const"
+.BI "TQWidget * \fBbuddy\fR () const"
.br
.ti -1c
.BI "virtual void \fBsetFont\fR ( const QFont & f )"
@@ -82,7 +82,7 @@ Inherits QFrame.
.SS "Public Slots"
.in +1c
.ti -1c
-.BI "virtual void \fBsetText\fR ( const QString & )"
+.BI "virtual void \fBsetText\fR ( const TQString & )"
.br
.ti -1c
.BI "virtual void \fBsetPixmap\fR ( const QPixmap & )"
@@ -121,7 +121,7 @@ Inherits QFrame.
.BI "bool \fBscaledContents\fR - whether the label will scale its contents to fill all available space"
.br
.ti -1c
-.BI "QString \fBtext\fR - the label's text"
+.BI "TQString \fBtext\fR - the label's text"
.br
.ti -1c
.BI "TextFormat \fBtextFormat\fR - the label's text format"
@@ -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 QString to setText(). Rich text Pass a QString 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 QMovie 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>
@@ -182,19 +182,19 @@ In this example, keyboard focus is transferred to the label's buddy (the QLineEd
.PP
See also QLineEdit, QTextEdit, QPixmap, QMovie, GUI Design Handbook: Label, Basic Widgets, and Text Related Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QLabel::QLabel ( QWidget * parent, const char * name = 0, WFlags f = 0 )"
+.SH "QLabel::QLabel ( TQWidget * parent, const char * name = 0, WFlags f = 0 )"
Constructs an empty label.
.PP
The \fIparent\fR, \fIname\fR and widget flag \fIf\fR, arguments are passed to the QFrame constructor.
.PP
See also alignment, setFrameStyle(), and indent.
-.SH "QLabel::QLabel ( const QString & text, QWidget * parent, const char * name = 0, WFlags f = 0 )"
+.SH "QLabel::QLabel ( const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )"
Constructs a label that displays the text, \fItext\fR.
.PP
The \fIparent\fR, \fIname\fR and widget flag \fIf\fR, arguments are passed to the QFrame constructor.
.PP
See also text, alignment, setFrameStyle(), and indent.
-.SH "QLabel::QLabel ( QWidget * buddy, const QString & text, QWidget * parent, const char * name = 0, WFlags f = 0 )"
+.SH "QLabel::QLabel ( TQWidget * buddy, const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )"
Constructs a label that displays the text \fItext\fR. The label has a buddy widget, \fIbuddy\fR.
.PP
If the \fItext\fR contains an underlined letter (a letter preceded by an ampersand, &), and the text is in plain text format, when the user presses Alt+ the underlined letter, focus is passed to the buddy widget.
@@ -214,7 +214,7 @@ Returns TRUE if auto-resizing is enabled, or FALSE if auto-resizing is disabled.
Auto-resizing is disabled by default.
.PP
See also setAutoResize().
-.SH "QWidget * QLabel::buddy () const"
+.SH "TQWidget * QLabel::buddy () const"
Returns this label's buddy, or 0 if no buddy is currently set.
.PP
See also setBuddy().
@@ -248,7 +248,7 @@ When auto-resizing is enabled the label will resize itself to fit the contents w
Auto-resizing is disabled by default.
.PP
See also autoResize(), adjustSize(), and sizeHint.
-.SH "void QLabel::setBuddy ( QWidget * buddy )\fC [virtual]\fR"
+.SH "void QLabel::setBuddy ( TQWidget * buddy )\fC [virtual]\fR"
Sets this label's buddy to \fIbuddy\fR.
.PP
When the user presses the accelerator key indicated by this label, the keyboard focus is transferred to the label's buddy widget.
@@ -288,7 +288,7 @@ Sets the font used on the QLabel to font \fIf\fR.
.PP
Example: menu/menu.cpp.
.PP
-Reimplemented from QWidget.
+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"
@@ -306,7 +306,7 @@ The buddy accelerator, if any, is disabled.
.PP
The label resizes itself if auto-resizing is enabled.
.PP
-See also text, QString::setNum(), and setBuddy().
+See also text, TQString::setNum(), and setBuddy().
.SH "void QLabel::setNum ( double num )\fC [virtual slot]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
@@ -316,7 +316,7 @@ The buddy accelerator, if any, is disabled.
.PP
The label resizes itself if auto-resizing is enabled.
.PP
-See also text, QString::setNum(), and setBuddy().
+See also text, TQString::setNum(), and setBuddy().
.SH "void QLabel::setPicture ( const QPicture & picture )\fC [virtual slot]\fR"
Sets the label contents to \fIpicture\fR. Any previous content is cleared.
.PP
@@ -327,11 +327,11 @@ See also picture() and setBuddy().
Sets the label's pixmap. See the "pixmap" property for details.
.SH "void QLabel::setScaledContents ( bool )"
Sets whether the label will scale its contents to fill all available space. See the "scaledContents" property for details.
-.SH "void QLabel::setText ( const QString & )\fC [virtual slot]\fR"
+.SH "void QLabel::setText ( const TQString & )\fC [virtual slot]\fR"
Sets the label's text. See the "text" property for details.
.SH "void QLabel::setTextFormat ( TextFormat )"
Sets the label's text format. See the "textFormat" property for details.
-.SH "QString QLabel::text () const"
+.SH "TQString QLabel::text () const"
Returns the label's text. See the "text" property for details.
.SH "TextFormat QLabel::textFormat () const"
Returns the label's text format. See the "textFormat" property for details.
@@ -353,7 +353,7 @@ This property holds the label's background mode.
.PP
Get this property with backgroundMode().
.PP
-See also QWidget::backgroundMode.
+See also TQWidget::backgroundMode.
.SH "int indent"
This property holds the label's text indent in pixels.
.PP
@@ -382,7 +382,7 @@ This property's default is FALSE.
See also scaledContents.
.PP
Set this property's value with setScaledContents() and get this property's value with hasScaledContents().
-.SH "QString text"
+.SH "TQString text"
This property holds the label's text.
.PP
If no text has been set this will return an empty string. Setting the text clears any previous content, unless they are the same.