summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqframe.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-15 19:08:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-18 09:31:41 +0900
commita30f5359f03c3017fa19a6770fab32d25d22cb87 (patch)
treecb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/man/man3/tqframe.3qt
parent25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff)
downloadtqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.tar.gz
tqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.zip
Rename graphics class nt* related files to equivalent tq* (part 1)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqframe.3qt')
-rw-r--r--doc/man/man3/tqframe.3qt20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/man/man3/tqframe.3qt b/doc/man/man3/tqframe.3qt
index 479448b1..fd067d7f 100644
--- a/doc/man/man3/tqframe.3qt
+++ b/doc/man/man3/tqframe.3qt
@@ -105,16 +105,16 @@ Inherited by QGroupBox, QScrollView, QDockWindow, QGrid, QHBox, QLabel, QLCDNumb
.SS "Protected Members"
.in +1c
.ti -1c
-.BI "virtual void \fBpaintEvent\fR ( QPaintEvent * event )"
+.BI "virtual void \fBpaintEvent\fR ( TQPaintEvent * event )"
.br
.ti -1c
.BI "virtual void \fBresizeEvent\fR ( QResizeEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBdrawFrame\fR ( QPainter * p )"
+.BI "virtual void \fBdrawFrame\fR ( TQPainter * p )"
.br
.ti -1c
-.BI "virtual void \fBdrawContents\fR ( QPainter * )"
+.BI "virtual void \fBdrawContents\fR ( TQPainter * )"
.br
.ti -1c
.BI "virtual void \fBframeChanged\fR ()"
@@ -219,20 +219,20 @@ Constructs a frame widget with frame style NoFrame and a 1-pixel frame width.
The \fIparent\fR, \fIname\fR and \fIf\fR arguments are passed to the TQWidget constructor.
.SH "QRect QFrame::contentsRect () const"
Returns the rectangle inside the frame. See the "contentsRect" property for details.
-.SH "void QFrame::drawContents ( QPainter * )\fC [virtual protected]\fR"
+.SH "void QFrame::drawContents ( TQPainter * )\fC [virtual protected]\fR"
Virtual function that draws the contents of the frame.
.PP
-The QPainter is already open when you get it, and you must leave it open. Painter transformations are switched off on entry. If you transform the painter, remember to take the frame into account and reset transformation before returning.
+The TQPainter is already open when you get it, and you must leave it open. Painter transformations are switched off on entry. If you transform the painter, remember to take the frame into account and reset transformation before returning.
.PP
This function is reimplemented by subclasses that draw something inside the frame. It should only draw inside contentsRect(). The default function does nothing.
.PP
-See also contentsRect and QPainter::setClipRect().
+See also contentsRect and TQPainter::setClipRect().
.PP
Reimplemented in QLabel, QLCDNumber, TQMenuBar, and TQPopupMenu.
-.SH "void QFrame::drawFrame ( QPainter * p )\fC [virtual protected]\fR"
+.SH "void QFrame::drawFrame ( TQPainter * p )\fC [virtual protected]\fR"
Draws the frame using the painter \fIp\fR and the current frame attributes and color group. The rectangle inside the frame is not affected.
.PP
-This function is virtual, but in general you do not need to reimplement it. If you do, note that the QPainter is already open and must remain open.
+This function is virtual, but in general you do not need to reimplement it. If you do, note that the TQPainter is already open and must remain open.
.PP
See also frameRect, contentsRect, drawContents(), frameStyle(), and palette.
.SH "void QFrame::frameChanged ()\fC [virtual protected]\fR"
@@ -263,7 +263,7 @@ Returns the line width. See the "lineWidth" property for details.
Returns the width of the margin. See the "margin" property for details.
.SH "int QFrame::midLineWidth () const"
Returns the width of the mid-line. See the "midLineWidth" property for details.
-.SH "void QFrame::paintEvent ( QPaintEvent * event )\fC [virtual protected]\fR"
+.SH "void QFrame::paintEvent ( TQPaintEvent * event )\fC [virtual protected]\fR"
Processes the paint event \fIevent\fR.
.PP
Paints the frame and the contents.
@@ -301,7 +301,7 @@ The frame shapes are given in QFrame::Shape and the shadow styles in QFrame::Sha
.PP
If a mid-line width greater than 0 is specified, an additional line is drawn for Raised or Sunken Box, HLine, and VLine frames. The mid-color of the current color group is used for drawing middle lines.
.PP
-See also Illustration, frameStyle(), colorGroup, and QColorGroup.
+See also Illustration, frameStyle(), colorGroup, and TQColorGroup.
.PP
Examples:
.)l cursor/cursor.cpp, layout/layout.cpp, listboxcombo/listboxcombo.cpp, rangecontrols/rangecontrols.cpp, scrollview/scrollview.cpp, tabdialog/tabdialog.cpp, and tictac/tictac.cpp.