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

Stores formats for certain row, column and index in a item model. More...

#include <FormatMap.h>

Public Member Functions

 FormatMap ()
 Construct a format map.
 
void setPriority (const std::array< FormatMapPriority, 3 > &priority)
 Set priority when format conflics. More...
 
template<typename T >
void setFormatForIndex (int row, int column, const T &format)
 Set format for given row and column. More...
 
void clearFormatForIndex (int row, int column)
 Clear format for given row and column. More...
 
template<typename T >
void setFormatForRow (int row, const T &format)
 Set format for given row. More...
 
void clearFormatForRow (int row)
 Clear format for given row. More...
 
template<typename T >
void setFormatForColumn (int column, const T &format)
 Set format for given column. More...
 
void clearFormatForColumn (int column)
 Clear format for given column. More...
 
QVariant formatForIndex (int row, int column) const
 Get format for given row and column. More...
 

Detailed Description

Stores formats for certain row, column and index in a item model.

Definition at line 43 of file FormatMap.h.

Member Function Documentation

void Mdt::ItemModel::FormatMap::clearFormatForColumn ( int  column)

Clear format for given column.

Does nothing if no format was set for column .

Precondition
column must be >= 0

Definition at line 51 of file FormatMap.cpp.

void Mdt::ItemModel::FormatMap::clearFormatForIndex ( int  row,
int  column 
)

Clear format for given row and column.

Does nothing if no format was set for row and column .

Precondition
row must be >= 0
column must be >= 0

Definition at line 36 of file FormatMap.cpp.

void Mdt::ItemModel::FormatMap::clearFormatForRow ( int  row)

Clear format for given row.

Does nothing if no format was set for row .

Precondition
row must be >= 0

Definition at line 44 of file FormatMap.cpp.

QVariant Mdt::ItemModel::FormatMap::formatForIndex ( int  row,
int  column 
) const

Get format for given row and column.

Returns a QVariant with value of type passed in setFormatForRow() , setFormatForColumn() or setFormatForIndex() , if a format was set for row and column, otherwise a null QVariant.

Precondition
row must be >= 0
column must be >= 0

Definition at line 59 of file FormatMap.cpp.

template<typename T >
void Mdt::ItemModel::FormatMap::setFormatForColumn ( int  column,
const T &  format 
)
inline

Set format for given column.

Precondition
column must be >= 0

Definition at line 111 of file FormatMap.h.

template<typename T >
void Mdt::ItemModel::FormatMap::setFormatForIndex ( int  row,
int  column,
const T &  format 
)
inline

Set format for given row and column.

Precondition
row must be >= 0
column must be >= 0

Definition at line 71 of file FormatMap.h.

template<typename T >
void Mdt::ItemModel::FormatMap::setFormatForRow ( int  row,
const T &  format 
)
inline

Set format for given row.

Precondition
row must be >= 0

Definition at line 92 of file FormatMap.h.

void Mdt::ItemModel::FormatMap::setPriority ( const std::array< FormatMapPriority, 3 > &  priority)

Set priority when format conflics.

Define which format should be choosen when many where set for a specific index.

For example:

setPriority({FormatMapPriority::Row, FormatMapPriority::Column, FormatMapPriority::Index});

Default is index, then row, then column.

Definition at line 31 of file FormatMap.cpp.


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