Multi diag tools
|
Container for a chain of proxy models based on QAbstractProxyModel. More...
#include <ProxyModelContainer.h>
Public Member Functions | |
ProxyModelContainer ()=default | |
Constructor. | |
void | setSourceModel (QAbstractItemModel *model) |
Set source model. More... | |
QAbstractItemModel * | sourceModel () const |
Get source model. More... | |
QAbstractItemModel * | modelForView () const |
Get model for the view. More... | |
void | appendProxyModel (QAbstractProxyModel *model) |
Add a proxy model to the end. More... | |
void | prependProxyModel (QAbstractProxyModel *model) |
Add a proxy model to the begin. More... | |
QAbstractProxyModel * | firstProxyModel () const |
Get first proxy model. More... | |
QAbstractProxyModel * | lastProxyModel () const |
Get last proxy model. More... | |
int | proxyModelCount () const |
Get count of proxy models. | |
QAbstractProxyModel * | proxyModelAt (int index) const |
Get proxy model at index. More... | |
int | indexOfProxyModel (QAbstractProxyModel *model) const |
Get the index of the proxy model. More... | |
template<typename T > | |
bool | containsProxyModelOfType () const |
Check if a proxy model of type T exists in this container. | |
template<typename T > | |
int | indexOfFirstProxyModelOfType () const |
Get the index of the first proxy model that is of type T. More... | |
template<typename T > | |
QAbstractProxyModel * | firstProxyModelOfType () const |
Get the first proxy model that is of type T. More... | |
void | removeProxyModel (QAbstractProxyModel *model) |
Remove a proxy model. More... | |
void | deleteProxyModel (QAbstractProxyModel *model) |
Delete a proxy model. More... | |
void | removeProxyModelAt (int index) |
Remove proxy model at index. More... | |
void | deleteProxyModelAt (int index) |
Delete proxy model at index. More... | |
template<typename T > | |
void | removeFirstProxyModelOfType () |
Remove the first proxy model of type T. More... | |
template<typename T > | |
void | deleteFirstProxyModelOfType () |
Delete the first proxy model of type T. More... | |
Container for a chain of proxy models based on QAbstractProxyModel.
The common way to use a proxy model between a source model and a view looks like:
To insert a format model, we could do:
If we have to handle a chain of proxy models, and be able to insert or remove proxy models, ProxyModelContainer can be helpful.
Above example could look like:
If we have to access proxy models frquently, for example to change some setup, it can be helpful to create a custom container.
Here is a example how this could be done:
ProxyModelContainer does not own any model, source model and all proxy models will not be deleted when the container is destroyed. It is recommanded to use the QObject mechanism to handle lifetime of models (passing a parent to each one).
Definition at line 122 of file ProxyModelContainer.h.
void Mdt::ItemModel::ProxyModelContainer::appendProxyModel | ( | QAbstractProxyModel * | model | ) |
Add a proxy model to the end.
Definition at line 37 of file ProxyModelContainer.cpp.
|
inline |
Delete the first proxy model of type T.
Will remove and delete the proxy model.
Will do nothing if not proxy model of type T exists in this container.
Definition at line 330 of file ProxyModelContainer.h.
void Mdt::ItemModel::ProxyModelContainer::deleteProxyModel | ( | QAbstractProxyModel * | model | ) |
Delete a proxy model.
Will remove and delete proxy model referenced by model. Does nothing if model does not exists in this container.
Definition at line 73 of file ProxyModelContainer.cpp.
void Mdt::ItemModel::ProxyModelContainer::deleteProxyModelAt | ( | int | index | ) |
Delete proxy model at index.
Will remove and delete the proxy model at index.
Definition at line 96 of file ProxyModelContainer.cpp.
|
inline |
Get first proxy model.
The first proxy model is the nearest of the source model.
Definition at line 186 of file ProxyModelContainer.h.
|
inline |
Get the first proxy model that is of type T.
Definition at line 266 of file ProxyModelContainer.h.
|
inline |
Get the index of the first proxy model that is of type T.
Definition at line 248 of file ProxyModelContainer.h.
|
inline |
Get the index of the proxy model.
Definition at line 226 of file ProxyModelContainer.h.
|
inline |
Get last proxy model.
The last proxy model is the nearest of the view.
Definition at line 198 of file ProxyModelContainer.h.
|
inline |
Get model for the view.
If at least 1 proxy model exists int this container, this method returns lastProxyModel(), else it returns sourceModel().
Definition at line 160 of file ProxyModelContainer.h.
void Mdt::ItemModel::ProxyModelContainer::prependProxyModel | ( | QAbstractProxyModel * | model | ) |
Add a proxy model to the begin.
Definition at line 51 of file ProxyModelContainer.cpp.
|
inline |
Get proxy model at index.
Definition at line 215 of file ProxyModelContainer.h.
|
inline |
Remove the first proxy model of type T.
Note that the model is only removed from this container, but not deleted.
Will do nothing if not proxy model of type T exists in this container.
Definition at line 315 of file ProxyModelContainer.h.
void Mdt::ItemModel::ProxyModelContainer::removeProxyModel | ( | QAbstractProxyModel * | model | ) |
Remove a proxy model.
Will remove proxy model referenced by model. Does nothing if model does not exists in this container.
Definition at line 64 of file ProxyModelContainer.cpp.
void Mdt::ItemModel::ProxyModelContainer::removeProxyModelAt | ( | int | index | ) |
Remove proxy model at index.
Note that the model is only removed from this container, but not deleted.
Definition at line 82 of file ProxyModelContainer.cpp.
void Mdt::ItemModel::ProxyModelContainer::setSourceModel | ( | QAbstractItemModel * | model | ) |
Set source model.
Definition at line 27 of file ProxyModelContainer.cpp.
|
inline |
Get source model.
Returns a nullptr until a model was set.
Definition at line 149 of file ProxyModelContainer.h.