50 #include "TreeModelObjectSelection.hh" 53 #include "../OpenFlipper/BasePlugin/PluginFunctions.hh" 101 if (!index.isValid())
108 std::cerr <<
"Root" << std::endl;
112 if ( role == Qt::BackgroundRole ) {
114 return QVariant (QBrush (QColor (192, 192, 192)));
118 if (role == Qt::DisplayRole)
120 switch (index.column ())
123 return QVariant(item->
id());
125 return QVariant(item->
name());
144 if (!index.isValid())
147 Qt::ItemFlags
flags = 0;
150 if ( index.column() == 0 || index.column() == 1 )
151 flags = Qt::ItemIsEnabled | Qt::ItemIsSelectable;
153 flags = Qt::ItemIsEnabled;
171 if (orientation == Qt::Horizontal && role == Qt::DisplayRole) {
174 return QVariant(
"ID");
175 else if (section == 1)
176 return QVariant(
"Name");
198 if (!_parent.isValid())
205 return createIndex(row, column, childItem);
207 return QModelIndex();
220 if (!index.isValid())
221 return QModelIndex();
227 return QModelIndex();
229 return createIndex(parentItem->
row(), 0, parentItem);
243 if (_parent.column() > 0)
246 if (!_parent.isValid())
271 if (obj != 0 && item != 0){
278 if ( index.isValid() )
279 emit dataChanged( index, index);
290 if ( index0.isValid() && index1.isValid() ){
292 emit dataChanged( index0, index1);
369 if ( item != 0 && !
isRoot(item) ){
372 QModelIndex parentIndex = itemIndex.parent();
374 beginRemoveRows( parentIndex, itemIndex.row(), itemIndex.row() );
395 QModelIndex oldParentIndex = itemIndex.parent();
399 beginRemoveRows( oldParentIndex, itemIndex.row(), itemIndex.row() );
411 emit layoutChanged();
423 if (index.isValid()) {
425 if (item)
return item;
440 if (index.isValid()) {
457 if (index.isValid()) {
479 return QModelIndex();
481 QModelIndex
index = createIndex(_object->
row(), _column, _object);
503 return QModelIndex();
517 if (
isRoot(_item) || (!_item->isGroup()) )
527 emit dataChanged( index0, index1);
532 emit dataChanged(index, index);
551 bool changed =
false;
570 emit dataChanged(index, index);
573 if ( current->isGroup() )
583 emit dataChangedInside(
itemId(index), index.column(), value );
QModelIndex index(int row, int column, const QModelIndex &parent=QModelIndex()) const
Get the ModelIndex at given row,column.
bool isGroup() const
Check if object is a group.
void propagateDownwards(TreeItemObjectSelection *_obj, int _column)
Recursively update a column up to the root of the tree.
int childCount() const
get the number of children
TreeItemObjectSelection * parent()
Get the parent item ( 0 if rootitem )
void removeChild(TreeItemObjectSelection *_item)
Remove a child from this object.
void setParent(TreeItemObjectSelection *_parent)
Set the parent pointer.
void appendChild(TreeItemObjectSelection *child)
add a child to this node
bool dataType(DataType _type) const
QVariant headerData(int section, Qt::Orientation orientation, int role=Qt::DisplayRole) const
return the header data of the model
void deleteSubtree()
delete the whole subtree below this item ( The item itself is not touched )
QVariant data(const QModelIndex &index, int role) const
Get the data of the corresponding entry.
TreeItemObjectSelection * childExists(int _objectId)
Check if the element exists in the subtree of this element.
void objectAdded(BaseObject *_object)
The object with the given id has been added. add it to the internal tree.
void propagateUpwards(TreeItemObjectSelection *_obj, int _column, bool _value)
Recursively update a column up to the root of the tree.
const DataType DATA_UNKNOWN(0)
None of the other Objects.
int rowCount(const QModelIndex &parent=QModelIndex()) const
get the number of rows
bool getObject(const int _identifier, BaseObject *&_object)
Get the object which has the given identifier.
int columnCount(const QModelIndex &_parent=QModelIndex()) const
Return the number of columns.
QString name() const
return the name of the object. The name defaults to NONAME if unset.
BaseObject *& objectRoot()
Get the root of the object structure.
void objectChanged(int id_)
The object with the given id has been changed. Check if model also has to be changed.
virtual bool visible()
return if object is visible
QString itemName(const QModelIndex &index) const
Get the name of a TreeItemObjectSelection corresponding to a given ModelIndex.
TreeModelObjectSelection(QObject *_parent=0)
Constructor.
TreeItemObjectSelection * child(int row)
return a child
TreeItemObjectSelection * rootItem_
Rootitem of the tree.
Qt::ItemFlags flags(const QModelIndex &index) const
return the types of the corresponding entry
~TreeModelObjectSelection()
Destructor.
bool setData(const QModelIndex &index, const QVariant &value, int role)
Set Data at 'index' to 'value'.
int itemId(const QModelIndex &index) const
Get the id of a TreeItemObjectSelection corresponding to a given ModelIndex.
void moveItem(TreeItemObjectSelection *_item, TreeItemObjectSelection *_parent)
move the item to a new parent
BaseObject * parent()
Get the parent item ( 0 if rootitem )
QModelIndex getModelIndex(TreeItemObjectSelection *_object, int _column)
Return the ModelIndex corresponding to a given TreeItemObjectSelection and Column.
bool isRoot(TreeItemObjectSelection *_item)
Check if the given item is the root item.
void objectDeleted(int id_)
The object with the given id has been deleted. delete it from the internal tree.
TreeItemObjectSelection * getItem(const QModelIndex &index) const
Get the TreeItemObjectSelection corresponding to a given ModelIndex.
int row() const
get the row of this item from the parent
QModelIndex parent(const QModelIndex &index) const
Get the parent ModelIndex.