X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_Region.h;h=b6db313f3bef027a6b711e68a60225ca843bd4b1;hb=f34b90e9e4e02ba65419134d5d37a2e42aecfabf;hp=c5b3ac7079600e75ec78a358f4802bdcb6066441;hpb=bfe9d3ccf8d5347b917d4c9e5e89413cebe51cc6;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_Region.h b/src/HYDROGUI/HYDROGUI_Region.h index c5b3ac70..b6db313f 100644 --- a/src/HYDROGUI/HYDROGUI_Region.h +++ b/src/HYDROGUI/HYDROGUI_Region.h @@ -30,6 +30,8 @@ #include #include +class HYDROGUI_Zone; + /** * \class HYDROGUI_Region * \brief Browser item presenting a zone, used for object browser tree creation. @@ -45,16 +47,18 @@ public: * \param theParent parent data object * \param theData reference to the corresponding object from data structure * \param theParentEntry entry of the parent data object (for reference objects) + * \param theIsInOperation if true then the tree is used for a browser within an operation, it is false by default */ - HYDROGUI_Region( SUIT_DataObject* theParent, + HYDROGUI_Region( SUIT_DataObject* theParent, Handle(HYDROData_Region) theData, - const QString& theParentEntry ); + const QString& theParentEntry, + const bool theIsInOperation = false ); - bool isDropAccepted() const override { return true; } + bool isDropAccepted() const { return true; } /** * Add zones to the region. */ - void addZones(); + bool addZones( const QList& theZonesList ); }; #endif