📄 qdatatable.3qt
字号:
.BI "int \fBnumCols\fR - the number of columns in the table \fI(read " "only" ")\fR".br.ti -1c.BI "int \fBnumRows\fR - the number of rows in the table \fI(read " "only" ")\fR".br.ti -1c.BI "QStringList \fBsort\fR - the data table's sort".br.ti -1c.BI "QString \fBtrueText\fR - the text used to represent true values".br.in -1c.SS "Protected Members".in +1c.ti -1c.BI "virtual bool \fBinsertCurrent\fR ()".br.ti -1c.BI "virtual bool \fBupdateCurrent\fR ()".br.ti -1c.BI "virtual bool \fBdeleteCurrent\fR ()".br.ti -1c.BI "virtual QSql::Confirm \fBconfirmEdit\fR ( QSql::Op m )".br.ti -1c.BI "virtual QSql::Confirm \fBconfirmCancel\fR ( QSql::Op m )".br.ti -1c.BI "virtual void \fBhandleError\fR ( const QSqlError & e )".br.ti -1c.BI "virtual bool \fBbeginInsert\fR ()".br.ti -1c.BI "virtual QWidget * \fBbeginUpdate\fR ( int row, int col, bool replace )".br.ti -1c.BI "int \fBindexOf\fR ( uint i ) const".br.ti -1c.BI "void \fBreset\fR ()".br.ti -1c.BI "void \fBsetSize\fR ( QSqlCursor * sql )".br.ti -1c.BI "virtual void \fBpaintField\fR ( QPainter * p, const QSqlField * field, const QRect & cr, bool selected )".br.ti -1c.BI "virtual int \fBfieldAlignment\fR ( const QSqlField * field )".br.in -1c.SH DESCRIPTIONThe QDataTable class provides a flexible SQL table widget that supports browsing and editing..PPQDataTable supports various functions for presenting and editing SQL data from a QSqlCursor in a table..PPIf you want a to present your data in a form use QDataBrowser, or for read-only forms, QDataView..PPWhen displaying data, QDataTable only retrieves data for visible rows. If the driver supports the 'query size' property the QDataTable will have the correct number of rows and the vertical scrollbar will accurately reflect the number of rows displayed in proportion to the number of rows in the dataset. If the driver does not support the 'query size' property, rows are dynamically fetched from the database on an as-needed basis with the scrollbar becoming more accurate as the user scrolls down through the records. This allows extremely large queries to be displayed as quickly as possible, with minimum memory usage..PPQDataTable inherits QTable's API and extends it with functions to sort and filter the data and sort columns. See setSqlCursor(), setFilter(), setSort(), setSorting(), sortColumn() and refresh()..PPWhen displaying editable cursors, cell editing will be enabled. (For more information on editable cursors, see QSqlCursor). QDataTable can be used to modify existing data and to add new records. When a user makes changes to a field in the table, the cursor's edit buffer is used. The table will not send changes in the edit buffer to the database until the user moves to a different record in the grid or presses Enter. Cell editing is initiated by pressing F2 (or right clicking and then clicking the appropriate popup menu item) and cancelled by pressing Esc. If there is a problem updating or adding data, errors are handled automatically (see handleError() to change this behavior). Note that if autoEdit() is FALSE navigating to another record will cancel the insert or update..PPThe user can be asked to confirm all edits with setConfirmEdits(). For more precise control use setConfirmInsert(), setConfirmUpdate(), setConfirmDelete() and setConfirmCancels(). Use setAutoEdit() to control the behaviour of the table when the user edits a record and then navigates. (Note that setAutoDelete() is unrelated; it is used to set whether the QSqlCursor is deleted when the table is deleted.).PPSince the data table can perform edits, it must be able to uniquely identify every record so that edits are correctly applied. Because of this the underlying cursor must have a valid primary index to ensure that a unique record is inserted, updated or deleted within the database otherwise the database may be changed to an inconsistent state..PPQDataTable creates editors using the default QSqlEditorFactory. Different editor factories can be used by calling installEditorFactory(). A property map is used to map between the cell's value and the editor. You can use your own property map with installPropertyMap()..PPThe contents of a cell is available as a QString with text() or as a QVariant with value(). The current record is returned by currentRecord(). Use the find() function to search for a string in the table..PPEditing actions can be applied programatically. For example, the insertCurrent() function reads the fields from the current record into the cursor and performs the insert. The updateCurrent() and deleteCurrent() functions perform similarly to update and delete the current record respectively..PPColumns in the table can be created automatically based on the cursor (see setSqlCursor()). Columns can be manipulated manually using addColumn(), removeColumn() and setColumn()..PPThe table automatically copies many of the properties of the cursor to format the display of data within cells (alignment, visibility, etc.). The cursor can be changed with setSqlCursor(). The filter (see setFilter()) and sort defined within the table are used instead of the filter and sort set on the cursor. For sorting options see setSort(), sortColumn(), sortAscending() and sortDescending()..PPThe text used to represent NULL, TRUE and FALSE values can be changed with setNullText(), setTrueText() and setFalseText() respectively. You can change the appearance of cells by reimplementing paintField()..PPWhenever a new row is selected in the table the currentChanged() signal is emitted. The primeInsert() signal is emitted when an insert is initiated. The primeUpdate() and primeDelete() signals are emitted when update and deletion are initiated respectively. Just before the database is updated a signal is emitted; beforeInsert(), beforeUpdate() or beforeDelete() as appropriate..PPSee also Database Classes..SS "Member Type Documentation".SH "QDataTable::Refresh"This enum describes the refresh options..TP\fCQDataTable::RefreshData\fR - refresh the data, i.e. read it from the database.TP\fCQDataTable::RefreshColumns\fR - refresh the list of fields, e.g. the column headings.TP\fCQDataTable::RefreshAll\fR - refresh both the data and the list of fields.SH MEMBER FUNCTION DOCUMENTATION.SH "QDataTable::QDataTable ( QWidget * parent = 0, const char * name = 0 )"Constructs a data table which is a child of \fIparent\fR, called name \fIname\fR..SH "QDataTable::QDataTable ( QSqlCursor * cursor, bool autoPopulate = FALSE, QWidget * parent = 0, const char * name = 0 )"Constructs a data table which is a child of \fIparent\fR, called name \fIname\fR using the cursor \fIcursor\fR..PPIf \fIautoPopulate\fR is TRUE (the default is FALSE), columns are automatically created based upon the fields in the \fIcursor\fR record. Note that \fIautoPopulate\fR only governs the creation of columns; to load the cursor's data into the table use refresh()..PPIf the \fIcursor\fR is read-only, the table also becomes read-only. In addition, the table adopts the cursor's driver's definition for representing NULL values as strings..SH "QDataTable::~QDataTable ()"Destroys the object and frees any allocated resources..SH "void QDataTable::addColumn ( const QString & fieldName, const QString & label = QString::null, int width = -1, const QIconSet & iconset = QIconSet ( ) )\fC [virtual]\fR"Adds the next column to be displayed using the field \fIfieldName\fR, column label \fIlabel\fR, width \fIwidth\fR and iconset \fIiconset\fR..PPIf \fIlabel\fR is specified, it is used as the column's header label, otherwise the field's display label is used when setSqlCursor() is called. The \fIiconset\fR is used to set the icon used by the column header; by default there is no icon..PPSee also setSqlCursor() and refresh()..PPExamples:.)l sql/overview/subclass1/main.cpp, sql/overview/subclass3/main.cpp, sql/overview/table2/main.cpp, and sql/sqltable/main.cpp..SH "void QDataTable::adjustColumn ( int col )\fC [virtual slot]\fR"Resizes column \fIcol\fR so that the column width is wide enough to display the widest item the column contains (including the column label). If the table's QSqlCursor is not currently active, the cursor will be refreshed before the column width is calculated. Be aware that this function may be slow on tables that contain large result sets..PPReimplemented from QTable..SH "bool QDataTable::autoDelete () const"Returns TRUE if the table will automatically delete the cursor specified by setSqlCursor(); otherwise returns FALSE..SH "bool QDataTable::autoEdit () const"Returns TRUE if the data table automatically applies edits; otherwise returns FALSE. See the "autoEdit" property for details..SH "void QDataTable::beforeDelete ( QSqlRecord * buf )\fC [signal]\fR"This signal is emitted just before the currently selected record is deleted from the database. The \fIbuf\fR parameter points to the edit buffer being deleted. Connect to this signal to, for example, copy some of the fields for later use..SH "void QDataTable::beforeInsert ( QSqlRecord * buf )\fC [signal]\fR"This signal is emitted just before the cursor's edit buffer is inserted into the database. The \fIbuf\fR parameter points to the edit buffer being inserted. Connect to this signal to, for example, populate a key field with a unique sequence number..SH "void QDataTable::beforeUpdate ( QSqlRecord * buf )\fC [signal]\fR"This signal is emitted just before the cursor's edit buffer is updated in the database. The \fIbuf\fR parameter points to the edit buffer being updated. Connect to this signal when you want to transform the user's data behind-the-scenes..SH "bool QDataTable::beginInsert ()\fC [virtual protected]\fR"Protected virtual function called when editing is about to begin on a new record. If the table is read-only, or if there's no cursor or the cursor does not allow inserts, nothing happens..PPEditing takes place using the cursor's edit buffer(see QSqlCursor::editBuffer())..PPWhen editing begins, a new row is created in the table marked with an asterisk '*' in the row's vertical header column, i.e. at the left of the row..SH "QWidget * QDataTable::beginUpdate ( int row, int col, bool replace )\fC [virtual protected]\fR"Protected virtual function called when editing is about to begin on an existing row. If the table is read-only, or if there's no cursor, nothing happens..PPEditing takes place using the cursor's edit buffer (see QSqlCursor::editBuffer())..PP\fIrow\fR and \fIcol\fR refer to the row and column in the QDataTable..PP(\fIreplace\fR is provided for reimplementors and reflects the API of QTable::beginEdit().).SH "QSql::Confirm QDataTable::confirmCancel ( QSql::Op m )\fC [virtual protected]\fR"Protected virtual function which returns a confirmation for cancelling an edit mode of \fIm\fR. Derived classes can reimplement this function to provide their own cancel dialog. The default implementation uses a message box which prompts the user to confirm the cancel..SH "bool QDataTable::confirmCancels () const"Returns TRUE if the data table confirms cancel operations; otherwise returns FALSE. See the "confirmCancels" property for details..SH "bool QDataTable::confirmDelete () const"Returns TRUE if the data table confirms delete operations; otherwise returns FALSE. See the "confirmDelete" property for details..SH "QSql::Confirm QDataTable::confirmEdit ( QSql::Op m )\fC [virtual protected]\fR"Protected virtual function which returns a confirmation for an edit of mode \fIm\fR. Derived classes can reimplement this function to provide their own confirmation dialog. The default implementation uses a message box which prompts the user to confirm the edit action..SH "bool QDataTable::confirmEdits () const"Returns TRUE if the data table confirms edit operations; otherwise returns FALSE. See the "confirmEdits" property for details..SH "bool QDataTable::confirmInsert () const"Returns TRUE if the data table confirms insert operations; otherwise returns FALSE. See the "confirmInsert" property for details..SH "bool QDataTable::confirmUpdate () const"Returns TRUE if the data table confirms update operations; otherwise returns FALSE. See the "confirmUpdate" property for details..SH "void QDataTable::currentChanged ( QSqlRecord * record )\fC [signal]\fR"This signal is emitted whenever a new row is selected in the table. The \fIrecord\fR parameter points to the contents of the newly selected record..SH "QSqlRecord * QDataTable::currentRecord () const"Returns the currently selected record, or 0 if there is no current selection. The table owns the pointer, so do \fInot\fR delete it or otherwise modify it or the cursor it points to..SH "void QDataTable::cursorChanged ( QSql::Op mode )\fC [signal]\fR"This signal is emitted whenever the cursor record was changed due to an edit. The \fImode\fR parameter is the type of edit that just took place..SH "DateFormat QDataTable::dateFormat () const"Returns the format used for displaying date/time values. See the "dateFormat" property for details..SH "bool QDataTable::deleteCurrent ()\fC [virtual protected]\fR"For an editable table, issues a delete on the current cursor's primary index using the values of the currently selected row. If there is no current cursor or there is no current selection, nothing happens. If confirmEdits() or confirmDelete() is TRUE, confirmEdit() is called to confirm the delete. Returns TRUE if the delete succeeded; otherwise FALSE..PPThe underlying cursor must have a valid primary index to ensure that a unique record is deleted within the database otherwise the database may be changed to an inconsistent state..SH "QString QDataTable::falseText () const"Returns the text used to represent false values. See the "falseText" property for details..SH "int QDataTable::fieldAlignment ( const QSqlField * field )\fC [virtual protected]\fR"Returns the alignment for \fIfield\fR..SH "QString QDataTable::filter () const"Returns the data filter for the data table. See the "filter" property for details..SH "void QDataTable::find ( const QString & str, bool caseSensitive, bool backwards )\fC [virtual slot]\fR"Searches the current cursor for a cell containing the string \fIstr\fR starting at the current cell and working forwards (or backwards if \fIbackwards\fR is TRUE). If the string is found, the cell containing the string is set as the current cell. If \fIcaseSensitive\fR is FALSE the case of \fIstr\fR will be ignored..PPThe search will wrap, i.e. if the first (or if backwards is TRUE, last) cell is reached without finding \fIstr\fR the search will continue until it reaches the starting cell. If \fIstr\fR is not found the search will fail and the current cell will remain unchanged..SH "void QDataTable::handleError ( const QSqlError & e )\fC [virtual protected]\fR"Protected virtual function which is called when an error \fIe\fR has occurred on the current cursor(). The default implementation displays a warning message to the user with information about the error..SH "int QDataTable::indexOf ( uint i ) const\fC [protected]\fR"Returns the index of the field within the current SQL query that is displayed in column \fIi\fR..SH "bool QDataTable::insertCurrent ()\fC [virtual protected]\fR"For an editable table, issues an insert on the current cursor using the values in the cursor's edit buffer. If there is no current cursor or there is no current "insert" row, nothing happens. If confirmEdits() or confirmInsert() is TRUE, confirmEdit() is called to confirm the insert. Returns TRUE if the insert succeeded; otherwise returns FALSE..PPThe underlying cursor must have a valid primary index to ensure that a unique record is inserted within the database otherwise the database may be changed to an inconsistent state..SH "void QDataTable::installEditorFactory ( QSqlEditorFactory * f )"Installs a new SQL editor factory \fIf\fR. This enables the user to create and instantiate their own editors for use in cell editing. Note that QDataTable takes ownership of this pointer, and will delete it when it is no longer needed or when installEditorFactory() is called again..PPSee also QSqlEditorFactory..SH "void QDataTable::installPropertyMap ( QSqlPropertyMap * m )"Installs a new property map \fIm\fR. This enables the user to create and instantiate their own property maps for use in cell editing. Note that QDataTable takes ownership of this pointer, and will delete it when it is no longer needed or when installPropertMap() is called again..PPSee also QSqlPropertyMap..SH "QString QDataTable::nullText () const"Returns the text used to represent NULL values. See the "nullText" property for details..SH "int QDataTable::numCols () const\fC [virtual]\fR"Returns the number of columns in the table. See the "numCols" property for details..PPReimplemented from QTable..SH "int QDataTable::numRows () const\fC [virtual]\fR"Returns the number of rows in the table. See the "numRows" property for details..PPReimplemented from QTable..SH "void QDataTable::paintField ( QPainter * p, const QSqlField * field, const QRect & cr, bool selected )\fC [virtual protected]\fR"Paints the \fIfield\fR on the painter \fIp\fR. The painter has already been translated to the appropriate cell's origin where the \fIfield\fR is to be rendered. \fIcr\fR describes the cell coordinates in the content coordinate system. The \fIselected\fR parameter is ignored..PPIf you want to draw custom field content you must reimplement paintField() to do the custom drawing. The default implementation renders the \fIfield\fR value as text. If the field is NULL, nullText() is displayed in the cell. If the field is Boolean, trueText() or falseText() is displayed as appropriate..PPExample: sql/overview/table4/main.cpp..SH "void QDataTable::primeDelete ( QSqlRecord * buf )\fC [signal]\fR"This signal is emitted after the cursor is primed for delete by the table, when a delete action is beginning on the table. The \fIbuf\fR parameter points to the edit buffer being deleted. Connect to this signal in order to, for example, record auditing information on deletions..SH "void QDataTable::primeInsert ( QSqlRecord * buf )\fC [signal]\fR"This signal is emitted after the cursor is primed for insert by the table, when an insert action is beginning on the table. The \fIbuf\fR parameter points to the edit buffer being inserted. Connect to this signal in order to, for example, prime the record buffer with default data values..SH "void QDataTable::primeUpdate ( QSqlRecord * buf )\fC [signal]\fR"This signal is emitted after the cursor is primed for update by the table, when an update action is beginning on the table. The \fIbuf\fR parameter points to the edit buffer being updated. Connect to this signal in order to, for example, provide some visual feedback that the user is in 'edit mode'..SH "void QDataTable::refresh ()\fC [virtual slot]\fR"Refreshes the table. The cursor is refreshed using the current filter, the current sort, and the currently defined columns. Equivalent to calling refresh( QDataTable::RefreshData )..PPExamples:.)l sql/overview/subclass1/main.cpp, sql/overview/table1/main.cpp, sql/overview/table2/main.cpp, and sql/sqltable/main.cpp..SH "void QDataTable::refresh ( Refresh mode )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPRefreshes the table. If there is no currently defined cursor (see setSqlCursor()), nothing happens. The \fImode\fR parameter determines which type of refresh will take place..PPSee also Refresh, setSqlCursor(), and addColumn()..SH "void QDataTable::removeColumn ( uint col )\fC [virtual]\fR"Removes column \fIcol\fR from the list of columns to be displayed. If \fIcol\fR does not exist, nothing happens..PPSee also QSqlField..SH "void QDataTable::reset ()\fC [protected]\fR"Resets the table so that it displays no data.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -