1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
'\" t
.TH QSqlPropertyMap 3qt "18 March 2002" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2001 Trolltech AS. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
.\"
.ad l
.nh
.SH NAME
QSqlPropertyMap \- Used to map widgets to SQL fields
.SH SYNOPSIS
\fC#include <qsqlpropertymap.h>\fR
.PP
.SS "Public Members"
.in +1c
.ti -1c
.BI "\fBQSqlPropertyMap\fR ()"
.br
.ti -1c
.BI "virtual \fB~QSqlPropertyMap\fR ()"
.br
.ti -1c
.BI "QVariant \fBproperty\fR ( QWidget * widget )"
.br
.ti -1c
.BI "virtual void \fBsetProperty\fR ( QWidget * widget, const QVariant & value )"
.br
.ti -1c
.BI "void \fBinsert\fR ( const QString & classname, const QString & property )"
.br
.ti -1c
.BI "void \fBremove\fR ( const QString & classname )"
.br
.in -1c
.SS "Static Public Members"
.in +1c
.ti -1c
.BI "QSqlPropertyMap * \fBdefaultMap\fR ()"
.br
.ti -1c
.BI "void \fBinstallDefaultMap\fR ( QSqlPropertyMap * map )"
.br
.in -1c
.SH DESCRIPTION
The QSqlPropertyMap class is used to map widgets to SQL fields.
.PP
The SQL module uses Qt object properties to insert and extract values from editor widgets.
.PP
This class is used to map editors to SQL fields. This works by associating SQL editor class names to the properties used to insert and extract values to/from the editor.
.PP
For example, a QLineEdit can be used to edit text strings and other data types in QDataTables or QSqlForms. Several properties are defined in QLineEdit, but only the \fItext\fR property is used to insert and extract text from a QLineEdit. Both QDataTable and QSqlForm use the global QSqlPropertyMap for inserting and extracting values to and from an editor widget. The global property map defines several common widgets and properties that are suitable for many applications. You can add and remove widget properties to suit your specific needs.
.PP
If you want to use custom editors with your QDataTable or QSqlForm, you have to install your own QSqlPropertyMap for that table or form. Example:
.PP
.nf
.br
QSqlPropertyMap *myMap = new QSqlPropertyMap();
.br
QSqlForm *myForm = new QSqlForm( this );
.br
MyEditor myEditor( this );
.br
.br
// Set the QSqlForm's record buffer to the update buffer of
.br
// a pre-existing QSqlCursor called 'cur'.
.br
myForm->setRecord( cur->primeUpdate() );
.br
.br
// Install the customized map
.br
myMap->insert( "MyEditor", "content" );
.br
myForm->installPropertyMap( myMap ); // myForm now owns myMap
.br
...
.br
// Insert a field into the form that uses a myEditor to edit the
.br
// field 'somefield'
.br
myForm->insert( &myEditor, "somefield" );
.br
.br
// Update myEditor with the value from the mapped database field
.br
myForm->readFields();
.br
...
.br
// Let the user edit the form
.br
...
.br
// Update the database fields with the values in the form
.br
myForm->writeFields();
.br
...
.br
.fi
.PP
You can also replace the global QSqlPropertyMap that is used by default. (Bear in mind that QSqlPropertyMap takes ownership of the new default map.)
.PP
.nf
.br
QSqlPropertyMap *myMap = new QSqlPropertyMap;
.br
.br
myMap->insert( "MyEditor", "content" );
.br
QSqlPropertyMap::installDefaultMap( myMap );
.br
...
.br
.fi
.PP
See also QDataTable, QSqlForm, QSqlEditorFactory and Database Classes.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QSqlPropertyMap::QSqlPropertyMap ()"
Constructs a QSqlPropertyMap.
.PP
The default property mappings used by Qt widgets are:
.TP
QButton -- text
.TP
QCheckBox -- checked
.TP
QComboBox -- currentItem
.TP
QDateEdit -- date
.TP
QDateTimeEdit -- dateTime
.TP
QDial -- value
.TP
QLabel -- text
.TP
QLCDNumber -- value
.TP
QLineEdit -- text
.TP
QListBox -- currentItem
.TP
QMultiLineEdit -- text
.TP
QPushButton -- text
.TP
QRadioButton -- text
.TP
QScrollBar -- value
.TP
QSlider -- value
.TP
QSpinBox -- value
.TP
QTextBrowser -- source
.TP
QTextEdit -- text
.TP
QTextView -- text
.TP
QTimeEdit -- time
.SH "QSqlPropertyMap::~QSqlPropertyMap ()\fC [virtual]\fR"
Destroys the QSqlPropertyMap.
.PP
Note that if the QSqlPropertyMap is installed with installPropertyMap() the object it was installed into, e.g. the QSqlForm, takes ownership and will delete the QSqlPropertyMap when necessary.
.SH "QSqlPropertyMap * QSqlPropertyMap::defaultMap ()\fC [static]\fR"
Returns the application global QSqlPropertyMap.
.SH "void QSqlPropertyMap::insert ( const QString & classname, const QString & property )"
Insert a new classname/property pair, which is used for custom SQL field editors. There \fImust\fR be a Q_PROPERTY clause in the \fIclassname\fR class declaration for the \fIproperty\fR.
.PP
Example: sql/overview/custom1/main.cpp.
.SH "void QSqlPropertyMap::installDefaultMap ( QSqlPropertyMap * map )\fC [static]\fR"
Replaces the global default property map with \fImap\fR. All QDataTable and QSqlForm instantiations will use this new map for inserting and extracting values to and from editors. \fIQSqlPropertyMap takes ownership of \fImap\fR, and destroys it when it is no longer needed. \fR
.SH "QVariant QSqlPropertyMap::property ( QWidget * widget )"
Returns the mapped property of \fIwidget\fR as a QVariant.
.SH "void QSqlPropertyMap::remove ( const QString & classname )"
Removes \fIclassname\fR from the map.
.SH "void QSqlPropertyMap::setProperty ( QWidget * widget, const QVariant & value )\fC [virtual]\fR"
Sets the property of \fIwidget\fR to \fIvalue\fR.
.PP
.SH "SEE ALSO"
.BR http://doc.trolltech.com/qsqlpropertymap.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2001 Trolltech AS, 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 Qt documentation is provided in HTML format; it is
located at $QTDIR/doc/html and can be read using Qt 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 (qsqlpropertymap.3qt) and the Qt
version (3.0.3).
|