summaryrefslogtreecommitdiffstats
path: root/doc/man
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man')
-rw-r--r--doc/man/man3/TQMotif.3qt1
-rw-r--r--doc/man/man3/TQMotifDialog.3qt1
-rw-r--r--doc/man/man3/TQMotifWidget.3qt1
-rw-r--r--doc/man/man3/tqdialog.3qt2
-rw-r--r--doc/man/man3/tqeventloop.3qt4
-rw-r--r--doc/man/man3/tqmotif.3qt114
-rw-r--r--doc/man/man3/tqmotifdialog.3qt178
-rw-r--r--doc/man/man3/tqmotifwidget.3qt86
-rw-r--r--doc/man/man3/tqwidget.3qt6
9 files changed, 3 insertions, 390 deletions
diff --git a/doc/man/man3/TQMotif.3qt b/doc/man/man3/TQMotif.3qt
deleted file mode 100644
index 65b5244eb..000000000
--- a/doc/man/man3/TQMotif.3qt
+++ /dev/null
@@ -1 +0,0 @@
-.so man3/tqmotif.3qt
diff --git a/doc/man/man3/TQMotifDialog.3qt b/doc/man/man3/TQMotifDialog.3qt
deleted file mode 100644
index b0c0e8e85..000000000
--- a/doc/man/man3/TQMotifDialog.3qt
+++ /dev/null
@@ -1 +0,0 @@
-.so man3/tqmotifdialog.3qt
diff --git a/doc/man/man3/TQMotifWidget.3qt b/doc/man/man3/TQMotifWidget.3qt
deleted file mode 100644
index bcb90c72a..000000000
--- a/doc/man/man3/TQMotifWidget.3qt
+++ /dev/null
@@ -1 +0,0 @@
-.so man3/tqmotifwidget.3qt
diff --git a/doc/man/man3/tqdialog.3qt b/doc/man/man3/tqdialog.3qt
index 374634293..80cc1b7f1 100644
--- a/doc/man/man3/tqdialog.3qt
+++ b/doc/man/man3/tqdialog.3qt
@@ -13,7 +13,7 @@ TQDialog \- The base class of dialog windows
.PP
Inherits TQWidget.
.PP
-Inherited by TQColorDialog, TQErrorMessage, TQFileDialog, TQFontDialog, TQInputDialog, TQMessageBox, TQMotifDialog, TQProgressDialog, TQTabDialog, and TQWizard.
+Inherited by TQColorDialog, TQErrorMessage, TQFileDialog, TQFontDialog, TQInputDialog, TQMessageBox, TQProgressDialog, TQTabDialog, and TQWizard.
.PP
.SS "Public Members"
.in +1c
diff --git a/doc/man/man3/tqeventloop.3qt b/doc/man/man3/tqeventloop.3qt
index c73086215..55c907fe4 100644
--- a/doc/man/man3/tqeventloop.3qt
+++ b/doc/man/man3/tqeventloop.3qt
@@ -13,8 +13,6 @@ TQEventLoop \- Manages the event queue
.PP
Inherits TQObject.
.PP
-Inherited by TQMotif.
-.PP
.SS "Public Members"
.in +1c
.ti -1c
@@ -91,7 +89,7 @@ It receives events from the window system and other sources. It then sends them
.PP
TQEventLoop allows the application programmer to have more control over event delivery. Programs that perform long operations can call either processOneEvent() or processEvents() with various ProcessEvent values OR'ed together to control which events should be delivered.
.PP
-TQEventLoop also allows the integration of an external event loop with the TQt event loop. The Motif Extension included with TQt includes a reimplementation of TQEventLoop for merging TQt and Motif events together.
+TQEventLoop also allows the integration of an external event loop with the TQt event loop.
.PP
To use your own instance of TQEventLoop or TQEventLoop subclass create it before you create the QApplication object.
.PP
diff --git a/doc/man/man3/tqmotif.3qt b/doc/man/man3/tqmotif.3qt
deleted file mode 100644
index 670531e1b..000000000
--- a/doc/man/man3/tqmotif.3qt
+++ /dev/null
@@ -1,114 +0,0 @@
-'\" t
-.TH TQMotif 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
-.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
-.\" license file included in the distribution for a complete license
-.\" statement.
-.\"
-.ad l
-.nh
-.SH NAME
-TQMotif \- The basis of the
-.SH SYNOPSIS
-This class is part of the \fBQt Motif Extension\fR.
-.PP
-\fC#include <tqmotif.h>\fR
-.PP
-Inherits TQEventLoop.
-.PP
-.SS "Public Members"
-.in +1c
-.ti -1c
-.BI "\fBTQMotif\fR ( const char * applicationClass, XtAppContext context = NULL, XrmOptionDescRec * options = 0, int numOptions = 0 )"
-.br
-.ti -1c
-.BI "\fB~TQMotif\fR ()"
-.br
-.ti -1c
-.BI "XtAppContext \fBapplicationContext\fR () const"
-.br
-.in -1c
-.SS "Static Public Members"
-.in +1c
-.ti -1c
-.BI "Display * \fBx11Display\fR ()"
-.br
-.in -1c
-.SH DESCRIPTION
-This class is defined in the \fBQt Motif Extension\fR, which can be found in the \fCqt/extensions\fR directory. It is not included in the main TQt API.
-.PP
-The TQMotif class provides the basis of the Motif Extension.
-.PP
-TQMotif only provides a few public functions, but it is at the heart of the integration. TQMotif is responsible for initializing the Xt toolkit and the Xt application context. It does not open a connection to the X server, that is done by QApplication.
-.PP
-The only member function in TQMotif that depends on an X server connection is TQMotif::initialize(). TQMotif must be created before QApplication.
-.PP
-Example usage of TQMotif and QApplication:
-.PP
-.nf
-.br
- static char *resources[] = {
-.br
- ...
-.br
- };
-.br
-.br
- int main(int argc, char **argv)
-.br
- {
-.br
- TQMotif integrator( "AppClass" );
-.br
- XtAppSetFallbackResources( integrator.applicationContext(),
-.br
- resources );
-.br
- QApplication app( argc, argv );
-.br
-.br
- ...
-.br
-.br
- return app.exec();
-.br
- }
-.br
-.fi
-.SH MEMBER FUNCTION DOCUMENTATION
-.SH "TQMotif::TQMotif ( const char * applicationClass, XtAppContext context = NULL, XrmOptionDescRec * options = 0, int numOptions = 0 )"
-Creates TQMotif, which allows TQt and Xt/Motif integration.
-.PP
-If \fIcontext\fR is 0, TQMotif creates a default application context itself. The context is accessible through applicationContext().
-.PP
-All arguments passed to this function (\fIapplicationClass\fR, \fIoptions\fR and \fInumOptions\fR) are used to call XtDisplayInitialize() after QApplication has been constructed.
-.SH "TQMotif::~TQMotif ()"
-Destroys TQMotif.
-.SH "XtAppContext TQMotif::applicationContext () const"
-Returns the application context.
-.SH "Display * TQMotif::x11Display ()\fC [static]\fR"
-Returns the X11 display connection used by the TQt Motif Extension.
-
-.SH "SEE ALSO"
-.BR http://doc.trolltech.com/tqmotif.html
-.BR http://www.trolltech.com/faq/tech.html
-.SH COPYRIGHT
-Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
-license file included in the distribution for a complete license
-statement.
-.SH AUTHOR
-Generated automatically from the source code.
-.SH BUGS
-If you find a bug in Qt, please report it as described in
-.BR http://doc.trolltech.com/bughowto.html .
-Good bug reports help us to help you. Thank you.
-.P
-The definitive TQt documentation is provided in HTML format; it is
-located at $TQTDIR/doc/html and can be read using TQt Assistant or with
-a web browser. This man page is provided as a convenience for those
-users who prefer man pages, although this format is not officially
-supported by Trolltech.
-.P
-If you find errors in this manual page, please report them to
-.BR qt-bugs@trolltech.com .
-Please include the name of the manual page (tqmotif.3qt) and the Qt
-version (3.3.8).
diff --git a/doc/man/man3/tqmotifdialog.3qt b/doc/man/man3/tqmotifdialog.3qt
deleted file mode 100644
index 6589a3c89..000000000
--- a/doc/man/man3/tqmotifdialog.3qt
+++ /dev/null
@@ -1,178 +0,0 @@
-'\" t
-.TH TQMotifDialog 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
-.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
-.\" license file included in the distribution for a complete license
-.\" statement.
-.\"
-.ad l
-.nh
-.SH NAME
-TQMotifDialog \- The TQDialog API for Motif-based dialogs
-.SH SYNOPSIS
-This class is part of the \fBQt Motif Extension\fR.
-.PP
-\fC#include <tqmotifdialog.h>\fR
-.PP
-Inherits TQDialog.
-.PP
-.SS "Public Members"
-.in +1c
-.ti -1c
-.BI "enum DialogType { Prompt, Selection, Command, FileSelection, Template, Error, Information, Message, Question, Warning, Working } \fI(obsolete)\fR"
-.br
-.ti -1c
-.BI "TQMotifDialog ( DialogType dialogtype, Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 ) \fI(obsolete)\fR"
-.br
-.ti -1c
-.BI "TQMotifDialog ( Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 ) \fI(obsolete)\fR"
-.br
-.ti -1c
-.BI "\fBTQMotifDialog\fR ( Widget parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
-.br
-.ti -1c
-.BI "\fBTQMotifDialog\fR ( TQWidget * parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
-.br
-.ti -1c
-.BI "virtual \fB~TQMotifDialog\fR ()"
-.br
-.ti -1c
-.BI "Widget \fBshell\fR () const"
-.br
-.ti -1c
-.BI "Widget \fBdialog\fR () const"
-.br
-.in -1c
-.SS "Static Public Members"
-.in +1c
-.ti -1c
-.BI "void \fBacceptCallback\fR ( Widget, XtPointer client_data, XtPointer )"
-.br
-.ti -1c
-.BI "void \fBrejectCallback\fR ( Widget, XtPointer client_data, XtPointer )"
-.br
-.in -1c
-.SH DESCRIPTION
-This class is defined in the \fBQt Motif Extension\fR, which can be found in the \fCqt/extensions\fR directory. It is not included in the main TQt API.
-.PP
-The TQMotifDialog class provides the TQDialog API for Motif-based dialogs.
-.PP
-TQMotifDialog provides two separate modes of operation. The application programmer can use TQMotifDialog with an existing Motif-based dialog and a TQWidget parent, or the application programmer can use TQMotifDialog with a custom Qt-based dialog and a Motif-based parent. Modality continues to work as expected.
-.PP
-Motif-based dialogs must have a \fCShell\fR widget parent with a single child, due to requirements of the Motif toolkit. The \fCShell\fR widget, which is a special subclass of \fCXmDialogShell\fR, is created during construction. It can be accessed using the shell() member function.
-.PP
-The single child of the \fCShell\fR can be accessed using the dialog() member function \fIafter\fR it has been created.
-.PP
-The acceptCallback() and rejectCallback() functions provide a convenient way to call TQDialog::accept() and TQDialog::reject() through callbacks. A pointer to the TQMotifDialog should be passed as the \fCclient_data\fR argument to the callback.
-.PP
-The API and behavior TQMotifDialog is identical to that of TQDialog when using a custom Qt-based dialog with a Motif-based parent. The only difference is that a Motif-based \fIparent\fR argument is passed to the constructor, instead of a TQWidget parent.
-.SS "Member Type Documentation"
-.SH "TQMotifDialog::DialogType"
-\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
-.PP
-This enum lists the predefined Motif dialog types.
-.TP
-\fCTQMotifDialog::Prompt\fR
-.TP
-\fCTQMotifDialog::Selection\fR
-.TP
-\fCTQMotifDialog::Command\fR
-.TP
-\fCTQMotifDialog::FileSelection\fR
-.TP
-\fCTQMotifDialog::Template\fR
-.TP
-\fCTQMotifDialog::Error\fR
-.TP
-\fCTQMotifDialog::Information\fR
-.TP
-\fCTQMotifDialog::Message\fR
-.TP
-\fCTQMotifDialog::Question\fR
-.TP
-\fCTQMotifDialog::Warning\fR
-.TP
-\fCTQMotifDialog::Working\fR
-.SH MEMBER FUNCTION DOCUMENTATION
-.SH "TQMotifDialog::TQMotifDialog ( DialogType dialogtype, Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
-\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
-.PP
-Creates a TQMotifDialog using one of the predefined Motif dialog types. The \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor.
-.PP
-This constructor creates a Shell widget, which is a special subclass of XmDialogShell. The \fIparent\fR, \fIargs\fR and \fIargcount\fR arguments are passed to XtCreatePopupShell() when creating the subclass. You can access the Shell widget with the shell() member function.
-.PP
-This constructor also creates the dialog widget with the Shell widget as its parent. The type of the dialog created is specified by the \fIdialogtype\fR argument. See the DialogType enum for a list of available dialog types. You can access the dialog widget with the dialog() member function.
-.PP
-\fBWarning:\fR TQMotifDialog takes ownership of the child widget and destroys it during destruction. You should not destroy the dialog widget yourself.
-.PP
-See also DialogType, shell(), and dialog().
-.SH "TQMotifDialog::TQMotifDialog ( Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
-\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
-.PP
-Creates a TQMotifDialog which allows the application programmer to use the Motif-based \fIparent\fR for a custom TQDialog. The \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor.
-.PP
-This constructor creates a Shell widget, which is a special subclass of XmDialogShell. The \fIargs\fR and \fIargcount\fR arguments are passed to XtCreatePopupShell() when creating the subclass. You can access the Shell widget with the shell() member function.
-.PP
-The dialog widget is not created by the constructor. You must create the dialog widget as a child of the the widget returned by shell(). You can access the child widget with the dialog() member function.
-.PP
-A dialog widget is not created by this constructor. Instead, you should create the dialog widget as a child of this dialog. TQMotifDialog will take ownership of your custom dialog, and you can access it with the dialog() member function.
-.PP
-\fBWarning:\fR TQMotifDialog takes ownership of the child widget and destroys it during destruction. You should not destroy the dialog widget yourself.
-.PP
-See also shell() and dialog().
-.SH "TQMotifDialog::TQMotifDialog ( Widget parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
-Creates a TQMotifDialog which allows the application programmer to use the Motif-based \fIparent\fR for a custom TQDialog. The \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor.
-.PP
-This constructor creates a \fCShell\fR widget, which is a special subclass of \fCXmDialogShell\fR. You can access the \fCShell\fR widget with the shell() member function.
-.PP
-See also shell().
-.SH "TQMotifDialog::TQMotifDialog ( TQWidget * parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
-Creates a TQMotifDialog which allows the application programmer to use a TQWidget parent for an existing Motif-based dialog. The \fIparent\fR, \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor.
-.PP
-This constructor creates a \fCShell\fR widget, which is a special subclass of \fCXmDialogShell\fR. You can access the \fCShell\fR widget with the shell() member functon.
-.PP
-A dialog widget is not created by this constructor. Instead, you should create the dialog widget as a child of this dialog. TQMotifDialog will take ownership of your custom dialog, and you can access it with the dialog() member function.
-.PP
-\fBWarning:\fR TQMotifDialog takes ownership of the child widget and destroys it during destruction. You should not destroy the dialog widget yourself.
-.PP
-See also shell() and dialog().
-.SH "TQMotifDialog::~TQMotifDialog ()\fC [virtual]\fR"
-Destroys the TQDialog, dialog widget and \fCShell\fR widget.
-.SH "void TQMotifDialog::acceptCallback ( Widget, XtPointer client_data, XtPointer )\fC [static]\fR"
-Convenient Xt/Motif callback to accept the TQMotifDialog.
-.PP
-The data is passed in \fIclient_data\fR.
-.SH "Widget TQMotifDialog::dialog () const"
-Returns the Motif widget embedded in this dialog.
-.SH "void TQMotifDialog::rejectCallback ( Widget, XtPointer client_data, XtPointer )\fC [static]\fR"
-Convenient Xt/Motif callback to reject the TQMotifDialog.
-.PP
-The data is passed in \fIclient_data\fR.
-.SH "Widget TQMotifDialog::shell () const"
-Returns the \fCShell\fR widget embedded in this dialog.
-.PP
-Example: dialog/mainwindow.cpp.
-
-.SH "SEE ALSO"
-.BR http://doc.trolltech.com/tqmotifdialog.html
-.BR http://www.trolltech.com/faq/tech.html
-.SH COPYRIGHT
-Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
-license file included in the distribution for a complete license
-statement.
-.SH AUTHOR
-Generated automatically from the source code.
-.SH BUGS
-If you find a bug in Qt, please report it as described in
-.BR http://doc.trolltech.com/bughowto.html .
-Good bug reports help us to help you. Thank you.
-.P
-The definitive TQt documentation is provided in HTML format; it is
-located at $TQTDIR/doc/html and can be read using TQt Assistant or with
-a web browser. This man page is provided as a convenience for those
-users who prefer man pages, although this format is not officially
-supported by Trolltech.
-.P
-If you find errors in this manual page, please report them to
-.BR qt-bugs@trolltech.com .
-Please include the name of the manual page (tqmotifdialog.3qt) and the Qt
-version (3.3.8).
diff --git a/doc/man/man3/tqmotifwidget.3qt b/doc/man/man3/tqmotifwidget.3qt
deleted file mode 100644
index 3b12c0a42..000000000
--- a/doc/man/man3/tqmotifwidget.3qt
+++ /dev/null
@@ -1,86 +0,0 @@
-'\" t
-.TH TQMotifWidget 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
-.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
-.\" license file included in the distribution for a complete license
-.\" statement.
-.\"
-.ad l
-.nh
-.SH NAME
-TQMotifWidget \- The TQWidget API for Xt/Motif widgets
-.SH SYNOPSIS
-This class is part of the \fBQt Motif Extension\fR.
-.PP
-\fC#include <tqmotifwidget.h>\fR
-.PP
-Inherits TQWidget.
-.PP
-.SS "Public Members"
-.in +1c
-.ti -1c
-.BI "\fBTQMotifWidget\fR ( TQWidget * parent, WidgetClass widgetclass, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, WFlags flags = 0 )"
-.br
-.ti -1c
-.BI "virtual \fB~TQMotifWidget\fR ()"
-.br
-.ti -1c
-.BI "Widget \fBmotifWidget\fR () const"
-.br
-.in -1c
-.SS "Protected Members"
-.in +1c
-.ti -1c
-.BI "virtual bool \fBx11Event\fR ( XEvent * event )"
-.br
-.in -1c
-.SH DESCRIPTION
-This class is defined in the \fBQt Motif Extension\fR, which can be found in the \fCqt/extensions\fR directory. It is not included in the main TQt API.
-.PP
-The TQMotifWidget class provides the TQWidget API for Xt/Motif widgets.
-.PP
-TQMotifWidget exists to provide a TQWidget that can act as a parent for any Xt/Motif widget. Since the TQMotifWidget is a proper TQWidget, it can be used as a top-level widget (e.g. 0 parent) or as a child of any other TQWidget. Note: Since TQMotifWidget acts as a parent for Xt/Motif widgets, you should not create TQWidgets with a TQMotifWidget parent.
-.PP
-An Xt/Motif widget with a top-level TQMotifWidget parent can begin using the standard TQt dialogs and custom TQDialogs while keeping the main Xt/Motif interface of the application. Using a TQMotifWidget as the parent for the various TQDialogs will ensure that modality and stacking works properly throughout the entire application.
-.PP
-Applications moving to TQt may have custom Xt/Motif widgets that will take time to rewrite with Qt. Such applications can use these custom widgets as TQMotifWidget with TQWidget parents. This allows the application's interface to be replaced gradually.
-.PP
-\fBWarning:\fR TQMotifWidget uses the X11 window ID of the Motif widget directly, instead of creating its own. Because ot this, TQWidget::reparent() will not work. This includes the functions TQWidget::showFullScreen() and TQWidget::showNormal(), which use TQWidget::reparent().
-.SH MEMBER FUNCTION DOCUMENTATION
-.SH "TQMotifWidget::TQMotifWidget ( TQWidget * parent, WidgetClass widgetclass, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, WFlags flags = 0 )"
-Creates a TQMotifWidget of the given \fIwidgetclass\fR as a child of \fIparent\fR, with the name \fIname\fR and widget flags \fIflags\fR.
-.PP
-The \fIargs\fR and \fIargcount\fR arguments are passed on to XtCreateWidget.
-.PP
-The motifWidget() function returns the resulting Xt/Motif widget. This widget can be used as a parent for any other Xt/Motif widget.
-.PP
-If \fIparent\fR is a TQMotifWidget, the Xt/Motif widget is created as a child of the parent's motifWidget(). If &#92; parent is 0 or a normal TQWidget, the Xt/Motif widget is created as a child of a special TopLevelShell widget. Xt/Motif widgets can use this special TopLevelShell parent as the parent for existing Xt/Motif dialogs or TQMotifDialogs.
-.SH "TQMotifWidget::~TQMotifWidget ()\fC [virtual]\fR"
-Destroys the TQMotifWidget. The special TopLevelShell is also destroyed, if it was created during construction.
-.SH "Widget TQMotifWidget::motifWidget () const"
-Returns the embedded Xt/Motif widget. If a Shell widget was
-created by the constructor, you can access it with XtParent().
-
-.SH "SEE ALSO"
-.BR http://doc.trolltech.com/tqmotifwidget.html
-.BR http://www.trolltech.com/faq/tech.html
-.SH COPYRIGHT
-Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
-license file included in the distribution for a complete license
-statement.
-.SH AUTHOR
-Generated automatically from the source code.
-.SH BUGS
-If you find a bug in Qt, please report it as described in
-.BR http://doc.trolltech.com/bughowto.html .
-Good bug reports help us to help you. Thank you.
-.P
-The definitive TQt documentation is provided in HTML format; it is
-located at $TQTDIR/doc/html and can be read using TQt Assistant or with
-a web browser. This man page is provided as a convenience for those
-users who prefer man pages, although this format is not officially
-supported by Trolltech.
-.P
-If you find errors in this manual page, please report them to
-.BR qt-bugs@trolltech.com .
-Please include the name of the manual page (tqmotifwidget.3qt) and the Qt
-version (3.3.8).
diff --git a/doc/man/man3/tqwidget.3qt b/doc/man/man3/tqwidget.3qt
index b8f318224..d95f88ee6 100644
--- a/doc/man/man3/tqwidget.3qt
+++ b/doc/man/man3/tqwidget.3qt
@@ -13,7 +13,7 @@ TQWidget \- The base class of all user interface objects
.PP
Inherits TQObject and TQPaintDevice.
.PP
-Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView, TQDateTimeEditBase, TQDateTimeEdit, TQDesktopWidget, TQDial, TQDockArea, TQGLWidget, TQHeader, TQMainWindow, TQMotifWidget, TQScrollBar, TQSizeGrip, TQSlider, TQSpinBox, TQSplashScreen, TQStatusBar, TQTabBar, TQTabWidget, TQWorkspace, and QXtWidget.
+Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView, TQDateTimeEditBase, TQDateTimeEdit, TQDesktopWidget, TQDial, TQDockArea, TQGLWidget, TQHeader, TQMainWindow, TQScrollBar, TQSizeGrip, TQSlider, TQSpinBox, TQSplashScreen, TQStatusBar, TQTabBar, TQTabWidget and TQWorkspace.
.PP
.SS "Public Members"
.in +1c
@@ -1978,8 +1978,6 @@ This function performs the same operation as clicking the mouse on the title bar
On Windows, if you are calling this when the application is not currently the active one then it will not make it the active window. It will flash the task bar entry blue to indicate that the window has done something. This is because Microsoft do not allow an application to interrupt what the user is currently doing in another application.
.PP
See also isActiveWindow, topLevelWidget(), and show().
-.PP
-Reimplemented in QXtWidget.
.SH "void TQWidget::setAutoMask ( bool )\fC [virtual]\fR"
Sets whether the auto mask feature is enabled for the widget. See the "autoMask" property for details.
.SH "void TQWidget::setBackgroundColor ( const TQColor & c )\fC [virtual]\fR"
@@ -2508,8 +2506,6 @@ In your reimplementation of this function, if you want to stop the event being h
\fBWarning:\fR This function is not portable.
.PP
See also QApplication::x11EventFilter().
-.PP
-Reimplemented in QXtWidget.
.SH "int TQWidget::y () const"
Returns the y coordinate of the widget relative to its parent and including any window frame. See the "y" property for details.
.SS "Property Documentation"