X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_PartDataModel.h;h=87e5d7f42be66cff36b017d7144180553794df5d;hb=a0247c36615e233b68bc5ed98c1b87a999a4a51e;hp=c8fb16629d307d475a52e6cc27b24b7d5ffe325f;hpb=d264560231205a57380b51201bd947056838c3a7;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_PartDataModel.h b/src/XGUI/XGUI_PartDataModel.h index c8fb16629..87e5d7f42 100644 --- a/src/XGUI/XGUI_PartDataModel.h +++ b/src/XGUI/XGUI_PartDataModel.h @@ -2,30 +2,22 @@ #ifndef XGUI_PartDataModel_H #define XGUI_PartDataModel_H -#include - -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); virtual ~XGUI_TopDataModel(); - - //! Set a document object - virtual void setDocument(const std::shared_ptr& 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,17 +32,31 @@ public: virtual bool hasChildren(const QModelIndex& theParent = QModelIndex()) const; + //! Returns object by the given Model index. + //! Returns 0 if the given index is not index of a object + virtual ObjectPtr object(const QModelIndex& theIndex) const; + + //! Returns QModelIndex which corresponds to the given object + //! If the object is not found then index is not valid + virtual QModelIndex objectIndex(const ObjectPtr& theObject) const; + + //! Returns parent index of the given object + virtual QModelIndex findParent(const ObjectPtr& theObject) const; + + //! Returns index corresponded to the group + virtual QModelIndex findGroup(const std::string& theGroup) const; + private: //! Types of QModelIndexes enum DataIds { ParamsFolder, ParamObject, ConstructFolder, - ConstructObject + ConstructObject, + BodiesFolder, + BodiesObject }; - //! Document object - std::shared_ptr myDocument; }; @@ -59,21 +65,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); virtual ~XGUI_PartDataModel(); - //! Set a document object and Id of a part in the document - virtual void setDocument(const std::shared_ptr& 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 +87,30 @@ public: virtual bool hasChildren(const QModelIndex& theParent = QModelIndex()) const; + //! Returns object by the given Model index. + //! Returns 0 if the given index is not index of a object + virtual ObjectPtr object(const QModelIndex& theIndex) const; + + //! Returns QModelIndex which corresponds to the given object + //! If the object is not found then index is not valid + virtual QModelIndex objectIndex(const ObjectPtr& theObject) 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 object + virtual QModelIndex findParent(const ObjectPtr& theObject) const; + + //! Returns index corresponded to the group + virtual QModelIndex findGroup(const std::string& theGroup) const; + + //! Return a Part object + virtual ResultPartPtr part() const; + private: - std::shared_ptr featureDocument() const; + + //! Returns document of the current part + DocumentPtr partDocument() const; //! Types of QModelIndexes enum DataIds { @@ -97,14 +118,12 @@ private: ParamsFolder, ParamObject, ConstructFolder, - ConstructObject + ConstructObject, + BodiesFolder, + BodiesObject, + HistoryObject }; - //! Document object - std::shared_ptr myDocument; - - //! Id of the current part object in the document - int myId; }; #endif \ No newline at end of file