summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqsqleditorfactory.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-28 10:17:01 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-28 10:17:01 +0900
commit5fffa30386502b5423e45c2ed5e6af756b11c7b4 (patch)
treefa17e10b048e8e13433b861cbe98cf895b2324c7 /doc/man/man3/tqsqleditorfactory.3qt
parent04913ce7a46fd027856e83a96205fdc388742a19 (diff)
downloadtqt3-5fffa30386502b5423e45c2ed5e6af756b11c7b4.tar.gz
tqt3-5fffa30386502b5423e45c2ed5e6af756b11c7b4.zip
Rename nt* sql related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqsqleditorfactory.3qt')
-rw-r--r--doc/man/man3/tqsqleditorfactory.3qt44
1 files changed, 22 insertions, 22 deletions
diff --git a/doc/man/man3/tqsqleditorfactory.3qt b/doc/man/man3/tqsqleditorfactory.3qt
index 272e4f7b1..3e3093b0e 100644
--- a/doc/man/man3/tqsqleditorfactory.3qt
+++ b/doc/man/man3/tqsqleditorfactory.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QSqlEditorFactory 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQSqlEditorFactory 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,11 +7,11 @@
.ad l
.nh
.SH NAME
-QSqlEditorFactory \- Used to create the editors used by QDataTable and QSqlForm
+TQSqlEditorFactory \- Used to create the editors used by TQDataTable and TQSqlForm
.SH SYNOPSIS
-\fC#include <ntqsqleditorfactory.h>\fR
+\fC#include <tqsqleditorfactory.h>\fR
.PP
-Inherits QEditorFactory.
+Inherits TQEditorFactory.
.PP
.SS "Public Members"
.in +1c
@@ -19,56 +19,56 @@ Inherits QEditorFactory.
.BI "\fBQSqlEditorFactory\fR ( TQObject * parent = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fB~QSqlEditorFactory\fR ()"
+.BI "\fB~TQSqlEditorFactory\fR ()"
.br
.ti -1c
.BI "virtual TQWidget * \fBcreateEditor\fR ( TQWidget * parent, const QVariant & variant )"
.br
.ti -1c
-.BI "virtual TQWidget * \fBcreateEditor\fR ( TQWidget * parent, const QSqlField * field )"
+.BI "virtual TQWidget * \fBcreateEditor\fR ( TQWidget * parent, const TQSqlField * field )"
.br
.in -1c
.SS "Static Public Members"
.in +1c
.ti -1c
-.BI "QSqlEditorFactory * \fBdefaultFactory\fR ()"
+.BI "TQSqlEditorFactory * \fBdefaultFactory\fR ()"
.br
.ti -1c
-.BI "void \fBinstallDefaultFactory\fR ( QSqlEditorFactory * factory )"
+.BI "void \fBinstallDefaultFactory\fR ( TQSqlEditorFactory * factory )"
.br
.in -1c
.SH DESCRIPTION
-The QSqlEditorFactory class is used to create the editors used by QDataTable and QSqlForm.
+The TQSqlEditorFactory class is used to create the editors used by TQDataTable and TQSqlForm.
.PP
-QSqlEditorFactory is used by QDataTable and QSqlForm to automatically create appropriate editors for a given QSqlField. For example if the field is a QVariant::String a QLineEdit would be the default editor, whereas a QVariant::Int's default editor would be a QSpinBox.
+TQSqlEditorFactory is used by TQDataTable and TQSqlForm to automatically create appropriate editors for a given TQSqlField. For example if the field is a QVariant::String a QLineEdit would be the default editor, whereas a QVariant::Int's default editor would be a QSpinBox.
.PP
-If you want to create different editors for fields with the same data type, subclass QSqlEditorFactory and reimplement the createEditor() function.
+If you want to create different editors for fields with the same data type, subclass TQSqlEditorFactory and reimplement the createEditor() function.
.PP
-See also QDataTable, QSqlForm, and Database Classes.
+See also TQDataTable, TQSqlForm, and Database Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QSqlEditorFactory::QSqlEditorFactory ( TQObject * parent = 0, const char * name = 0 )"
+.SH "TQSqlEditorFactory::TQSqlEditorFactory ( TQObject * parent = 0, const char * name = 0 )"
Constructs a SQL editor factory with parent \fIparent\fR, called \fIname\fR.
-.SH "QSqlEditorFactory::~QSqlEditorFactory ()"
+.SH "TQSqlEditorFactory::~TQSqlEditorFactory ()"
Destroys the object and frees any allocated resources.
-.SH "TQWidget * QSqlEditorFactory::createEditor ( TQWidget * parent, const QVariant & variant )\fC [virtual]\fR"
+.SH "TQWidget * TQSqlEditorFactory::createEditor ( TQWidget * parent, const QVariant & variant )\fC [virtual]\fR"
Creates and returns the appropriate editor widget for the QVariant \fIvariant\fR.
.PP
The widget that is returned has the parent \fIparent\fR (which may be zero). If \fIvariant\fR is invalid, 0 is returned.
.PP
-Reimplemented from QEditorFactory.
-.SH "TQWidget * QSqlEditorFactory::createEditor ( TQWidget * parent, const QSqlField * field )\fC [virtual]\fR"
+Reimplemented from TQEditorFactory.
+.SH "TQWidget * TQSqlEditorFactory::createEditor ( TQWidget * parent, const TQSqlField * field )\fC [virtual]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Creates and returns the appropriate editor for the QSqlField \fIfield\fR.
-.SH "QSqlEditorFactory * QSqlEditorFactory::defaultFactory ()\fC [static]\fR"
+Creates and returns the appropriate editor for the TQSqlField \fIfield\fR.
+.SH "TQSqlEditorFactory * TQSqlEditorFactory::defaultFactory ()\fC [static]\fR"
Returns an instance of a default editor factory.
-.SH "void QSqlEditorFactory::installDefaultFactory ( QSqlEditorFactory * factory )\fC [static]\fR"
+.SH "void TQSqlEditorFactory::installDefaultFactory ( TQSqlEditorFactory * factory )\fC [static]\fR"
Replaces the default editor factory with \fIfactory\fR. All
-QDataTable and QSqlForm instantiations will use this new factory
+TQDataTable and TQSqlForm instantiations will use this new factory
for creating field editors. \fIQSqlEditorFactory takes ownership of &#92;a factory, and destroys it when it is no longer needed.\fR
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqsqleditorfactory.html
+.BR http://doc.trolltech.com/tqsqleditorfactory.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the