diff options
Diffstat (limited to 'doc/man/man3/tqwidget.3qt')
-rw-r--r-- | doc/man/man3/tqwidget.3qt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/man/man3/tqwidget.3qt b/doc/man/man3/tqwidget.3qt index 08eeaae11..00242f28e 100644 --- a/doc/man/man3/tqwidget.3qt +++ b/doc/man/man3/tqwidget.3qt @@ -1298,7 +1298,7 @@ This event handler is called when a drag is in progress and the mouse enters thi .PP See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. .PP -See also QTextDrag, TQImageDrag, and QDragEnterEvent. +See also TQTextDrag, TQImageDrag, and QDragEnterEvent. .PP Example: iconview/simple_dd/main.cpp. .SH "void TQWidget::dragLeaveEvent ( QDragLeaveEvent * )\fC [virtual protected]\fR" @@ -1306,13 +1306,13 @@ This event handler is called when a drag is in progress and the mouse leaves thi .PP See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. .PP -See also QTextDrag, TQImageDrag, and QDragLeaveEvent. +See also TQTextDrag, TQImageDrag, and QDragLeaveEvent. .SH "void TQWidget::dragMoveEvent ( QDragMoveEvent * )\fC [virtual protected]\fR" This event handler is called when a drag is in progress and the mouse enters this widget, and whenever it moves within the widget. .PP See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. .PP -See also QTextDrag, TQImageDrag, and QDragMoveEvent. +See also TQTextDrag, TQImageDrag, and QDragMoveEvent. .SH "void TQWidget::drawText ( int x, int y, const TQString & str )" Draws the string \fIstr\fR at position \fI(x, y)\fR. .PP @@ -1330,7 +1330,7 @@ This event handler is called when the drag is dropped on this widget. .PP See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. .PP -See also QTextDrag, TQImageDrag, and QDropEvent. +See also TQTextDrag, TQImageDrag, and QDropEvent. .PP Example: iconview/simple_dd/main.cpp. .SH "void TQWidget::enabledChange ( bool oldEnabled )\fC [virtual protected]\fR" @@ -1517,7 +1517,7 @@ Returns the preferred height for this widget, given the width \fIw\fR. The defau .PP \fBWarning:\fR Does not look at the widget's layout. .PP -Reimplemented in QMenuBar and QTextEdit. +Reimplemented in QMenuBar and TQTextEdit. .SH "void TQWidget::hide ()\fC [virtual slot]\fR" Hides the widget. .PP @@ -1632,7 +1632,7 @@ See also keyReleaseEvent(), QKeyEvent::ignore(), focusPolicy, focusInEvent(), fo .PP Example: picture/picture.cpp. .PP -Reimplemented in QLineEdit and QTextEdit. +Reimplemented in QLineEdit and TQTextEdit. .SH "void TQWidget::keyReleaseEvent ( QKeyEvent * e )\fC [virtual protected]\fR" This event handler, for event \fIe\fR, can be reimplemented in a subclass to receive key release events for the widget. .PP @@ -2112,7 +2112,7 @@ Sets enables or disables the use of input methods for this widget to \fIb\fR. Se .SH "void TQWidget::setKeyCompression ( bool compress )\fC [virtual protected]\fR" Enables key event compression, if \fIcompress\fR is TRUE, and disables it if \fIcompress\fR is FALSE. .PP -Key compression is off by default (except for QLineEdit and QTextEdit), so widgets receive one key press event for each key press (or more, since autorepeat is usually on). If you turn it on and your program doesn't keep up with key input, TQt may try to compress key events so that more than one character can be processed in each event. +Key compression is off by default (except for QLineEdit and TQTextEdit), so widgets receive one key press event for each key press (or more, since autorepeat is usually on). If you turn it on and your program doesn't keep up with key input, TQt may try to compress key events so that more than one character can be processed in each event. .PP For example, a word processor widget might receive 2, 3 or more characters in each QKeyEvent::text(), if the layout recalculation takes too long for the CPU. .PP |