summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtabdialog.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-08-12 22:02:11 +0900
committerMichele Calgaro <[email protected]>2024-08-12 22:02:11 +0900
commit42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch)
tree0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/man/man3/tqtabdialog.3qt
parentfef846914f8db6dc117e206ef913d519bf6bb33e (diff)
downloadtqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.tar.gz
tqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.zip
Rename more widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqtabdialog.3qt')
-rw-r--r--doc/man/man3/tqtabdialog.3qt144
1 files changed, 72 insertions, 72 deletions
diff --git a/doc/man/man3/tqtabdialog.3qt b/doc/man/man3/tqtabdialog.3qt
index 6dbc626e7..498291a12 100644
--- a/doc/man/man3/tqtabdialog.3qt
+++ b/doc/man/man3/tqtabdialog.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QTabDialog 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQTabDialog 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.
@@ -7,19 +7,19 @@
.ad l
.nh
.SH NAME
-QTabDialog \- Stack of tabbed widgets
+TQTabDialog \- Stack of tabbed widgets
.SH SYNOPSIS
-\fC#include <ntqtabdialog.h>\fR
+\fC#include <tqtabdialog.h>\fR
.PP
Inherits TQDialog.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQTabDialog\fR ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )"
+.BI "\fBTQTabDialog\fR ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )"
.br
.ti -1c
-.BI "\fB~QTabDialog\fR ()"
+.BI "\fB~TQTabDialog\fR ()"
.br
.ti -1c
.BI "virtual void \fBsetFont\fR ( const TQFont & font )"
@@ -31,7 +31,7 @@ Inherits TQDialog.
.BI "void \fBaddTab\fR ( TQWidget * child, const TQIconSet & iconset, const TQString & label )"
.br
.ti -1c
-.BI "void \fBaddTab\fR ( TQWidget * child, QTab * tab )"
+.BI "void \fBaddTab\fR ( TQWidget * child, TQTab * tab )"
.br
.ti -1c
.BI "void \fBinsertTab\fR ( TQWidget * child, const TQString & label, int index = -1 )"
@@ -40,7 +40,7 @@ Inherits TQDialog.
.BI "void \fBinsertTab\fR ( TQWidget * child, const TQIconSet & iconset, const TQString & label, int index = -1 )"
.br
.ti -1c
-.BI "void \fBinsertTab\fR ( TQWidget * child, QTab * tab, int index = -1 )"
+.BI "void \fBinsertTab\fR ( TQWidget * child, TQTab * tab, int index = -1 )"
.br
.ti -1c
.BI "void \fBchangeTab\fR ( TQWidget * w, const TQString & label )"
@@ -145,22 +145,22 @@ Inherits TQDialog.
.SS "Protected Members"
.in +1c
.ti -1c
-.BI "void \fBsetTabBar\fR ( QTabBar * tb )"
+.BI "void \fBsetTabBar\fR ( TQTabBar * tb )"
.br
.ti -1c
-.BI "QTabBar * \fBtabBar\fR () const"
+.BI "TQTabBar * \fBtabBar\fR () const"
.br
.in -1c
.SH DESCRIPTION
-The QTabDialog class provides a stack of tabbed widgets.
+The TQTabDialog class provides a stack of tabbed widgets.
.PP
A tabbed dialog is one in which several "tab pages" are available. By clicking on a tab page's tab or by pressing the indicated Alt+\fIletter\fR key combination, the user can select which tab page they want to use.
.PP
-QTabDialog provides a tab bar consisting of single row of tabs at the top; each tab has an associated widget which is that tab's tab page. In addition, QTabDialog provides an OK button and the following optional buttons: Apply, Cancel, Defaults and Help.
+TQTabDialog provides a tab bar consisting of single row of tabs at the top; each tab has an associated widget which is that tab's tab page. In addition, TQTabDialog provides an OK button and the following optional buttons: Apply, Cancel, Defaults and Help.
.PP
-The normal way to use QTabDialog is to do the following in the constructor: <ol type=1>
+The normal way to use TQTabDialog is to do the following in the constructor: <ol type=1>
.IP 1
-Create a QTabDialog.
+Create a TQTabDialog.
.IP 2
Create a TQWidget for each of the pages in the tab dialog, insert children into it, set up geometry management for it, and use addTab() (or insertTab()) to set up a tab and keyboard accelerator for it.
.IP 3
@@ -188,9 +188,9 @@ Each tab is either enabled or disabled at any given time (see setTabEnabled()).
.PP
You can change a tab's label and iconset using changeTab(). A tab page can be removed with removePage() and shown with showPage(). The current page is given by currentPage().
.PP
-QTabDialog does not support tabs on the sides or bottom, nor can you set or retrieve the visible page. If you need more functionality than QTabDialog provides, consider creating a TQDialog and using a QTabBar with QTabWidgets.
+TQTabDialog does not support tabs on the sides or bottom, nor can you set or retrieve the visible page. If you need more functionality than TQTabDialog provides, consider creating a TQDialog and using a TQTabBar with TQTabWidgets.
.PP
-Most of the functionality in QTabDialog is provided by a QTabWidget.
+Most of the functionality in TQTabDialog is provided by a TQTabWidget.
.PP
.ce 1
.B "[Image Omitted]"
@@ -201,17 +201,17 @@ Most of the functionality in QTabDialog is provided by a QTabWidget.
.PP
See also TQDialog and Dialog Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QTabDialog::QTabDialog ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )"
-Constructs a QTabDialog with only an OK button. The \fIparent\fR, \fIname\fR, \fImodal\fR and widget flag, \fIf\fR, arguments are passed on to the TQDialog constructor.
-.SH "QTabDialog::~QTabDialog ()"
+.SH "TQTabDialog::TQTabDialog ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )"
+Constructs a TQTabDialog with only an OK button. The \fIparent\fR, \fIname\fR, \fImodal\fR and widget flag, \fIf\fR, arguments are passed on to the TQDialog constructor.
+.SH "TQTabDialog::~TQTabDialog ()"
Destroys the tab dialog.
-.SH "void QTabDialog::aboutToShow ()\fC [signal]\fR"
-This signal is emitted by show() when it is time to set the state of the dialog's contents. The dialog should reflect the current state of the application when it appears; if there is any possibility that the state of the application may change between the time you call QTabDialog::QTabDialog() and QTabDialog::show(), you should set the dialog's state in a slot and connect this signal to it.
+.SH "void TQTabDialog::aboutToShow ()\fC [signal]\fR"
+This signal is emitted by show() when it is time to set the state of the dialog's contents. The dialog should reflect the current state of the application when it appears; if there is any possibility that the state of the application may change between the time you call TQTabDialog::TQTabDialog() and TQTabDialog::show(), you should set the dialog's state in a slot and connect this signal to it.
.PP
-This applies mainly to QTabDialog objects that are kept around hidden, rather than being created, shown, and deleted afterwards.
+This applies mainly to TQTabDialog objects that are kept around hidden, rather than being created, shown, and deleted afterwards.
.PP
See also applyButtonPressed(), show(), and cancelButtonPressed().
-.SH "void QTabDialog::addTab ( TQWidget * child, const TQString & label )"
+.SH "void TQTabDialog::addTab ( TQWidget * child, const TQString & label )"
Adds another tab and page to the tab view.
.PP
The new page is \fIchild\fR; the tab's label is \fIlabel\fR. Note the difference between the widget name (which you supply to widget constructors and to setTabEnabled(), for example) and the tab label. The name is internal to the program and invariant, whereas the label is shown on-screen and may vary according to language and other factors.
@@ -221,71 +221,71 @@ If the tab's \fIlabel\fR contains an ampersand, the letter following the ampersa
If you call addTab() after show() the screen will flicker and the user may be confused.
.PP
See also insertTab().
-.SH "void QTabDialog::addTab ( TQWidget * child, const TQIconSet & iconset, const TQString & label )"
+.SH "void TQTabDialog::addTab ( TQWidget * child, const TQIconSet & iconset, const TQString & label )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This version of the function shows the \fIiconset\fR as well as the \fIlabel\fR on the tab of \fIchild\fR.
-.SH "void QTabDialog::addTab ( TQWidget * child, QTab * tab )"
+.SH "void TQTabDialog::addTab ( TQWidget * child, TQTab * tab )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-This is a lower-level method for adding tabs, similar to the other addTab() method. It is useful if you are using setTabBar() to set a QTabBar subclass with an overridden QTabBar::paint() function for a subclass of QTab.
+This is a lower-level method for adding tabs, similar to the other addTab() method. It is useful if you are using setTabBar() to set a TQTabBar subclass with an overridden TQTabBar::paint() function for a subclass of TQTab.
.PP
The \fIchild\fR is the widget to be placed on the new tab page. The \fItab\fR is the tab to display on the tab page -- normally this shows a label or an icon that identifies the tab page.
-.SH "void QTabDialog::applyButtonPressed ()\fC [signal]\fR"
+.SH "void TQTabDialog::applyButtonPressed ()\fC [signal]\fR"
This signal is emitted when either the Apply or OK button is clicked.
.PP
It should be connected to a slot (or several slots) that change the application's state according to the state of the dialog.
.PP
See also cancelButtonPressed(), defaultButtonPressed(), and setApplyButton().
-.SH "void QTabDialog::cancelButtonPressed ()\fC [signal]\fR"
+.SH "void TQTabDialog::cancelButtonPressed ()\fC [signal]\fR"
This signal is emitted when the Cancel button is clicked. It is automatically connected to TQDialog::reject(), which will hide the dialog.
.PP
The Cancel button should not change the application's state at all, so you should generally not need to connect it to any slot.
.PP
See also applyButtonPressed(), defaultButtonPressed(), and setCancelButton().
-.SH "void QTabDialog::changeTab ( TQWidget * w, const TQIconSet & iconset, const TQString & label )"
+.SH "void TQTabDialog::changeTab ( TQWidget * w, const TQIconSet & iconset, const TQString & label )"
Changes tab page \fIw\fR's iconset to \fIiconset\fR and label to \fIlabel\fR.
-.SH "void QTabDialog::changeTab ( TQWidget * w, const TQString & label )"
+.SH "void TQTabDialog::changeTab ( TQWidget * w, const TQString & label )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Defines a new \fIlabel\fR for the tab of page \fIw\fR
-.SH "void QTabDialog::currentChanged ( TQWidget * )\fC [signal]\fR"
+.SH "void TQTabDialog::currentChanged ( TQWidget * )\fC [signal]\fR"
This signal is emitted whenever the current page changes.
.PP
See also currentPage(), showPage(), and tabLabel().
-.SH "TQWidget * QTabDialog::currentPage () const"
+.SH "TQWidget * TQTabDialog::currentPage () const"
Returns a pointer to the page currently being displayed by the tab dialog. The tab dialog does its best to make sure that this value is never 0 (but if you try hard enough, it can be).
-.SH "void QTabDialog::defaultButtonPressed ()\fC [signal]\fR"
+.SH "void TQTabDialog::defaultButtonPressed ()\fC [signal]\fR"
This signal is emitted when the Defaults button is pressed. It should reset the dialog (but not the application) to the "factory defaults".
.PP
The application's state should not be changed until the user clicks Apply or OK.
.PP
See also applyButtonPressed(), cancelButtonPressed(), and setDefaultButton().
-.SH "bool QTabDialog::hasApplyButton () const"
+.SH "bool TQTabDialog::hasApplyButton () const"
Returns TRUE if the tab dialog has an Apply button; otherwise returns FALSE.
.PP
See also setApplyButton(), applyButtonPressed(), hasCancelButton(), and hasDefaultButton().
-.SH "bool QTabDialog::hasCancelButton () const"
+.SH "bool TQTabDialog::hasCancelButton () const"
Returns TRUE if the tab dialog has a Cancel button; otherwise returns FALSE.
.PP
See also setCancelButton(), cancelButtonPressed(), hasApplyButton(), and hasDefaultButton().
-.SH "bool QTabDialog::hasDefaultButton () const"
+.SH "bool TQTabDialog::hasDefaultButton () const"
Returns TRUE if the tab dialog has a Defaults button; otherwise returns FALSE.
.PP
See also setDefaultButton(), defaultButtonPressed(), hasApplyButton(), and hasCancelButton().
-.SH "bool QTabDialog::hasHelpButton () const"
+.SH "bool TQTabDialog::hasHelpButton () const"
Returns TRUE if the tab dialog has a Help button; otherwise returns FALSE.
.PP
See also setHelpButton(), helpButtonPressed(), hasApplyButton(), and hasCancelButton().
-.SH "bool QTabDialog::hasOkButton () const"
+.SH "bool TQTabDialog::hasOkButton () const"
Returns TRUE if the tab dialog has an OK button; otherwise returns FALSE.
.PP
See also setOkButton(), hasApplyButton(), hasCancelButton(), and hasDefaultButton().
-.SH "void QTabDialog::helpButtonPressed ()\fC [signal]\fR"
+.SH "void TQTabDialog::helpButtonPressed ()\fC [signal]\fR"
This signal is emitted when the Help button is pressed. It could be used to present information about how to use the dialog.
.PP
See also applyButtonPressed(), cancelButtonPressed(), and setHelpButton().
-.SH "void QTabDialog::insertTab ( TQWidget * child, const TQString & label, int index = -1 )"
+.SH "void TQTabDialog::insertTab ( TQWidget * child, const TQString & label, int index = -1 )"
Inserts another tab and page to the tab view.
.PP
The new page is \fIchild\fR; the tab's label is \fIlabel\fR. Note the difference between the widget name (which you supply to widget constructors and to setTabEnabled(), for example) and the tab label. The name is internal to the program and invariant, whereas the label is shown on-screen and may vary according to language and other factors.
@@ -297,21 +297,21 @@ If \fIindex\fR is not specified, the tab is simply added. Otherwise it is insert
If you call insertTab() after show(), the screen will flicker and the user may be confused.
.PP
See also addTab().
-.SH "void QTabDialog::insertTab ( TQWidget * child, const TQIconSet & iconset, const TQString & label, int index = -1 )"
+.SH "void TQTabDialog::insertTab ( TQWidget * child, const TQIconSet & iconset, const TQString & label, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This version of the function shows the \fIiconset\fR as well as the \fIlabel\fR on the tab of \fIchild\fR.
-.SH "void QTabDialog::insertTab ( TQWidget * child, QTab * tab, int index = -1 )"
+.SH "void TQTabDialog::insertTab ( TQWidget * child, TQTab * tab, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-This is a lower-level method for inserting tabs, similar to the other insertTab() method. It is useful if you are using setTabBar() to set a QTabBar subclass with an overridden QTabBar::paint() function for a subclass of QTab.
+This is a lower-level method for inserting tabs, similar to the other insertTab() method. It is useful if you are using setTabBar() to set a TQTabBar subclass with an overridden TQTabBar::paint() function for a subclass of TQTab.
.PP
The \fIchild\fR is the widget to be placed on the new tab page. The \fItab\fR is the tab to display on the tab page -- normally this shows a label or an icon that identifies the tab page. The \fIindex\fR is the position where this tab page should be inserted.
-.SH "bool QTabDialog::isTabEnabled ( TQWidget * w ) const"
+.SH "bool TQTabDialog::isTabEnabled ( TQWidget * w ) const"
Returns TRUE if the page \fIw\fR is enabled; otherwise returns FALSE.
.PP
See also setTabEnabled() and TQWidget::enabled.
-.SH "bool QTabDialog::isTabEnabled ( const char * name ) const"
+.SH "bool TQTabDialog::isTabEnabled ( const char * name ) const"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
Returns TRUE if the page with object name \fIname\fR is enabled and FALSE if it is disabled.
@@ -319,17 +319,17 @@ Returns TRUE if the page with object name \fIname\fR is enabled and FALSE if it
If \fIname\fR is 0 or not the name of any of the pages, isTabEnabled() returns FALSE.
.PP
See also setTabEnabled() and TQWidget::enabled.
-.SH "void QTabDialog::removePage ( TQWidget * w )"
+.SH "void TQTabDialog::removePage ( TQWidget * w )"
Removes page \fIw\fR from this stack of widgets. Does not delete \fIw\fR.
.PP
-See also showPage(), QTabWidget::removePage(), and TQWidgetStack::removeWidget().
-.SH "void QTabDialog::selected ( const TQString & )\fC [signal]\fR"
+See also showPage(), TQTabWidget::removePage(), and TQWidgetStack::removeWidget().
+.SH "void TQTabDialog::selected ( const TQString & )\fC [signal]\fR"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
This signal is emitted whenever a tab is selected (raised), including during the first show().
.PP
See also raise().
-.SH "void QTabDialog::setApplyButton ( const TQString & text )"
+.SH "void TQTabDialog::setApplyButton ( const TQString & text )"
Adds an Apply button to the dialog. The button's text is set to \fItext\fR.
.PP
The Apply button should apply the current settings in the dialog box to the application while keeping the dialog visible.
@@ -339,11 +339,11 @@ When Apply is clicked, the applyButtonPressed() signal is emitted.
If \fItext\fR is a null string, no button is shown.
.PP
See also setCancelButton(), setDefaultButton(), and applyButtonPressed().
-.SH "void QTabDialog::setApplyButton ()"
+.SH "void TQTabDialog::setApplyButton ()"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Adds an Apply button to the dialog. The button's text is set to a localizable "Apply".
-.SH "void QTabDialog::setCancelButton ( const TQString & text )"
+.SH "void TQTabDialog::setCancelButton ( const TQString & text )"
Adds a Cancel button to the dialog. The button's text is set to \fItext\fR.
.PP
The cancel button should always return the application to the state it was in before the tab view popped up, or if the user has clicked Apply, back to the state immediately after the last Apply.
@@ -353,11 +353,11 @@ When Cancel is clicked, the cancelButtonPressed() signal is emitted. The dialog
If \fItext\fR is a null string, no button is shown.
.PP
See also setApplyButton(), setDefaultButton(), and cancelButtonPressed().
-.SH "void QTabDialog::setCancelButton ()"
+.SH "void TQTabDialog::setCancelButton ()"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Adds a Cancel button to the dialog. The button's text is set to a localizable "Cancel".
-.SH "void QTabDialog::setDefaultButton ( const TQString & text )"
+.SH "void TQTabDialog::setDefaultButton ( const TQString & text )"
Adds a Defaults button to the dialog. The button's text is set to \fItext\fR.
.PP
The Defaults button should set the dialog (but not the application) back to the application defaults.
@@ -367,17 +367,17 @@ When Defaults is clicked, the defaultButtonPressed() signal is emitted.
If \fItext\fR is a null string, no button is shown.
.PP
See also setApplyButton(), setCancelButton(), and defaultButtonPressed().
-.SH "void QTabDialog::setDefaultButton ()"
+.SH "void TQTabDialog::setDefaultButton ()"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Adds a Defaults button to the dialog. The button's text is set to a localizable "Defaults".
-.SH "void QTabDialog::setFont ( const TQFont & font )\fC [virtual]\fR"
+.SH "void TQTabDialog::setFont ( const TQFont & font )\fC [virtual]\fR"
Sets the font for the tabs to \fIfont\fR.
.PP
If the widget is visible, the display is updated with the new font immediately. There may be some geometry changes, depending on the size of the old and new fonts.
.PP
Reimplemented from TQWidget.
-.SH "void QTabDialog::setHelpButton ( const TQString & text )"
+.SH "void TQTabDialog::setHelpButton ( const TQString & text )"
Adds a Help button to the dialog. The button's text is set to \fItext\fR.
.PP
When Help is clicked, the helpButtonPressed() signal is emitted.
@@ -385,11 +385,11 @@ When Help is clicked, the helpButtonPressed() signal is emitted.
If \fItext\fR is a null string, no button is shown.
.PP
See also setApplyButton(), setCancelButton(), and helpButtonPressed().
-.SH "void QTabDialog::setHelpButton ()"
+.SH "void TQTabDialog::setHelpButton ()"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Adds a Help button to the dialog. The button's text is set to a localizable "Help".
-.SH "void QTabDialog::setOkButton ( const TQString & text )"
+.SH "void TQTabDialog::setOkButton ( const TQString & text )"
Adds an OK button to the dialog and sets the button's text to \fItext\fR.
.PP
When the OK button is clicked, the applyButtonPressed() signal is emitted, and the current settings in the dialog box should be applied to the application. The dialog then closes.
@@ -397,49 +397,49 @@ When the OK button is clicked, the applyButtonPressed() signal is emitted, and t
If \fItext\fR is a null string, no button is shown.
.PP
See also setCancelButton(), setDefaultButton(), and applyButtonPressed().
-.SH "void QTabDialog::setOkButton ()"
+.SH "void TQTabDialog::setOkButton ()"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Adds an OK button to the dialog. The button's text is set to a localizable "OK".
-.SH "void QTabDialog::setTabBar ( QTabBar * tb )\fC [protected]\fR"
-Replaces the QTabBar heading the dialog by the given tab bar, \fItb\fR. Note that this must be called \fIbefore\fR any tabs have been added, or the behavior is undefined.
+.SH "void TQTabDialog::setTabBar ( TQTabBar * tb )\fC [protected]\fR"
+Replaces the TQTabBar heading the dialog by the given tab bar, \fItb\fR. Note that this must be called \fIbefore\fR any tabs have been added, or the behavior is undefined.
.PP
See also tabBar().
-.SH "void QTabDialog::setTabEnabled ( TQWidget * w, bool enable )"
+.SH "void TQTabDialog::setTabEnabled ( TQWidget * w, bool enable )"
If \fIenable\fR is TRUE the page \fIw\fR is enabled; otherwise \fIw\fR is disabled. The page's tab is redrawn appropriately.
.PP
-QTabWidget uses TQWidget::setEnabled() internally, rather than keeping a separate flag.
+TQTabWidget uses TQWidget::setEnabled() internally, rather than keeping a separate flag.
.PP
-Note that even a disabled tab and tab page may be visible. If the page is already visible QTabWidget will not hide it; if all the pages are disabled QTabWidget will show one of them.
+Note that even a disabled tab and tab page may be visible. If the page is already visible TQTabWidget will not hide it; if all the pages are disabled TQTabWidget will show one of them.
.PP
See also isTabEnabled() and TQWidget::enabled.
-.SH "void QTabDialog::setTabEnabled ( const char * name, bool enable )"
+.SH "void TQTabDialog::setTabEnabled ( const char * name, bool enable )"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
Finds the page with object name \fIname\fR, enables/disables it according to the value of \fIenable\fR and redraws the page's tab appropriately.
.PP
-QTabDialog uses TQWidget::setEnabled() internally, rather than keeping a separate flag.
+TQTabDialog uses TQWidget::setEnabled() internally, rather than keeping a separate flag.
.PP
-Note that even a disabled tab/page may be visible. If the page is already visible QTabDialog will not hide it; if all the pages are disabled QTabDialog will show one of them.
+Note that even a disabled tab/page may be visible. If the page is already visible TQTabDialog will not hide it; if all the pages are disabled TQTabDialog will show one of them.
.PP
The object name is used (rather than the tab label) because the tab text may not be invariant in multi-language applications.
.PP
See also isTabEnabled() and TQWidget::enabled.
-.SH "void QTabDialog::showPage ( TQWidget * w )"
+.SH "void TQTabDialog::showPage ( TQWidget * w )"
Ensures that widget \fIw\fR is shown. This is mainly useful for accelerators.
.PP
\fBWarning:\fR If used carelessly, this function can easily surprise or confuse the user.
.PP
-See also QTabBar::currentTab.
-.SH "QTabBar * QTabDialog::tabBar () const\fC [protected]\fR"
-Returns the currently set QTabBar.
+See also TQTabBar::currentTab.
+.SH "TQTabBar * TQTabDialog::tabBar () const\fC [protected]\fR"
+Returns the currently set TQTabBar.
.PP
See also setTabBar().
-.SH "TQString QTabDialog::tabLabel ( TQWidget * w )"
+.SH "TQString TQTabDialog::tabLabel ( TQWidget * w )"
Returns the text in the tab for page \fIw\fR.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqtabdialog.html
+.BR http://doc.trolltech.com/tqtabdialog.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the