Multi diag tools
|
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... | |
Stores formats for certain row, column and index in a item model.
Definition at line 43 of file FormatMap.h.
void Mdt::ItemModel::FormatMap::clearFormatForColumn | ( | int | column | ) |
Clear format for given column.
Does nothing if no format was set for column .
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 .
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 .
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.
Definition at line 59 of file FormatMap.cpp.
|
inline |
Set format for given column.
Definition at line 111 of file FormatMap.h.
|
inline |
Set format for given row and column.
Definition at line 71 of file FormatMap.h.
|
inline |
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:
Default is index, then row, then column.
Definition at line 31 of file FormatMap.cpp.