|
OpenMW
|
#include <idtable.hpp>
Public Member Functions | |
| IdTable (CollectionBase *idCollection, unsigned int features=0) | |
| The ownership of idCollection is not transferred. More... | |
| virtual | ~IdTable () |
| virtual int | rowCount (const QModelIndex &parent=QModelIndex()) const |
| virtual int | columnCount (const QModelIndex &parent=QModelIndex()) const |
| virtual QVariant | data (const QModelIndex &index, int role=Qt::DisplayRole) const |
| virtual QVariant | headerData (int section, Qt::Orientation orientation, int role=Qt::DisplayRole) const |
| virtual bool | setData (const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) |
| virtual Qt::ItemFlags | flags (const QModelIndex &index) const |
| virtual bool | removeRows (int row, int count, const QModelIndex &parent=QModelIndex()) |
| virtual QModelIndex | index (int row, int column, const QModelIndex &parent=QModelIndex()) const |
| virtual QModelIndex | parent (const QModelIndex &index) const |
| void | addRecord (const std::string &id, UniversalId::Type type=UniversalId::Type_None) |
| void | addRecordWithData (const std::string &id, const std::map< int, QVariant > &data, UniversalId::Type type=UniversalId::Type_None) |
| void | cloneRecord (const std::string &origin, const std::string &destination, UniversalId::Type type=UniversalId::Type_None) |
| bool | touchRecord (const std::string &id) |
| Will change the record state to modified, if it is not already. More... | |
| std::string | getId (int row) const |
| virtual QModelIndex | getModelIndex (const std::string &id, int column) const |
| This method can return only indexes to the top level table cells. More... | |
| void | setRecord (const std::string &id, const RecordBase &record, UniversalId::Type type=UniversalId::Type_None) |
| Add record or overwrite existing record. More... | |
| const RecordBase & | getRecord (const std::string &id) const |
| virtual int | searchColumnIndex (Columns::ColumnId id) const |
| Return index of column with the given id. If no such column exists, -1 is returned. More... | |
| virtual int | findColumnIndex (Columns::ColumnId id) const |
| void | reorderRows (int baseIndex, const std::vector< int > &newOrder) |
| virtual std::pair< UniversalId, std::string > | view (int row) const |
| virtual bool | isDeleted (const std::string &id) const |
| Is id flagged as deleted? More... | |
| virtual int | getColumnId (int column) const |
Public Member Functions inherited from CSMWorld::IdTableBase | |
| IdTableBase (unsigned int features) | |
| unsigned int | getFeatures () const |
Protected Member Functions | |
| virtual CollectionBase * | idCollection () const |
Private Member Functions | |
| IdTable (const IdTable &) | |
| IdTable & | operator= (const IdTable &) |
Private Attributes | |
| CollectionBase * | mIdCollection |
Additional Inherited Members | |
Public Types inherited from CSMWorld::IdTableBase | |
| enum | Features { Feature_ReorderWithinTopic = 1, Feature_ViewId = 2, Feature_ViewCell = 4, Feature_View = Feature_ViewId | Feature_ViewCell, Feature_Preview = 8, Feature_Constant = 16, Feature_AllowTouch = 32 } |
|
private |
| CSMWorld::IdTable::IdTable | ( | CollectionBase * | idCollection, |
| unsigned int | features = 0 |
||
| ) |
The ownership of idCollection is not transferred.
|
virtual |
| void CSMWorld::IdTable::addRecord | ( | const std::string & | id, |
| UniversalId::Type | type = UniversalId::Type_None |
||
| ) |
| type | Will be ignored, unless the collection supports multiple record types |
| void CSMWorld::IdTable::addRecordWithData | ( | const std::string & | id, |
| const std::map< int, QVariant > & | data, | ||
| UniversalId::Type | type = UniversalId::Type_None |
||
| ) |
| type | Will be ignored, unless the collection supports multiple record types |
| void CSMWorld::IdTable::cloneRecord | ( | const std::string & | origin, |
| const std::string & | destination, | ||
| UniversalId::Type | type = UniversalId::Type_None |
||
| ) |
|
virtual |
|
virtual |
|
virtual |
Return index of column with the given id. If no such column exists, an exception is thrown.
Implements CSMWorld::IdTableBase.
|
virtual |
Implements CSMWorld::IdTableBase.
| std::string CSMWorld::IdTable::getId | ( | int | row | ) | const |
|
virtual |
This method can return only indexes to the top level table cells.
Implements CSMWorld::IdTableBase.
| const CSMWorld::RecordBase & CSMWorld::IdTable::getRecord | ( | const std::string & | id | ) | const |
|
virtual |
|
protectedvirtual |
|
virtual |
|
virtual |
Reimplemented in CSMWorld::IdTree.
Reorder the rows [baseIndex, baseIndex+newOrder.size()) according to the indices given in newOrder (baseIndex+newOrder[0] specifies the new index of row baseIndex).
|
virtual |
|
virtual |
Return index of column with the given id. If no such column exists, -1 is returned.
Implements CSMWorld::IdTableBase.
| void CSMWorld::IdTable::setRecord | ( | const std::string & | id, |
| const RecordBase & | record, | ||
| UniversalId::Type | type = UniversalId::Type_None |
||
| ) |
Add record or overwrite existing record.
| bool CSMWorld::IdTable::touchRecord | ( | const std::string & | id | ) |
Will change the record state to modified, if it is not already.
|
virtual |
Return the UniversalId and the hint for viewing row. If viewing is not supported by this table, return (UniversalId::Type_None, "").
Implements CSMWorld::IdTableBase.
|
private |
1.8.6