Salome HOME
Update Delete operation in pop-up
[modules/shaper.git] / src / XGUI / XGUI_PartDataModel.h
index c8fb16629d307d475a52e6cc27b24b7d5ffe325f..e1533ee0bfbd4a14b04628ca438a1715d1f6fa20 100644 (file)
@@ -2,30 +2,22 @@
 #ifndef XGUI_PartDataModel_H
 #define XGUI_PartDataModel_H
 
-#include <QAbstractItemModel>
-
-class ModelAPI_Feature;
-class ModelAPI_Document; 
+#include "XGUI.h"
+#include "XGUI_DataTreeModel.h"
 
 /**\class XGUI_TopDataModel
  * \ingroup GUI
  * \brief This is a data model for Object Browser (QTreeView).
  * It represents only upper part of data tree (non-parts tree items)
  */
-class XGUI_TopDataModel : public QAbstractItemModel
+class XGUI_EXPORT XGUI_TopDataModel : public XGUI_FeaturesModel
 {
   Q_OBJECT
 public:
-  XGUI_TopDataModel(QObject* theParent);
+  XGUI_TopDataModel(const DocumentPtr& theDocument, QObject* theParent);
   virtual ~XGUI_TopDataModel();
-  //! Set a document object
-  virtual void setDocument(const std::shared_ptr<ModelAPI_Document>& theDoc)
-  {
-    myDocument = theDoc;
-  }
-
-  // Reimplementation from QAbstractItemModel
+
+  // Reimpl from QAbstractItemModel
   virtual QVariant data(const QModelIndex& theIndex, int theRole) const;
   virtual QVariant headerData(int section, Qt::Orientation orientation,
                               int role = Qt::DisplayRole) const;
@@ -40,6 +32,20 @@ public:
 
   virtual bool hasChildren(const QModelIndex& theParent = QModelIndex()) const;
 
+  //! Returns Feature object by the given Model index.
+  //! Returns 0 if the given index is not index of a feature
+  virtual FeaturePtr feature(const QModelIndex& theIndex) const;
+
+  //! Returns QModelIndex which corresponds to the given feature
+  //! If the feature is not found then index is not valid
+  virtual QModelIndex featureIndex(const FeaturePtr& theFeature) const;
+
+  //! Returns parent index of the given feature
+  virtual QModelIndex findParent(const FeaturePtr& theFeature) const;
+
+  //! Returns index corresponded to the group
+  virtual QModelIndex findGroup(const std::string& theGroup) const;
+
 private:
   //! Types of QModelIndexes
   enum DataIds {
@@ -49,8 +55,6 @@ private:
     ConstructObject
   };
 
-  //! Document object
-  std::shared_ptr<ModelAPI_Document> myDocument;
 };
 
 
@@ -59,21 +63,14 @@ private:
  * \brief This is a data model for Object Browser (QTreeView).
  * It represents data tree only of a one part
  */
-class XGUI_PartDataModel : public QAbstractItemModel
+class XGUI_PartDataModel : public XGUI_PartModel
 {
   Q_OBJECT
 public:
-  XGUI_PartDataModel(QObject* theParent);
+  XGUI_PartDataModel(const DocumentPtr& theDocument, QObject* theParent);
   virtual ~XGUI_PartDataModel();
 
-  //! Set a document object and Id of a part in the document
-  virtual void setDocument(const std::shared_ptr<ModelAPI_Document>& theDoc, int theId)
-  {
-    myDocument = theDoc;
-    myId = theId;
-  }
-
-  // Reimplementation from QAbstractItemModel
+  // Reimpl from QAbstractItemModel
   virtual QVariant data(const QModelIndex& theIndex, int theRole) const;
   virtual QVariant headerData(int section, Qt::Orientation orientation,
                               int role = Qt::DisplayRole) const;
@@ -88,8 +85,28 @@ public:
 
   virtual bool hasChildren(const QModelIndex& theParent = QModelIndex()) const;
 
+  //! Returns Feature object by the given Model index.
+  //! Returns 0 if the given index is not index of a feature
+  virtual FeaturePtr feature(const QModelIndex& theIndex) const;
+
+  //! Returns QModelIndex which corresponds to the given feature
+  //! If the feature is not found then index is not valid
+  virtual QModelIndex featureIndex(const FeaturePtr& theFeature) const;
+
+  //! Returns true if the given document is a sub-document of this tree
+  virtual bool hasDocument(const DocumentPtr& theDoc) const;
+
+  //! Returns parent index of the given feature
+  virtual QModelIndex findParent(const FeaturePtr& theFeature) const;
+
+  //! Returns index corresponded to the group
+  virtual QModelIndex findGroup(const std::string& theGroup) const;
+
+  //! Return a Part object
+  virtual FeaturePtr part() const;
+
 private: 
-  std::shared_ptr<ModelAPI_Document> featureDocument() const;
+  DocumentPtr featureDocument() const;
 
   //! Types of QModelIndexes
   enum DataIds {
@@ -97,14 +114,12 @@ private:
     ParamsFolder,
     ParamObject,
     ConstructFolder,
-    ConstructObject
+    ConstructObject,
+    BodiesFolder,
+    BodiesObject,
+    HistoryObject
   };
 
-  //! Document object
-  std::shared_ptr<ModelAPI_Document> myDocument;
-
-  //! Id of the current part object in the document
-  int myId;
 };
 
 #endif
\ No newline at end of file