Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / XGUI / XGUI_PartDataModel.h
index c8fb16629d307d475a52e6cc27b24b7d5ffe325f..0c857f95b83e153507b30e3d9da30a9e56370ebc 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 boost::shared_ptr<ModelAPI_Document>& 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,16 @@ 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 parent index of the given feature
+  virtual QModelIndex findParent(const boost::shared_ptr<ModelAPI_Feature>& theFeature) const;
+
+  //! Returns index corresponded to the group
+  virtual QModelIndex findGroup(const std::string& theGroup) const;
+
 private:
   //! Types of QModelIndexes
   enum DataIds {
@@ -49,8 +51,6 @@ private:
     ConstructObject
   };
 
-  //! Document object
-  std::shared_ptr<ModelAPI_Document> myDocument;
 };
 
 
@@ -59,21 +59,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 boost::shared_ptr<ModelAPI_Document>& 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 +81,24 @@ 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 true if the given document is a sub-document of this tree
+  virtual bool hasDocument(const boost::shared_ptr<ModelAPI_Document>& theDoc) const;
+
+  //! Returns parent index of the given feature
+  virtual QModelIndex findParent(const boost::shared_ptr<ModelAPI_Feature>& 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;
+  boost::shared_ptr<ModelAPI_Document> featureDocument() const;
 
   //! Types of QModelIndexes
   enum DataIds {
@@ -97,14 +106,12 @@ private:
     ParamsFolder,
     ParamObject,
     ConstructFolder,
-    ConstructObject
+    ConstructObject,
+    BodiesFolder,
+    BodieswObject,
+    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