Multi diag tools
Public Member Functions | List of all members
Mdt::ItemModel::PrimaryKeyProxyModel Class Reference

Hold informations about a primary key of a item model. More...

#include <PrimaryKeyProxyModel.h>

+ Inheritance diagram for Mdt::ItemModel::PrimaryKeyProxyModel:
+ Collaboration diagram for Mdt::ItemModel::PrimaryKeyProxyModel:

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...
 
- Public Member Functions inherited from Mdt::ItemModel::PkFkProxyModelBase
 PkFkProxyModelBase (QObject *parent=nullptr)
 Constructor.
 

Additional Inherited Members

- Protected Member Functions inherited from Mdt::ItemModel::PkFkProxyModelBase
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...
 

Detailed Description

Hold informations about a primary key of a item model.

Example of usage:

QTableView view;
auto *model = new MyModel(&view);
auto *proxyModel = new PrimaryKeyProxyModel(&view);
proxyModel->setSourceModel(model);
proxyModel->setPrimaryKey({1,2});
proxyModel->setPrimaryKeyEditable(false);
view.setModel(proxyModel);

Definition at line 47 of file PrimaryKeyProxyModel.h.

Member Function Documentation

int Mdt::ItemModel::PrimaryKeyProxyModel::findRowForPrimaryKeyRecord ( const PrimaryKeyRecord record) const

Find row that matches primary key record.

Returns the row that matches, otherwise -1

Precondition
record must contain the same count of columns than primary key

Definition at line 91 of file PrimaryKeyProxyModel.cpp.

PrimaryKeyRecord Mdt::ItemModel::PrimaryKeyProxyModel::getPrimaryKeyRecord ( int  row) const

Get primary key record for row.

Precondition
row must be in correct range ( 0 <= row < rowCount() )

Definition at line 83 of file PrimaryKeyProxyModel.cpp.

void Mdt::ItemModel::PrimaryKeyProxyModel::setPrimaryKey ( const PrimaryKey pk)

Set primary key.

Precondition
pk must not be null

Definition at line 30 of file PrimaryKeyProxyModel.cpp.

void Mdt::ItemModel::PrimaryKeyProxyModel::setPrimaryKey ( std::initializer_list< int >  pk)

Set primary key.

Precondition
Each column in pk must be >= 0
Each column in pk must be unique

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.


The documentation for this class was generated from the following files: