VTK
|
Adapts a tree to a Qt item model. More...
#include <vtkQtTreeModelAdapter.h>
Public Member Functions | |
vtkQtTreeModelAdapter (QObject *parent=0, vtkTree *tree=0) | |
~vtkQtTreeModelAdapter () | |
vtkMTimeType | GetVTKDataObjectMTime () const |
Get the stored VTK data object modification time of when the adaption to a Qt model was done. More... | |
virtual void | SetKeyColumnName (const char *name) |
virtual void | SetColorColumnName (const char *name) |
void | setTree (vtkTree *t) |
Set up the model based on the current tree. More... | |
vtkTree * | tree () const |
QVariant | data (const QModelIndex &index, int role=Qt::DisplayRole) const |
bool | setData (const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) |
Qt::ItemFlags | flags (const QModelIndex &index) const |
QVariant | headerData (int section, Qt::Orientation orientation, int role=Qt::DisplayRole) const |
QModelIndex | index (int row, int column, const QModelIndex &parent=QModelIndex()) const |
QModelIndex | parent (const QModelIndex &index) const |
int | rowCount (const QModelIndex &parent=QModelIndex()) const |
int | columnCount (const QModelIndex &parent=QModelIndex()) const |
virtual void | SetVTKDataObject (vtkDataObject *data) |
Set/Get the VTK data object as input to this adapter. More... | |
virtual vtkDataObject * | GetVTKDataObject () const |
Set/Get the VTK data object as input to this adapter. More... | |
virtual vtkSelection * | QModelIndexListToVTKIndexSelection (const QModelIndexList qmil) const |
Selection conversion from VTK land to Qt land. More... | |
virtual QItemSelection | VTKIndexSelectionToQItemSelection (vtkSelection *vtksel) const |
Selection conversion from VTK land to Qt land. More... | |
Qt::DropActions | supportedDragActions () const |
If drag/drop is enabled in the view, the model will package up the current pedigreeid vtkSelection into a QMimeData when items are dragged. More... | |
virtual QMimeData * | mimeData (const QModelIndexList &indexes) const |
If drag/drop is enabled in the view, the model will package up the current pedigreeid vtkSelection into a QMimeData when items are dragged. More... | |
virtual QStringList | mimeTypes () const |
If drag/drop is enabled in the view, the model will package up the current pedigreeid vtkSelection into a QMimeData when items are dragged. More... | |
![]() | |
vtkQtAbstractModelAdapter (QObject *p) | |
virtual void | SetViewType (int type) |
Set/Get the view type. More... | |
virtual int | GetViewType () |
virtual void | SetKeyColumn (int col) |
Set/Get the key column. More... | |
virtual int | GetKeyColumn () |
virtual void | SetColorColumn (int col) |
Set/Get the column storing the rgba color values for each row. More... | |
virtual int | GetColorColumn () |
virtual void | SetDataColumnRange (int c1, int c2) |
Set the range of columns that specify the main data matrix. More... | |
void | reset () |
void | beginResetModel () |
void | endResetModel () |
Protected Member Functions | |
void | treeModified () |
void | GenerateVTKIndexToQtModelIndex (vtkIdType vtk_index, QModelIndex qmodel_index) |
![]() | |
virtual int | ModelColumnToFieldDataColumn (int col) const |
Map a column index in the QAbstractItemModel to a vtkTable column. More... | |
Protected Attributes | |
vtkTree * | Tree |
vtkAdjacentVertexIterator * | ChildIterator |
vtkMTimeType | TreeMTime |
QVector< QModelIndex > | VTKIndexToQtModelIndex |
QHash< QModelIndex, QVariant > | IndexToDecoration |
![]() | |
int | ViewType |
int | KeyColumn |
int | ColorColumn |
int | DataStartColumn |
int | DataEndColumn |
Additional Inherited Members | |
![]() | |
enum | { FULL_VIEW, DATA_VIEW } |
![]() | |
void | modelChanged () |
Adapts a tree to a Qt item model.
vtkQtTreeModelAdapter is a QAbstractItemModel with a vtkTree as its underlying data model.
Definition at line 51 of file vtkQtTreeModelAdapter.h.
vtkQtTreeModelAdapter::vtkQtTreeModelAdapter | ( | QObject * | parent = 0 , |
vtkTree * | tree = 0 |
||
) |
vtkQtTreeModelAdapter::~vtkQtTreeModelAdapter | ( | ) |
|
virtual |
Set/Get the VTK data object as input to this adapter.
Implements vtkQtAbstractModelAdapter.
|
virtual |
Set/Get the VTK data object as input to this adapter.
Implements vtkQtAbstractModelAdapter.
vtkMTimeType vtkQtTreeModelAdapter::GetVTKDataObjectMTime | ( | ) | const |
Get the stored VTK data object modification time of when the adaption to a Qt model was done.
This is in general not the same this as the data objects modification time. It is the mod time of the object when it was placed into the Qt model adapter. You can use this mtime as part of the checking to see whether you need to update the the adapter by call SetVTKDataObject again. :)
|
virtual |
Selection conversion from VTK land to Qt land.
Implements vtkQtAbstractModelAdapter.
|
virtual |
Selection conversion from VTK land to Qt land.
Implements vtkQtAbstractModelAdapter.
|
virtual |
Implements vtkQtAbstractModelAdapter.
|
virtual |
Implements vtkQtAbstractModelAdapter.
void vtkQtTreeModelAdapter::setTree | ( | vtkTree * | t | ) |
Set up the model based on the current tree.
|
inline |
Definition at line 95 of file vtkQtTreeModelAdapter.h.
QVariant vtkQtTreeModelAdapter::data | ( | const QModelIndex & | index, |
int | role = Qt::DisplayRole |
||
) | const |
bool vtkQtTreeModelAdapter::setData | ( | const QModelIndex & | index, |
const QVariant & | value, | ||
int | role = Qt::EditRole |
||
) |
Qt::ItemFlags vtkQtTreeModelAdapter::flags | ( | const QModelIndex & | index | ) | const |
QVariant vtkQtTreeModelAdapter::headerData | ( | int | section, |
Qt::Orientation | orientation, | ||
int | role = Qt::DisplayRole |
||
) | const |
QModelIndex vtkQtTreeModelAdapter::index | ( | int | row, |
int | column, | ||
const QModelIndex & | parent = QModelIndex() |
||
) | const |
QModelIndex vtkQtTreeModelAdapter::parent | ( | const QModelIndex & | index | ) | const |
int vtkQtTreeModelAdapter::rowCount | ( | const QModelIndex & | parent = QModelIndex() | ) | const |
int vtkQtTreeModelAdapter::columnCount | ( | const QModelIndex & | parent = QModelIndex() | ) | const |
Qt::DropActions vtkQtTreeModelAdapter::supportedDragActions | ( | ) | const |
If drag/drop is enabled in the view, the model will package up the current pedigreeid vtkSelection into a QMimeData when items are dragged.
Currently only leaves of the tree can be dragged.
|
virtual |
If drag/drop is enabled in the view, the model will package up the current pedigreeid vtkSelection into a QMimeData when items are dragged.
Currently only leaves of the tree can be dragged.
|
virtual |
If drag/drop is enabled in the view, the model will package up the current pedigreeid vtkSelection into a QMimeData when items are dragged.
Currently only leaves of the tree can be dragged.
|
protected |
|
protected |
|
protected |
Definition at line 123 of file vtkQtTreeModelAdapter.h.
|
protected |
Definition at line 124 of file vtkQtTreeModelAdapter.h.
|
protected |
Definition at line 125 of file vtkQtTreeModelAdapter.h.
|
protected |
Definition at line 126 of file vtkQtTreeModelAdapter.h.
|
protected |
Definition at line 127 of file vtkQtTreeModelAdapter.h.