Salome HOME
Issue #20 Menu buttons' behavior correct
[modules/shaper.git] / src / XGUI / XGUI_DocumentDataModel.h
index 3c90dcf1f5e6f7c54d964f7c506fb54fb10d5b4e..c49c6696535871e683459407e8214527a01de0a4 100644 (file)
@@ -3,11 +3,12 @@
 #define XGUI_DocumentDataModel_H
 
 #include "XGUI.h"
-#include "XGUI_Constants.h"
+#include <ModuleBase_Definitions.h>
+#include <ModelAPI_ResultPart.h>
 
-#include <QAbstractItemModel>
 #include <Events_Listener.h>
 
+#include <QAbstractItemModel>
 #include <QList>
 
 class ModelAPI_Document;
@@ -50,9 +51,32 @@ public:
 
   bool removeRows(int theRow, int theCount, const QModelIndex& theParent = QModelIndex());
 
-  //! Returns Feature object by the given Model index.
-  //! Returns 0 if the given index is not index of a feature
-  FeaturePtr feature(const QModelIndex& theIndex) const;
+  Qt::ItemFlags flags(const QModelIndex& theIndex) const;
+
+  //! Returns an object by the given Model index.
+  //! Returns 0 if the given index is not index of an object
+  ObjectPtr object(const QModelIndex& theIndex) const;
+
+  QModelIndex objectIndex(const ObjectPtr theObject) const;
+
+  //! Returns QModelIndex which corresponds to the given part
+  //! If the object is not found then index is not valid
+  QModelIndex partIndex(const ResultPartPtr& thePart) const;
+
+  //! Activates a part data model if the index is a Part node index. 
+  //! Returns true if active part changed.
+  bool activatedIndex(const QModelIndex& theIndex);
+
+  //! Retrurns active part
+  ResultPartPtr activePart() const;
+
+  //! Retrurns QModelIndex of active part
+  QModelIndex activePartIndex() const { return myActivePartIndex; }
+
+  //! Deactivates a Part
+  void deactivatePart();
+
+  void rebuildDataTree();
 
 private:
 
@@ -60,7 +84,7 @@ private:
 
 
   //! Converts QModelIndex of this model to QModelIndex of a one of sub-models.
-  QModelIndex toSourceModelIndex(const QModelIndex& theProxy) const;
+  QModelIndex* toSourceModelIndex(const QModelIndex& theProxy) const;
 
   //! Finds a pointer on QModelIndex which is equal to the given one
   QModelIndex* findModelIndex(const QModelIndex& theIndex) const;
@@ -86,17 +110,20 @@ private:
   int historyOffset() const;
 
 
-  //! Document
-  boost::shared_ptr<ModelAPI_Document> myDocument;
-
   //! Data model of top part of data tree (not parts object)
   XGUI_TopDataModel* myModel;
 
   //! Data models for Parts data tree representation (one data model per a one part)
   QList<XGUI_PartModel*> myPartModels;
 
+  //! Active part in part editing mode
+  XGUI_PartModel* myActivePart;
+
+  QModelIndex myActivePartIndex;
+
   //! List of saved QModelIndexes created by sub-models
   QList<QModelIndex*> myIndexes;
+
 };
 
 #endif
\ No newline at end of file