diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-07 14:56:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-07 14:56:09 +0900 |
commit | 87d29563e3ccdeb7fea0197e262e667ef323ff9c (patch) | |
tree | 2d674f204c5205ca577a782e1b50583afd563972 /doc/man/man3/tqcursor.3qt | |
parent | 628b0bb74c3fc327efff8add9c73ada04b1cbea2 (diff) | |
download | tqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.tar.gz tqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.zip |
Rename utility class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqcursor.3qt')
-rw-r--r-- | doc/man/man3/tqcursor.3qt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqcursor.3qt b/doc/man/man3/tqcursor.3qt index 2cdb80b3b..c8c0b23ef 100644 --- a/doc/man/man3/tqcursor.3qt +++ b/doc/man/man3/tqcursor.3qt @@ -22,7 +22,7 @@ Inherits Qt. .BI "\fBQCursor\fR ( int shape )" .br .ti -1c -.BI "\fBQCursor\fR ( const QBitmap & bitmap, const QBitmap & mask, int hotX = -1, int hotY = -1 )" +.BI "\fBQCursor\fR ( const TQBitmap & bitmap, const TQBitmap & mask, int hotX = -1, int hotY = -1 )" .br .ti -1c .BI "\fBQCursor\fR ( const QPixmap & pixmap, int hotX = -1, int hotY = -1 )" @@ -43,10 +43,10 @@ Inherits Qt. .BI "void \fBsetShape\fR ( int shape )" .br .ti -1c -.BI "const QBitmap * \fBbitmap\fR () const" +.BI "const TQBitmap * \fBbitmap\fR () const" .br .ti -1c -.BI "const QBitmap * \fBmask\fR () const" +.BI "const TQBitmap * \fBmask\fR () const" .br .ti -1c .BI "QPoint \fBhotSpot\fR () const" @@ -93,7 +93,7 @@ The QCursor class provides a mouse cursor with an arbitrary shape. .PP This class is mainly used to create mouse cursors that are associated with particular widgets and to get and set the position of the mouse cursor. .PP -Qt has a number of standard cursor shapes, but you can also make custom cursor shapes based on a QBitmap, a mask and a hotspot. +Qt has a number of standard cursor shapes, but you can also make custom cursor shapes based on a TQBitmap, a mask and a hotspot. .PP To associate a cursor with a widget, use TQWidget::setCursor(). To associate a cursor with all widgets (normally for a short period of time), use QApplication::setOverrideCursor(). .PP @@ -128,7 +128,7 @@ Constructs a cursor with the specified \fIshape\fR. See CursorShape for a list of shapes. .PP See also setShape(). -.SH "QCursor::QCursor ( const QBitmap & bitmap, const QBitmap & mask, int hotX = -1, int hotY = -1 )" +.SH "QCursor::QCursor ( const TQBitmap & bitmap, const TQBitmap & mask, int hotX = -1, int hotY = -1 )" Constructs a custom bitmap cursor. .PP \fIbitmap\fR and \fImask\fR make up the bitmap. \fIhotX\fR and \fIhotY\fR define the cursor's hot spot. @@ -149,7 +149,7 @@ Use the global TQt color \fCcolor0\fR to draw 0-pixels and \fCcolor1\fR to draw .PP Valid cursor sizes depend on the display hardware (or the underlying window system). We recommend using 32x32 cursors, because this size is supported on all platforms. Some platforms also support 16x16, 48x48 and 64x64 cursors. .PP -See also QBitmap::QBitmap() and QBitmap::setMask(). +See also TQBitmap::TQBitmap() and TQBitmap::setMask(). .SH "QCursor::QCursor ( const QPixmap & pixmap, int hotX = -1, int hotY = -1 )" Constructs a custom pixmap cursor. .PP @@ -170,7 +170,7 @@ Creates a cursor with the specified window system handle \fIhandle\fR. \fBWarning:\fR Portable in principle, but if you use it you are probably about to do something non-portable. Be careful. .SH "QCursor::~QCursor ()" Destroys the cursor. -.SH "const QBitmap * QCursor::bitmap () const" +.SH "const TQBitmap * QCursor::bitmap () const" Returns the cursor bitmap, or 0 if it is one of the standard cursors. .SH "void QCursor::cleanup ()\fC [static]\fR" Internal function that deinitializes the predefined cursors. This function is called from the QApplication destructor. @@ -186,7 +186,7 @@ Returns the cursor hot spot, or (0, 0) if it is one of the standard cursors. Internal function that initializes the predefined cursors. This function is called from the QApplication constructor. .PP See also cleanup(). -.SH "const QBitmap * QCursor::mask () const" +.SH "const TQBitmap * QCursor::mask () const" Returns the cursor bitmap mask, or 0 if it is one of the standard cursors. .SH "QCursor & QCursor::operator= ( const QCursor & c )" Assigns \fIc\fR to this cursor and returns a reference to this cursor. |