summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdialog.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqdialog.3qt')
-rw-r--r--doc/man/man3/tqdialog.3qt70
1 files changed, 35 insertions, 35 deletions
diff --git a/doc/man/man3/tqdialog.3qt b/doc/man/man3/tqdialog.3qt
index fcef22e76..311cfbb59 100644
--- a/doc/man/man3/tqdialog.3qt
+++ b/doc/man/man3/tqdialog.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QDialog 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQDialog 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,9 +7,9 @@
.ad l
.nh
.SH NAME
-QDialog \- The base class of dialog windows
+TQDialog \- The base class of dialog windows
.SH SYNOPSIS
-\fC#include <ntqdialog.h>\fR
+\fC#include <tqdialog.h>\fR
.PP
Inherits TQWidget.
.PP
@@ -18,10 +18,10 @@ Inherited by TQColorDialog, QErrorMessage, TQFileDialog, TQFontDialog, QInputDia
.SS "Public Members"
.in +1c
.ti -1c
-.BI "explicit \fBQDialog\fR ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )"
+.BI "explicit \fBTQDialog\fR ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )"
.br
.ti -1c
-.BI "\fB~QDialog\fR ()"
+.BI "\fB~TQDialog\fR ()"
.br
.ti -1c
.BI "enum \fBDialogCode\fR { Rejected, Accepted }"
@@ -94,11 +94,11 @@ Inherited by TQColorDialog, QErrorMessage, TQFileDialog, TQFontDialog, QInputDia
.br
.in -1c
.SH DESCRIPTION
-The QDialog class is the base class of dialog windows.
+The TQDialog class is the base class of dialog windows.
.PP
-A dialog window is a top-level window mostly used for short-term tasks and brief communications with the user. QDialogs may be modal or modeless. QDialogs support extensibility and can provide a return value. They can have default buttons. QDialogs can also have a TQSizeGrip in their lower-right corner, using setSizeGripEnabled().
+A dialog window is a top-level window mostly used for short-term tasks and brief communications with the user. TQDialogs may be modal or modeless. TQDialogs support extensibility and can provide a return value. They can have default buttons. TQDialogs can also have a TQSizeGrip in their lower-right corner, using setSizeGripEnabled().
.PP
-Note that QDialog uses the parent widget slightly differently from other classes in Qt. A dialog is always a top-level widget, but if it has a parent, its default location is centered on top of the parent's top-level widget (if it is not top-level itself). It will also share the parent's taskbar entry.
+Note that TQDialog uses the parent widget slightly differently from other classes in Qt. A dialog is always a top-level widget, but if it has a parent, its default location is centered on top of the parent's top-level widget (if it is not top-level itself). It will also share the parent's taskbar entry.
.SH "Modal Dialogs"
A \fBmodal\fR dialog is a dialog that blocks input to other visible windows in the same application. Users must finish interacting with the dialog and close it before they can access any other window in the application. Dialogs that are used to request a file name from the user or that are used to set application preferences are usually modal.
.PP
@@ -110,9 +110,9 @@ A \fBmodeless\fR dialog is a dialog that operates independently of other windows
.PP
Modeless dialogs are displayed using show(), which returns control to the caller immediately.
.SH "Default button"
-A dialog's \fIdefault\fR button is the button that's pressed when the user presses Enter (Return). This button is used to signify that the user accepts the dialog's settings and wants to close the dialog. Use QPushButton::setDefault(), QPushButton::isDefault() and QPushButton::autoDefault() to set and control the dialog's default button.
+A dialog's \fIdefault\fR button is the button that's pressed when the user presses Enter (Return). This button is used to signify that the user accepts the dialog's settings and wants to close the dialog. Use TQPushButton::setDefault(), TQPushButton::isDefault() and TQPushButton::autoDefault() to set and control the dialog's default button.
.SH "Escape Key"
-If the user presses the Esc key in a dialog, QDialog::reject() will be called. This will cause the window to close: the closeEvent cannot be ignored.
+If the user presses the Esc key in a dialog, TQDialog::reject() will be called. This will cause the window to close: the closeEvent cannot be ignored.
.SH "Extensibility"
Extensibility is the ability to show the dialog in two ways: a partial dialog that shows the most commonly used options, and a full dialog that shows all the options. Typically an extensible dialog will initially appear as a partial dialog, but with a" More" toggle button. If the user presses the "More" button down, the full dialog will appear. The extension widget will be resized to its sizeHint(). If orientation is Horizontal the extension widget's height() will be expanded to the height() of the dialog. If the orientation is Vertical the extension widget's width() will be expanded to the width() of the dialog. Extensibility is controlled with setExtension(), setOrientation() and showExtension().
.SH "Return value (modal dialogs)"
@@ -132,7 +132,7 @@ A modal dialog.
.br
TQString result;
.br
- if ( dlg->exec() == QDialog::Accepted ) {
+ if ( dlg->exec() == TQDialog::Accepted ) {
.br
result = dlg->selectedFile();
.br
@@ -181,15 +181,15 @@ A modeless dialog. After the show() call, control returns to the main event loop
.PP
See also QTabDialog, TQWidget, QProgressDialog, GUI Design Handbook: Dialogs, Standard, Abstract Widget Classes, and Dialog Classes.
.SS "Member Type Documentation"
-.SH "QDialog::DialogCode"
+.SH "TQDialog::DialogCode"
The value returned by a modal dialog.
.TP
-\fCQDialog::Accepted\fR
+\fCTQDialog::Accepted\fR
.TP
-\fCQDialog::Rejected\fR
+\fCTQDialog::Rejected\fR
.PP
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "explicit QDialog::QDialog ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )"
+.SH "explicit TQDialog::TQDialog ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )"
Constructs a dialog called \fIname\fR, with parent \fIparent\fR.
.PP
A dialog is always a top-level widget, but if it has a parent, its default location is centered on top of the parent. It will also share the parent's taskbar entry.
@@ -199,22 +199,22 @@ The widget flags \fIf\fR are passed on to the TQWidget constructor. If, for exam
\fBWarning:\fR In TQt 3.2, the \fImodal\fR flag is obsolete. There is now a setModal() function that can be used for obtaining a modal behavior when calling show(). This is rarely needed, because modal dialogs are usually invoked using exec(), which ignores the \fImodal\fR flag.
.PP
See also TQWidget::setWFlags() and TQt::WidgetFlags.
-.SH "QDialog::~QDialog ()"
-Destroys the QDialog, deleting all its children.
-.SH "void QDialog::accept ()\fC [virtual protected slot]\fR"
+.SH "TQDialog::~TQDialog ()"
+Destroys the TQDialog, deleting all its children.
+.SH "void TQDialog::accept ()\fC [virtual protected slot]\fR"
Hides the modal dialog and sets the result code to Accepted.
.PP
See also reject() and done().
.PP
Examples:
.)l chart/setdataform.cpp and distributor/distributor.ui.h.
-.SH "void QDialog::done ( int r )\fC [virtual protected slot]\fR"
+.SH "void TQDialog::done ( int r )\fC [virtual protected slot]\fR"
Closes the dialog and sets its result code to \fIr\fR. If this dialog is shown with exec(), done() causes the local event loop to finish, and exec() to return \fIr\fR.
.PP
As with TQWidget::close(), done() deletes the dialog if the WDestructiveClose flag is set. If the dialog is the application's main widget, the application terminates. If the dialog is the last window closed, the QApplication::lastWindowClosed() signal is emitted.
.PP
See also accept(), reject(), QApplication::mainWidget(), and QApplication::quit().
-.SH "int QDialog::exec ()\fC [slot]\fR"
+.SH "int TQDialog::exec ()\fC [slot]\fR"
Shows the dialog as a modal dialog, blocking until the user closes it. The function returns a DialogCode result.
.PP
Users cannot interact with any other window in the same application until they close the dialog.
@@ -223,43 +223,43 @@ See also show() and result().
.PP
Examples:
.)l chart/chartform.cpp, dialog/mainwindow.cpp, i18n/main.cpp, network/ftpclient/ftpmainwindow.ui.h, network/networkprotocol/view.cpp, tqdir/tqdir.cpp, and wizard/main.cpp.
-.SH "TQWidget * QDialog::extension () const"
+.SH "TQWidget * TQDialog::extension () const"
Returns the dialog's extension or 0 if no extension has been defined.
.PP
See also setExtension().
-.SH "bool QDialog::isModal () const"
+.SH "bool TQDialog::isModal () const"
Returns TRUE if show() should pop up the dialog as modal or modeless; otherwise returns FALSE. See the "modal" property for details.
-.SH "bool QDialog::isSizeGripEnabled () const"
+.SH "bool TQDialog::isSizeGripEnabled () const"
Returns TRUE if the size grip is enabled; otherwise returns FALSE. See the "sizeGripEnabled" property for details.
-.SH "Orientation QDialog::orientation () const"
+.SH "Orientation TQDialog::orientation () const"
Returns the dialog's extension orientation.
.PP
See also setOrientation().
-.SH "void QDialog::reject ()\fC [virtual protected slot]\fR"
+.SH "void TQDialog::reject ()\fC [virtual protected slot]\fR"
Hides the modal dialog and sets the result code to Rejected.
.PP
See also accept() and done().
-.SH "int QDialog::result () const"
+.SH "int TQDialog::result () const"
Returns the modal dialog's result code, Accepted or Rejected.
.PP
Do not call this function if the dialog was constructed with the WDestructiveClose flag.
-.SH "void QDialog::setExtension ( TQWidget * extension )"
+.SH "void TQDialog::setExtension ( TQWidget * extension )"
Sets the widget, \fIextension\fR, to be the dialog's extension, deleting any previous extension. The dialog takes ownership of the extension. Note that if 0 is passed any existing extension will be deleted.
.PP
This function must only be called while the dialog is hidden.
.PP
See also showExtension(), setOrientation(), and extension().
-.SH "void QDialog::setModal ( bool modal )"
+.SH "void TQDialog::setModal ( bool modal )"
Sets whether show() should pop up the dialog as modal or modeless to \fImodal\fR. See the "modal" property for details.
-.SH "void QDialog::setOrientation ( Orientation orientation )"
+.SH "void TQDialog::setOrientation ( Orientation orientation )"
If \fIorientation\fR is Horizontal, the extension will be displayed to the right of the dialog's main area. If \fIorientation\fR is Vertical, the extension will be displayed below the dialog's main area.
.PP
See also orientation() and setExtension().
-.SH "void QDialog::setResult ( int i )\fC [protected]\fR"
+.SH "void TQDialog::setResult ( int i )\fC [protected]\fR"
Sets the modal dialog's result code to \fIi\fR.
-.SH "void QDialog::setSizeGripEnabled ( bool )"
+.SH "void TQDialog::setSizeGripEnabled ( bool )"
Sets whether the size grip is enabled. See the "sizeGripEnabled" property for details.
-.SH "void QDialog::show ()\fC [virtual]\fR"
+.SH "void TQDialog::show ()\fC [virtual]\fR"
Shows the dialog as a modeless dialog. Control returns immediately to the calling code.
.PP
The dialog will be modal or modeless according to the value of the modal property.
@@ -270,10 +270,10 @@ Examples:
.)l movies/main.cpp, regexptester/main.cpp, showimg/showimg.cpp, and sql/overview/form1/main.cpp.
.PP
Reimplemented from TQWidget.
-.SH "void QDialog::showExtension ( bool showIt )\fC [protected slot]\fR"
+.SH "void TQDialog::showExtension ( bool showIt )\fC [protected slot]\fR"
If \fIshowIt\fR is TRUE, the dialog's extension is shown; otherwise the extension is hidden.
.PP
-This slot is usually connected to the QButton::toggled() signal of a QPushButton.
+This slot is usually connected to the QButton::toggled() signal of a TQPushButton.
.PP
A dialog with a visible extension is not resizeable.
.PP
@@ -297,7 +297,7 @@ A TQSizeGrip is placed in the bottom right corner of the dialog when this proper
Set this property's value with setSizeGripEnabled() and get this property's value with isSizeGripEnabled().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqdialog.html
+.BR http://doc.trolltech.com/tqdialog.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the