|
| IdTree (NestedCollection *nestedCollection, CollectionBase *idCollection, unsigned int features=0) |
| The ownerships of nestedCollecton and idCollection are not transferred. More...
|
|
virtual | ~IdTree () |
|
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 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 |
|
QModelIndex | getNestedModelIndex (const std::string &id, int column) const |
|
QVariant | nestedHeaderData (int section, int subSection, Qt::Orientation orientation, int role=Qt::DisplayRole) const |
|
NestedTableWrapperBase * | nestedTable (const QModelIndex &index) const |
|
void | setNestedTable (const QModelIndex &index, const NestedTableWrapperBase &nestedTable) |
|
void | addNestedRow (const QModelIndex &parent, int position) |
|
virtual bool | hasChildren (const QModelIndex &index) const |
|
virtual int | searchNestedColumnIndex (int parentColumn, Columns::ColumnId id) |
|
virtual int | findNestedColumnIndex (int parentColumn, Columns::ColumnId id) |
|
| IdTable (CollectionBase *idCollection, unsigned int features=0) |
| The ownership of idCollection is not transferred. More...
|
|
virtual | ~IdTable () |
|
virtual QVariant | headerData (int section, Qt::Orientation orientation, int role=Qt::DisplayRole) 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) |
|
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 |
|
| IdTableBase (unsigned int features) |
|
unsigned int | getFeatures () const |
|