Multi diag tools
|
Hold informations about a primary key of a item model. More...
#include <PrimaryKeyProxyModel.h>
Public Member Functions | |
PrimaryKeyProxyModel (QObject *parent=nullptr) | |
Constructor. | |
void | setPrimaryKey (const PrimaryKey &pk) |
Set primary key. More... | |
void | setPrimaryKey (std::initializer_list< int > pk) |
Set primary key. More... | |
void | clearPrimaryKey () |
Clear primary key. | |
PrimaryKey | primaryKey () const |
Get primary key. | |
void | setPrimaryKeyEditable (bool editable) |
Set primary key editable. More... | |
bool | isPrimaryKeyEditable () const |
Check if primary is editable. | |
void | setPrimaryKeyItemsEnabled (bool enable) |
Set primary key items enabled. More... | |
bool | isPrimaryKeyItemsEnabled () const |
Check if primary key items are enabled. | |
Qt::ItemFlags | flags (const QModelIndex &index) const override |
Get item flags for given index. | |
PrimaryKeyRecord | getPrimaryKeyRecord (int row) const |
Get primary key record for row. More... | |
int | findRowForPrimaryKeyRecord (const PrimaryKeyRecord &record) const |
Find row that matches primary key record. More... | |
![]() | |
PkFkProxyModelBase (QObject *parent=nullptr) | |
Constructor. | |
Additional Inherited Members | |
![]() | |
KeyRecord | getKeyRecord (int row, const ColumnList &key) const |
Get key record for row. More... | |
int | findFirstRowForKeyRecord (const KeyRecord &record) const |
Find first row that matches key record. More... | |
Hold informations about a primary key of a item model.
Example of usage:
Definition at line 47 of file PrimaryKeyProxyModel.h.
int Mdt::ItemModel::PrimaryKeyProxyModel::findRowForPrimaryKeyRecord | ( | const PrimaryKeyRecord & | record | ) | const |
Find row that matches primary key record.
Returns the row that matches, otherwise -1
Definition at line 91 of file PrimaryKeyProxyModel.cpp.
PrimaryKeyRecord Mdt::ItemModel::PrimaryKeyProxyModel::getPrimaryKeyRecord | ( | int | row | ) | const |
Get primary key record for row.
Definition at line 83 of file PrimaryKeyProxyModel.cpp.
void Mdt::ItemModel::PrimaryKeyProxyModel::setPrimaryKey | ( | const PrimaryKey & | pk | ) |
Set primary key.
Definition at line 30 of file PrimaryKeyProxyModel.cpp.
void Mdt::ItemModel::PrimaryKeyProxyModel::setPrimaryKey | ( | std::initializer_list< int > | pk | ) |
Set primary key.
Definition at line 37 of file PrimaryKeyProxyModel.cpp.
void Mdt::ItemModel::PrimaryKeyProxyModel::setPrimaryKeyEditable | ( | bool | editable | ) |
Set primary key editable.
By default, primary key is editable
Definition at line 52 of file PrimaryKeyProxyModel.cpp.
void Mdt::ItemModel::PrimaryKeyProxyModel::setPrimaryKeyItemsEnabled | ( | bool | enable | ) |
Set primary key items enabled.
By default, primary key items are enabled.
Definition at line 57 of file PrimaryKeyProxyModel.cpp.