2 #ifndef XGUI_DocumentDataModel_H
3 #define XGUI_DocumentDataModel_H
6 #include "XGUI_Constants.h"
8 #include <QAbstractItemModel>
9 #include <Events_Listener.h>
13 class ModelAPI_Document;
15 class XGUI_TopDataModel;
17 /**\class XGUI_DocumentDataModel
19 * \brief This is a proxy data model for Object Browser (QTreeView).
20 * It contains several sub-models for generation of each sub-part of data tree.
22 class XGUI_EXPORT XGUI_DocumentDataModel : public QAbstractItemModel, public Events_Listener
28 XGUI_DocumentDataModel(QObject* theParent);
29 virtual ~XGUI_DocumentDataModel();
31 // Event Listener method
32 virtual void processEvent(const Events_Message* theMessage);
35 virtual QVariant data(const QModelIndex& theIndex, int theRole) const;
36 virtual QVariant headerData(int theSection, Qt::Orientation theOrient,
37 int theRole = Qt::DisplayRole) const;
39 virtual int rowCount(const QModelIndex& theParent = QModelIndex()) const;
40 virtual int columnCount(const QModelIndex& theParent = QModelIndex()) const;
42 virtual QModelIndex index(int theRow, int theColumn,
43 const QModelIndex &parent = QModelIndex()) const;
45 virtual QModelIndex parent(const QModelIndex& theIndex) const;
47 virtual bool hasChildren(const QModelIndex& theParent = QModelIndex()) const;
49 bool insertRows(int theRow, int theCount, const QModelIndex& theParent = QModelIndex());
51 bool removeRows(int theRow, int theCount, const QModelIndex& theParent = QModelIndex());
53 //! Returns Feature object by the given Model index.
54 //! Returns 0 if the given index is not index of a feature
55 FeaturePtr feature(const QModelIndex& theIndex) const;
57 //! Activates a part data model if the index is a Part node index.
58 //! Returns true if active part changed.
59 bool activatedIndex(const QModelIndex& theIndex);
61 FeaturePtr activePart() const;
63 QModelIndex activePartIndex() const { return myActivePartIndex; }
65 //! Deactivates a Part
66 void deactivatePart();
70 enum {PartsFolder, HistoryNode};
73 //! Converts QModelIndex of this model to QModelIndex of a one of sub-models.
74 QModelIndex* toSourceModelIndex(const QModelIndex& theProxy) const;
76 //! Finds a pointer on QModelIndex which is equal to the given one
77 QModelIndex* findModelIndex(const QModelIndex& theIndex) const;
79 //! Returns pointer on QModelIndex which is equal to the given one.
80 QModelIndex* getModelIndex(const QModelIndex& theIndex) const;
82 //! Deletes all saved pointers on QModelIndex objects.
83 void clearModelIndexes();
85 //! Removes sub-model on removing a part object. Also it removes QModelIndex-es which refer to this model
86 void removeSubModel(int theModelId);
88 //! Returns true if the given model is a one of sub-models (of both types)
89 bool isSubModel(const QAbstractItemModel* theModel) const;
91 //! Returns true if the given model is a one of sub-models of Part type
92 bool isPartSubModel(const QAbstractItemModel* theModel) const;
94 //! Returns Parts Folder node
95 QModelIndex partFolderNode() const;
97 int historyOffset() const;
101 boost::shared_ptr<ModelAPI_Document> myDocument;
103 //! Data model of top part of data tree (not parts object)
104 XGUI_TopDataModel* myModel;
106 //! Data models for Parts data tree representation (one data model per a one part)
107 QList<XGUI_PartModel*> myPartModels;
109 //! Active part in part editing mode
110 XGUI_PartModel* myActivePart;
112 QModelIndex myActivePartIndex;
114 //! List of saved QModelIndexes created by sub-models
115 QList<QModelIndex*> myIndexes;