Wt
4.11.1
|
An abstract model for use with Wt's view classes. More...
#include <Wt/WAbstractItemModel.h>
Public Types | |
typedef std::map< ItemDataRole, cpp17::any > | DataMap |
Data map. More... | |
Public Types inherited from Wt::WObject | |
typedef void(WObject::* | Method) () |
Typedef for a WObject method without arguments. | |
Public Member Functions | |
WAbstractItemModel () | |
Creates a new data model. | |
virtual int | columnCount (const WModelIndex &parent=WModelIndex()) const =0 |
Returns the number of columns. More... | |
virtual int | rowCount (const WModelIndex &parent=WModelIndex()) const =0 |
Returns the number of rows. More... | |
virtual WFlags< ItemFlag > | flags (const WModelIndex &index) const |
Returns the flags for an item. More... | |
virtual WFlags< HeaderFlag > | headerFlags (int section, Orientation orientation=Orientation::Horizontal) const |
Returns the flags for a header. More... | |
virtual bool | hasChildren (const WModelIndex &index) const |
Returns if there are children at an index. More... | |
virtual WModelIndex | parent (const WModelIndex &index) const =0 |
Returns the parent for a model index. More... | |
virtual cpp17::any | data (const WModelIndex &index, ItemDataRole role=ItemDataRole::Display) const =0 |
Returns data at a specified model index for the given role. More... | |
virtual DataMap | itemData (const WModelIndex &index) const |
Returns all data at a specific index. More... | |
virtual cpp17::any | headerData (int section, Orientation orientation=Orientation::Horizontal, ItemDataRole role=ItemDataRole::Display) const |
Returns the row or column header data. More... | |
virtual WModelIndex | index (int row, int column, const WModelIndex &parent=WModelIndex()) const =0 |
Returns the child index for the given row and column. More... | |
virtual WModelIndexList | match (const WModelIndex &start, ItemDataRole role, const cpp17::any &value, int hits=-1, WFlags< MatchFlag > flags=WFlags< MatchFlag >(MatchFlag::StartsWith|MatchFlag::Wrap)) const |
Returns an index list for data items that match. More... | |
cpp17::any | data (int row, int column, ItemDataRole role=ItemDataRole::Display, const WModelIndex &parent=WModelIndex()) const |
Returns the data item at the given column and row. More... | |
virtual bool | hasIndex (int row, int column, const WModelIndex &parent=WModelIndex()) const |
Returns if an index at the given position is valid (i.e. falls within the column-row bounds). More... | |
virtual bool | insertColumns (int column, int count, const WModelIndex &parent=WModelIndex()) |
Inserts one or more columns. More... | |
virtual bool | insertRows (int row, int count, const WModelIndex &parent=WModelIndex()) |
Inserts one or more rows. More... | |
virtual bool | removeColumns (int column, int count, const WModelIndex &parent=WModelIndex()) |
Removes columns. More... | |
virtual bool | removeRows (int row, int count, const WModelIndex &parent=WModelIndex()) |
Removes rows. More... | |
virtual bool | setData (const WModelIndex &index, const cpp17::any &value, ItemDataRole role=ItemDataRole::Edit) |
Sets data at the given model index. More... | |
virtual bool | setItemData (const WModelIndex &index, const DataMap &values) |
Sets data at the given model index. More... | |
virtual bool | setHeaderData (int section, Orientation orientation, const cpp17::any &value, ItemDataRole role=ItemDataRole::Edit) |
Sets header data for a column or row. More... | |
bool | setHeaderData (int section, const cpp17::any &value) |
Sets column header data. More... | |
virtual void | sort (int column, SortOrder order=SortOrder::Ascending) |
Sorts the model according to a particular column. More... | |
virtual void | expandColumn (int column) |
Expands a column. More... | |
virtual void | collapseColumn (int column) |
Collapses a column. More... | |
virtual void * | toRawIndex (const WModelIndex &index) const |
Converts a model index to a raw pointer that remains valid while the model's layout is changed. More... | |
virtual WModelIndex | fromRawIndex (void *rawIndex) const |
Converts a raw pointer to a model index. More... | |
virtual std::string | mimeType () const |
Returns a mime-type for dragging a set of indexes. More... | |
virtual std::vector< std::string > | acceptDropMimeTypes () const |
Returns a list of mime-types that could be accepted for a drop event. More... | |
virtual void | dropEvent (const WDropEvent &e, DropAction action, int row, int column, const WModelIndex &parent) |
Handles a drop event. More... | |
virtual void | dropEvent (const WDropEvent &e, DropAction action, const WModelIndex &index, Wt::Side side) |
Handles a drop event. More... | |
bool | insertColumn (int column, const WModelIndex &parent=WModelIndex()) |
Inserts one column. More... | |
bool | insertRow (int row, const WModelIndex &parent=WModelIndex()) |
Inserts one row. More... | |
bool | removeColumn (int column, const WModelIndex &parent=WModelIndex()) |
Removes one column. More... | |
bool | removeRow (int row, const WModelIndex &parent=WModelIndex()) |
Removes one row. More... | |
bool | setData (int row, int column, const cpp17::any &value, ItemDataRole role=ItemDataRole::Edit, const WModelIndex &parent=WModelIndex()) |
Sets data at the given row and column. More... | |
virtual Signal< WModelIndex, int, int > & | columnsAboutToBeInserted () |
Signal emitted before a number of columns will be inserted. More... | |
virtual Signal< WModelIndex, int, int > & | columnsAboutToBeRemoved () |
Signal emitted before a number of columns will be removed. More... | |
virtual Signal< WModelIndex, int, int > & | columnsInserted () |
Signal emitted after a number of columns were inserted. More... | |
virtual Signal< WModelIndex, int, int > & | columnsRemoved () |
Signal emitted after a number of columns were removed. More... | |
virtual Signal< WModelIndex, int, int > & | rowsAboutToBeInserted () |
Signal emitted before a number of rows will be inserted. More... | |
virtual Signal< WModelIndex, int, int > & | rowsAboutToBeRemoved () |
Signal emitted before a number of rows will be removed. More... | |
virtual Signal< WModelIndex, int, int > & | rowsInserted () |
Signal emitted after a number of rows were inserted. More... | |
virtual Signal< WModelIndex, int, int > & | rowsRemoved () |
Signal emitted after a number of rows were removed. More... | |
virtual Signal< WModelIndex, WModelIndex > & | dataChanged () |
Signal emitted when some data was changed. More... | |
virtual Signal< Orientation, int, int > & | headerDataChanged () |
Signal emitted when some header data was changed. More... | |
virtual Signal & | layoutAboutToBeChanged () |
Signal emitted when the layout is about to be changed. More... | |
virtual Signal & | layoutChanged () |
Signal emitted when the layout is changed. More... | |
virtual Signal & | modelReset () |
Signal emitted when the model was reset. More... | |
Public Member Functions inherited from Wt::WObject | |
void | addChild (std::unique_ptr< WObject > child) |
Add a child WObject whose lifetime is determined by this WObject. | |
template<typename Child > | |
Child * | addChild (std::unique_ptr< Child > child) |
Add a child WObject, returning a raw pointer. More... | |
std::unique_ptr< WObject > | removeChild (WObject *child) |
Remove a child WObject, so its lifetime is no longer determined by this WObject. | |
template<typename Child > | |
std::unique_ptr< Child > | removeChild (Child *child) |
Remove a child WObject, so its lifetime is no longer determined by this WObject. More... | |
virtual const std::string | id () const |
Returns the (unique) identifier for this object. More... | |
virtual void | setObjectName (const std::string &name) |
Sets an object name. More... | |
virtual std::string | objectName () const |
Returns the object name. More... | |
void | resetLearnedSlots () |
Resets learned stateless slot implementations. More... | |
template<class T > | |
void | resetLearnedSlot (void(T::*method)()) |
Resets a learned stateless slot implementation. More... | |
template<class T > | |
WStatelessSlot * | implementStateless (void(T::*method)()) |
Declares a slot to be stateless and learn client-side behaviour on first invocation. More... | |
template<class T > | |
WStatelessSlot * | implementStateless (void(T::*method)(), void(T::*undoMethod)()) |
Declares a slot to be stateless and learn client-side behaviour in advance. More... | |
void | isNotStateless () |
Marks the current function as not stateless. More... | |
template<class T > | |
WStatelessSlot * | implementJavaScript (void(T::*method)(), const std::string &jsCode) |
Provides a JavaScript implementation for a method. More... | |
Public Member Functions inherited from Wt::Core::observable | |
observable () noexcept | |
Default constructor. | |
virtual | ~observable () |
Destructor. More... | |
template<typename... Args, typename C > | |
auto | bindSafe (void(C::*method)(Args...)) noexcept |
Protects a method call against object destruction. More... | |
template<typename... Args, typename C > | |
auto | bindSafe (void(C::*method)(Args...) const) const noexcept |
Protects a const method call against object destruction. More... | |
template<typename Function > | |
auto | bindSafe (const Function &function) noexcept |
Protects a function against object destruction. More... | |
Protected Member Functions | |
void | reset () |
Resets the model and invalidate any data. More... | |
WModelIndex | createIndex (int row, int column, void *ptr) const |
Creates a model index for the given row and column. More... | |
WModelIndex | createIndex (int row, int column, ::uint64_t id) const |
Creates a model index for the given row and column. More... | |
void | beginInsertColumns (const WModelIndex &parent, int first, int last) |
Method to be called before inserting columns. More... | |
void | beginInsertRows (const WModelIndex &parent, int first, int last) |
Method to be called before inserting rows. More... | |
void | beginRemoveColumns (const WModelIndex &parent, int first, int last) |
Method to be called before removing columns. More... | |
void | beginRemoveRows (const WModelIndex &parent, int first, int last) |
Method to be called before removing rows. More... | |
void | endInsertColumns () |
Method to be called after inserting columns. More... | |
void | endInsertRows () |
Method to be called after inserting rows. More... | |
void | endRemoveColumns () |
Method to be called after removing columns. More... | |
void | endRemoveRows () |
Method to be called after removing rows. More... | |
virtual void | copyData (const WModelIndex &sIndex, const WModelIndex &dIndex) |
Copy data to an index in this model. More... | |
Protected Member Functions inherited from Wt::WObject | |
virtual WStatelessSlot * | getStateless (Method method) |
On-demand stateless slot implementation. More... | |
An abstract model for use with Wt's view classes.
This abstract model is used by several Wt view widgets as data models.
It may model data for both tree-like and table-like view widgets. Data is therefore organized in a hierarchical structure of tables, where every item stores data and items in column 0 can be the parent of a nested table of data. Every data item is uniquely identified by their row, column and parent index, and items may be referenced using the helper class WModelIndex.
Each item may provide data for one or more roles, and indicate options using flags. The different roles can be used to model different aspects of an item (its text value, an icon, style class), or to hold auxiliary custom information. The flags provide information to the View on possible interactivity.
Side::Top level data have an invalid parent WModelIndex.
The data itself is of type Wt::any, which can either be empty, or hold any type of data. Depending on the role however, view classes may expect certain types of data (e.g. a string for Wt::ItemDataRole::StyleClass).
Wt's standard view classes can display (Wt::ItemDataRole::Display) the following data:
The view classes know how to interpret data of these types as a string or as a number.
Conversion between native types and Wt::any is done like this:
Conversion from v (of type Type) to Wt::any a (for setData() and setHeaderData())
Wt::any a = Wt::any(v);
For example:
WDate d(1976,6,14); model->setData(row, column, Wt::any(d));
Type v = Wt::any_cast<Type>(a);For example:
WDate d = Wt::any_cast<WDate>(model->data(row, column));
if (!a.empty()) { ... }
if (a.type() == typeid(double)) { ... }
To implement a custom model, you need to reimplement the following methods:
A crucial point in implementing a hierarchical model is to decide how to reference an index in terms of an internal pointer (WModelIndex::internalPointer()) or internal id (WModelIndex::internalId()). Other than the top-level index, which is special since it is referenced using an invalid index, every index with children must be identifiable using this number or pointer. For example, in the WStandardItemModel, the internal pointer points to the parent WStandardItem. For table models, the internal pointer plays no role, since only the toplevel index has children.
If you want to support editing of the model, then you need to indicate this support using a Wt::ItemFlag::Editable flag, and reimplement setData(). View classes will use the ItemDataRole::Edit to read and update the data for the editor.
When the model's data has been changed, the model must emit the dataChanged() signal.
Finally, there is a generic interface for insertion of new data or removal of data (changing the geometry), although this interface is not yet used by any View class:
Alternatively, you can provide your own API for changing the model. In either case it is important that you call the corresponding protected member functions which will emit the relevant signals so that views can adapt themselves to the new geometry.
typedef std::map<ItemDataRole, cpp17::any> Wt::WAbstractItemModel::DataMap |
Data map.
A map of data, indexed by a role.
|
virtual |
Returns a list of mime-types that could be accepted for a drop event.
The default implementation only accepts drag&drop support between abstract item models.
Reimplemented in Wt::WAbstractProxyModel.
|
protected |
Method to be called before inserting columns.
If your model supports insertion of columns, then you should call this method before inserting one or more columns, and endInsertColumns() afterwards. These methods emit the necessary signals to allow view classes to update themselves.
|
protected |
Method to be called before inserting rows.
If your model supports insertion of rows, then you should call this method before inserting one or more rows, and endInsertRows() afterwards. These methods emit the necessary signals to allow view classes to update themselves.
|
protected |
Method to be called before removing columns.
If your model supports removal of columns, then you should call this method before removing one or more columns, and endRemoveColumns() afterwards. These methods emit the necessary signals to allow view classes to update themselves.
|
protected |
Method to be called before removing rows.
If your model supports removal of rows, then you should call this method before removing one or more rows, and endRemoveRows() afterwards. These methods emit the necessary signals to allow view classes to update themselves.
|
virtual |
Collapses a column.
Collapses a column. This may only be called by a view when the Wt::HeaderFlag::ColumnIsExpandedLeft or Wt::HeaderFlag::ColumnIsExpandedRight flag is set.
The default implementation does nothing.
Reimplemented in Wt::WAggregateProxyModel.
|
pure virtual |
Returns the number of columns.
This returns the number of columns at index parent
.
Implemented in Wt::WSortFilterProxyModel, Wt::WReadOnlyProxyModel, Wt::WIdentityProxyModel, Wt::WBatchEditProxyModel, Wt::WAggregateProxyModel, Wt::WAbstractListModel, and Wt::Dbo::QueryModel< Result >.
|
virtual |
Signal emitted before a number of columns will be inserted.
The first argument is the parent index. The two integer arguments are the column numbers that the first and last column will have when inserted.
|
virtual |
Signal emitted before a number of columns will be removed.
The first argument is the parent index. The two integer arguments are the column numbers of the first and last column that will be removed.
|
virtual |
Signal emitted after a number of columns were inserted.
The first argument is the parent index. The two integer arguments are the column numbers of the first and last column that were inserted.
|
virtual |
Signal emitted after a number of columns were removed.
The first argument is the parent index. The two integer arguments are the column numbers of the first and last column that were removed.
|
protectedvirtual |
Copy data to an index in this model.
The source index can be any valid index. The destination index must be part of this model.
Reimplemented in Wt::WStandardItemModel.
|
protected |
Creates a model index for the given row and column.
Use this method to create a model index. id
is an internal id that may be used to identify the parent of the corresponding item. For a flat table model, ptr
can thus always be 0.
|
protected |
Creates a model index for the given row and column.
Use this method to create a model index. ptr
is an internal pointer that may be used to identify the parent of the corresponding item. For a flat table model, ptr
can thus always be 0.
|
pure virtual |
Returns data at a specified model index for the given role.
You should check the role
to decide what data to return. Usually a View class will ask for data for several roles which affect not only the contents (Wt::ItemDataRole::Display) but also icons (Wt::ItemDataRole::Decoration), URLs (Wt::ItemDataRole::Link), and other visual aspects. If your item does not specify data for a particular role, it should simply return a Wt::cpp17::any().
Implemented in Wt::WStringListModel, Wt::WBatchEditProxyModel, Wt::WAbstractProxyModel, and Wt::Dbo::QueryModel< Result >.
cpp17::any Wt::WAbstractItemModel::data | ( | int | row, |
int | column, | ||
ItemDataRole | role = ItemDataRole::Display , |
||
const WModelIndex & | parent = WModelIndex() |
||
) | const |
Returns the data item at the given column and row.
This is a convenience method, and is equivalent to:
|
virtual |
Signal emitted when some data was changed.
The two arguments are the model indexes of the top-left and bottom-right data items that span the rectangle of changed data items.
|
virtual |
Handles a drop event.
The default implementation only handles generic drag&drop between abstract item models. Source item data is copied (but not the source item's flags).
This method is overloaded for handling drop events on top of items or drop events between items. This overload handles drops between items. The drop was received relative to the index
item and the side
parameter will only be Wt::Top or Wt::Bottom.
You may want to reimplement this method if you want to handle other mime-type data, or if you want to refine how the drop event of an item selection must be interpreted.
|
virtual |
Handles a drop event.
The default implementation only handles generic drag&drop between abstract item models. Source item data is copied (but not the source item's flags).
This method is overloaded for handling drop events on top of items or drop events between items (see Wt::DropLocation). This overload handles drops on top of items, but note that due to historical reasons it will also insert the items in between when called with DropAction::Move.
The location in the model is indicated by the row
and column
within the parent
index. If row
is -1, then the item is appended to the parent
. Otherwise, the item is inserted at or copied over the indicated item (and subsequent rows). When action
is a DropAction::Move, the original items are deleted from the source model.
You may want to reimplement this method if you want to handle other mime-type data, or if you want to refine how the drop event of an item selection must be interpreted.
Reimplemented in Wt::WReadOnlyProxyModel, and Wt::WAbstractProxyModel.
|
protected |
Method to be called after inserting columns.
|
protected |
Method to be called after inserting rows.
|
protected |
Method to be called after removing columns.
|
protected |
Method to be called after removing rows.
|
virtual |
Expands a column.
Expands a column. This may only be called by a view when the Wt::HeaderFlag::ColumnIsCollapsed flag is set.
The default implementation does nothing.
Reimplemented in Wt::WAggregateProxyModel.
|
virtual |
Returns the flags for an item.
The default implementation returns ItemFlag::Selectable.
Reimplemented in Wt::WStringListModel, Wt::WBatchEditProxyModel, Wt::WAbstractProxyModel, and Wt::Dbo::QueryModel< Result >.
|
virtual |
Converts a raw pointer to a model index.
Use this method to create model index from temporary raw pointers. It is the reciproce method of toRawIndex().
You can return an invalid modelindex if the rawIndex no longer points to a valid item because of the layout change.
Reimplemented in Wt::WAbstractProxyModel, and Wt::Dbo::QueryModel< Result >.
|
virtual |
Returns if there are children at an index.
Returns true
when rowCount(index) > 0 and columnCount(index) > 0.
|
virtual |
Returns if an index at the given position is valid (i.e. falls within the column-row bounds).
Equivalent to:
|
virtual |
Returns the row or column header data.
When orientation
is Orientation::Horizontal, section
is a column number, when orientation
is Orientation::Vertical, section
is a row number.
Reimplemented in Wt::WSortFilterProxyModel, Wt::WBatchEditProxyModel, Wt::WAggregateProxyModel, Wt::WAbstractProxyModel, and Wt::Dbo::QueryModel< Result >.
|
virtual |
Signal emitted when some header data was changed.
The first argument indicates the orientation of the header, and the two integer arguments are the row or column numbers of the first and last header item of which the value was changed.
|
virtual |
Returns the flags for a header.
The default implementation returns no flags set.
Reimplemented in Wt::WSortFilterProxyModel, Wt::WAggregateProxyModel, and Wt::WAbstractProxyModel.
|
pure virtual |
Returns the child index for the given row and column.
When implementing this method, you can use createIndex() to create an index that corresponds to the item at row
and column
within parent
.
If the location is invalid (out of bounds at the parent), then an invalid index must be returned.
Implemented in Wt::WAbstractListModel, Wt::WSortFilterProxyModel, Wt::WReadOnlyProxyModel, Wt::WIdentityProxyModel, Wt::WBatchEditProxyModel, Wt::WAggregateProxyModel, and Wt::WAbstractTableModel.
bool Wt::WAbstractItemModel::insertColumn | ( | int | column, |
const WModelIndex & | parent = WModelIndex() |
||
) |
Inserts one column.
This is a convenience method that adds a single column, and is equivalent to:
Returns true
if the operation was successful.
|
virtual |
Inserts one or more columns.
In models that support column insertion, this inserts count
columns, starting at column
, and returns true
if the operation was successful. The new columns are inserted under parent
.
The default implementation returns false
.
The model implementation must call beginInsertColumns() and endInsertColumns() before and after the operation whenever its geometry is changed by inserting columns. This emits signals for views to properly react to these changes.
Reimplemented in Wt::WIdentityProxyModel, Wt::WBatchEditProxyModel, Wt::WAbstractProxyModel, and Wt::WReadOnlyProxyModel.
bool Wt::WAbstractItemModel::insertRow | ( | int | row, |
const WModelIndex & | parent = WModelIndex() |
||
) |
Inserts one row.
This is a convenience method that adds a single row, and is equivalent to:
Returns true
if the operation was successful.
|
virtual |
Inserts one or more rows.
In models that support row insertion, this inserts count
rows, starting at row
, and returns true
if the operation was successful. The new rows are inserted under parent
.
If parent had no children, then a single column is added with count
rows.
The default implementation returns false
.
The model implementation must call beginInsertRows() and endInsertRows() before and after the operation whenever its geometry is changed by inserting rows. This emits signals for views to properly react to these changes.
Reimplemented in Wt::WStringListModel, Wt::WSortFilterProxyModel, Wt::WIdentityProxyModel, Wt::WBatchEditProxyModel, and Wt::Dbo::QueryModel< Result >.
|
virtual |
Returns all data at a specific index.
This is a convenience function that returns a map with data corresponding to all standard roles.
|
virtual |
Signal emitted when the layout is about to be changed.
A layout change may reorder or add/remove rows in the model, but columns are preserved. Model indexes are invalidated by a layout change, but indexes may be ported across a layout change by using the toRawIndex() and fromRawIndex() methods.
|
virtual |
Signal emitted when the layout is changed.
|
virtual |
Returns an index list for data items that match.
Returns an index list of data items that match, starting at start, and searching further in that column. If flags specifies MatchFlag::Wrap then the search wraps around from the start. If hits is not -1, then at most that number of hits are returned.
|
virtual |
Returns a mime-type for dragging a set of indexes.
This method returns a mime-type that describes dragging of a selection of items.
The drop event will indicate a selection model for this abstract item model as source.
The default implementation returns a mime-type for generic drag&drop support between abstract item models.
Reimplemented in Wt::WAbstractProxyModel.
|
virtual |
Signal emitted when the model was reset.
A model reset invalidates all existing data, and the model may change its entire geometry (column count, row count).
|
pure virtual |
Returns the parent for a model index.
An implementation should use createIndex() to create a model index that corresponds to the parent of a given index.
Note that the index itself may be stale (referencing a row/column within the parent that is outside the model geometry), but its parent (identified by the WModelIndex::internalPointer()) is referencing an existing parent. A stale index can only be used while the model geometry is being updated, i.e. during the emission of the corresponding [rows/columns](Being)[Removed/Inserted]() signals.
Implemented in Wt::WSortFilterProxyModel, Wt::WReadOnlyProxyModel, Wt::WBatchEditProxyModel, Wt::WAggregateProxyModel, Wt::WAbstractTableModel, Wt::WAbstractListModel, and Wt::WIdentityProxyModel.
bool Wt::WAbstractItemModel::removeColumn | ( | int | column, |
const WModelIndex & | parent = WModelIndex() |
||
) |
Removes one column.
This is a convenience method that removes a single column, and is equivalent to:
Returns true
if the operation was successful.
|
virtual |
Removes columns.
Returns true
if the operation was successful.
The default implementation returns false
.
The model implementation must call beginRemoveColumns() and endRemoveColumns() before and after the operation whenever its geometry is changed by removing columns. This emits signals for views to properly react to these changes.
Reimplemented in Wt::WIdentityProxyModel, Wt::WBatchEditProxyModel, Wt::WAbstractProxyModel, and Wt::WReadOnlyProxyModel.
bool Wt::WAbstractItemModel::removeRow | ( | int | row, |
const WModelIndex & | parent = WModelIndex() |
||
) |
Removes one row.
This is a convenience method that removes a single row, and is equivalent to:
Returns true
if the operation was successful.
|
virtual |
Removes rows.
Returns true
if the operation was successful.
The default implementation returns false
.
The model implementation must call beginRemoveRows() and endRemoveRows() before and after the operation whenever its geometry is changed by removing rows. This emits signals for views to properly react to these changes.
Reimplemented in Wt::WStringListModel, Wt::WSortFilterProxyModel, Wt::WIdentityProxyModel, Wt::WBatchEditProxyModel, and Wt::Dbo::QueryModel< Result >.
|
protected |
Resets the model and invalidate any data.
Informs any attached view that all data in the model was invalidated, and the model's data should be reread.
This causes the modelReset() signal to be emitted.
|
pure virtual |
Returns the number of rows.
This returns the number of rows at index parent
.
Implemented in Wt::WStringListModel, Wt::WSortFilterProxyModel, Wt::WReadOnlyProxyModel, Wt::WIdentityProxyModel, Wt::WBatchEditProxyModel, Wt::WAggregateProxyModel, and Wt::Dbo::QueryModel< Result >.
|
virtual |
Signal emitted before a number of rows will be inserted.
The first argument is the parent index. The two integer arguments are the row numbers that the first and last row will have when inserted.
|
virtual |
Signal emitted before a number of rows will be removed.
The first argument is the parent index. The two integer arguments are the row numbers of the first and last row that will be removed.
|
virtual |
Signal emitted after a number of rows were inserted.
The first argument is the parent index. The two integer arguments are the row numbers of the first and last row that were inserted.
|
virtual |
Signal emitted after a number of rows were removed.
The first argument is the parent index. The two integer arguments are the row numbers of the first and last row that were removed.
|
virtual |
Sets data at the given model index.
Returns true
if the operation was successful.
The default implementation returns false
.
The model implementation must emit the dataChanged() signal after data was changed.
Reimplemented in Wt::WStringListModel, Wt::WReadOnlyProxyModel, Wt::WBatchEditProxyModel, Wt::WAbstractProxyModel, and Wt::Dbo::QueryModel< Result >.
bool Wt::WAbstractItemModel::setData | ( | int | row, |
int | column, | ||
const cpp17::any & | value, | ||
ItemDataRole | role = ItemDataRole::Edit , |
||
const WModelIndex & | parent = WModelIndex() |
||
) |
Sets data at the given row and column.
This is a convience method, and is equivalent to:
Returns true
if the operation was successful.
bool Wt::WAbstractItemModel::setHeaderData | ( | int | section, |
const cpp17::any & | value | ||
) |
Sets column header data.
Returns true
if the operation was successful.
|
virtual |
Sets header data for a column or row.
Returns true
if the operation was successful.
Reimplemented in Wt::WSortFilterProxyModel, Wt::WReadOnlyProxyModel, Wt::WIdentityProxyModel, Wt::WAggregateProxyModel, and Wt::Dbo::QueryModel< Result >.
|
virtual |
Sets data at the given model index.
This is a convenience function that sets data for all roles at once.
Reimplemented in Wt::WReadOnlyProxyModel, and Wt::WAbstractProxyModel.
|
virtual |
Sorts the model according to a particular column.
If the model supports sorting, then it should emit the layoutAboutToBeChanged() signal, rearrange its items, and afterwards emit the layoutChanged() signal.
Reimplemented in Wt::WStringListModel, Wt::WStandardItemModel, Wt::WSortFilterProxyModel, Wt::WBatchEditProxyModel, Wt::WAggregateProxyModel, and Wt::Dbo::QueryModel< Result >.
|
virtual |
Converts a model index to a raw pointer that remains valid while the model's layout is changed.
Use this method to temporarily save model indexes while the model's layout is changed by for example a sorting operation.
The default implementation returns 0
, which indicates that the index cannot be converted to a raw pointer. If you reimplement this method, you also need to reimplemnt fromRawIndex().
Reimplemented in Wt::WAbstractProxyModel, and Wt::Dbo::QueryModel< Result >.