summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqwidget.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqwidget.3qt')
-rw-r--r--doc/man/man3/tqwidget.3qt38
1 files changed, 19 insertions, 19 deletions
diff --git a/doc/man/man3/tqwidget.3qt b/doc/man/man3/tqwidget.3qt
index 346dd3b2..f0c3070c 100644
--- a/doc/man/man3/tqwidget.3qt
+++ b/doc/man/man3/tqwidget.3qt
@@ -267,13 +267,13 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView,
.BI "TQFontInfo \fBfontInfo\fR () const"
.br
.ti -1c
-.BI "const QCursor & \fBcursor\fR () const"
+.BI "const TQCursor & \fBcursor\fR () const"
.br
.ti -1c
.BI "bool \fBownCursor\fR () const"
.br
.ti -1c
-.BI "virtual void \fBsetCursor\fR ( const QCursor & )"
+.BI "virtual void \fBsetCursor\fR ( const TQCursor & )"
.br
.ti -1c
.BI "virtual void \fBunsetCursor\fR ()"
@@ -351,7 +351,7 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView,
.BI "void \fBgrabMouse\fR ()"
.br
.ti -1c
-.BI "void \fBgrabMouse\fR ( const QCursor & cursor )"
+.BI "void \fBgrabMouse\fR ( const TQCursor & cursor )"
.br
.ti -1c
.BI "void \fBreleaseMouse\fR ()"
@@ -684,7 +684,7 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView,
.BI "TQColorGroup \fBcolorGroup\fR - the current color group of the widget palette \fI(read " "only" ")\fR"
.br
.ti -1c
-.BI "QCursor \fBcursor\fR - the cursor shape for this widget"
+.BI "TQCursor \fBcursor\fR - the cursor shape for this widget"
.br
.ti -1c
.BI "bool \fBcustomWhatsThis\fR - whether the widget wants to handle What's This help manually \fI(read " "only" ")\fR"
@@ -897,10 +897,10 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView,
.BI "virtual void \fBresizeEvent\fR ( QResizeEvent * )"
.br
.ti -1c
-.BI "virtual void \fBcloseEvent\fR ( QCloseEvent * e )"
+.BI "virtual void \fBcloseEvent\fR ( TQCloseEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBcontextMenuEvent\fR ( QContextMenuEvent * e )"
+.BI "virtual void \fBcontextMenuEvent\fR ( TQContextMenuEvent * e )"
.br
.ti -1c
.BI "virtual void \fBimStartEvent\fR ( QIMEvent * e )"
@@ -1227,7 +1227,7 @@ The repaint() function calls this function if necessary, so in general you do no
.SH "bool TQWidget::close ()\fC [slot]\fR"
Closes this widget. Returns TRUE if the widget was closed; otherwise returns FALSE.
.PP
-First it sends the widget a QCloseEvent. The widget is hidden if it accepts the close event. The default implementation of TQWidget::closeEvent() accepts the close event.
+First it sends the widget a TQCloseEvent. The widget is hidden if it accepts the close event. The default implementation of TQWidget::closeEvent() accepts the close event.
.PP
The QApplication::lastWindowClosed() signal is emitted when the last visible top level widget is closed.
.PP
@@ -1238,19 +1238,19 @@ This is an overloaded member function, provided for convenience. It behaves esse
.PP
Closes this widget. Returns TRUE if the widget was closed; otherwise returns FALSE.
.PP
-If \fIalsoDelete\fR is TRUE or the widget has the WDestructiveClose widget flag, the widget is also deleted. The widget can prevent itself from being closed by rejecting the QCloseEvent it gets. A close events is delivered to the widget no matter if the widget is visible or not.
+If \fIalsoDelete\fR is TRUE or the widget has the WDestructiveClose widget flag, the widget is also deleted. The widget can prevent itself from being closed by rejecting the TQCloseEvent it gets. A close events is delivered to the widget no matter if the widget is visible or not.
.PP
The QApplication::lastWindowClosed() signal is emitted when the last visible top level widget is closed.
.PP
Note that closing the QApplication::mainWidget() terminates the application.
.PP
-See also closeEvent(), QCloseEvent, hide(), QApplication::quit(), QApplication::setMainWidget(), and QApplication::lastWindowClosed().
-.SH "void TQWidget::closeEvent ( QCloseEvent * e )\fC [virtual protected]\fR"
+See also closeEvent(), TQCloseEvent, hide(), QApplication::quit(), QApplication::setMainWidget(), and QApplication::lastWindowClosed().
+.SH "void TQWidget::closeEvent ( TQCloseEvent * e )\fC [virtual protected]\fR"
This event handler, for event \fIe\fR, can be reimplemented in a subclass to receive widget close events.
.PP
-The default implementation calls e->accept(), which hides this widget. See the QCloseEvent documentation for more details.
+The default implementation calls e->accept(), which hides this widget. See the TQCloseEvent documentation for more details.
.PP
-See also event(), hide(), close(), and QCloseEvent.
+See also event(), hide(), close(), and TQCloseEvent.
.PP
Examples:
.)l action/application.cpp, application/application.cpp, chart/chartform.cpp, i18n/mywidget.cpp, mdi/application.cpp, popup/popup.cpp, and qwerty/qwerty.cpp.
@@ -1264,12 +1264,12 @@ Call constPolish() from functions like sizeHint() that depends on the widget bei
\fBWarning:\fR Do not call constPolish() on a widget from inside that widget's constructor.
.PP
See also polish().
-.SH "void TQWidget::contextMenuEvent ( QContextMenuEvent * e )\fC [virtual protected]\fR"
+.SH "void TQWidget::contextMenuEvent ( TQContextMenuEvent * e )\fC [virtual protected]\fR"
This event handler, for event \fIe\fR, can be reimplemented in a subclass to receive widget context menu events.
.PP
-The default implementation calls e->ignore(), which rejects the context event. See the QContextMenuEvent documentation for more details.
+The default implementation calls e->ignore(), which rejects the context event. See the TQContextMenuEvent documentation for more details.
.PP
-See also event() and QContextMenuEvent.
+See also event() and TQContextMenuEvent.
.PP
Example: menu/menu.cpp.
.SH "void TQWidget::create ( WId window = 0, bool initializeWindow = TRUE, bool destroyOldWindow = TRUE )\fC [virtual protected]\fR"
@@ -1280,7 +1280,7 @@ Initializes the window (sets the geometry etc.) if \fIinitializeWindow\fR is TRU
Destroys the old window if \fIdestroyOldWindow\fR is TRUE. If \fIdestroyOldWindow\fR is FALSE, you are responsible for destroying the window yourself (using platform native code).
.PP
The TQWidget constructor calls create(0,TRUE,TRUE) to create a window for this widget.
-.SH "const QCursor & TQWidget::cursor () const"
+.SH "const TQCursor & TQWidget::cursor () const"
Returns the cursor shape for this widget. See the "cursor" property for details.
.SH "bool TQWidget::customWhatsThis () const\fC [virtual]\fR"
Returns TRUE if the widget wants to handle What's This help manually; otherwise returns FALSE. See the "customWhatsThis" property for details.
@@ -1491,7 +1491,7 @@ It is almost never necessary to grab the mouse when using Qt, as TQt grabs and r
Note that only visible widgets can grab mouse input. If isVisible() returns FALSE for a widget, that widget cannot call grabMouse().
.PP
See also releaseMouse(), grabKeyboard(), releaseKeyboard(), grabKeyboard(), and focusWidget().
-.SH "void TQWidget::grabMouse ( const QCursor & cursor )"
+.SH "void TQWidget::grabMouse ( const TQCursor & cursor )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Grabs the mouse input and changes the cursor shape.
@@ -2009,7 +2009,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
This corresponds to setBaseSize( TQSize(\fIbasew\fR, \fIbaseh\fR) ). Sets the widgets base size to width \fIbasew\fR and height \fIbaseh\fR.
.SH "void TQWidget::setCaption ( const TQString & )\fC [virtual slot]\fR"
Sets the window caption (title). See the "caption" property for details.
-.SH "void TQWidget::setCursor ( const QCursor & )\fC [virtual]\fR"
+.SH "void TQWidget::setCursor ( const TQCursor & )\fC [virtual]\fR"
Sets the cursor shape for this widget. See the "cursor" property for details.
.SH "void TQWidget::setDisabled ( bool disable )\fC [slot]\fR"
Disables widget input events if \fIdisable\fR is TRUE; otherwise enables input events.
@@ -2623,7 +2623,7 @@ The color group is determined by the state of the widget. A disabled widget has
See also palette.
.PP
Get this property's value with colorGroup().
-.SH "QCursor cursor"
+.SH "TQCursor cursor"
This property holds the cursor shape for this widget.
.PP
The mouse cursor will assume this shape when it's over this widget. See the list of predefined cursor objects for a range of useful shapes.