X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_Region.h;h=d6eca551a8b4bfad28b5b2b9283652b05f5025d1;hb=a53349567d67f4df0ef737798a25c24d9dc8f08e;hp=c5b3ac7079600e75ec78a358f4802bdcb6066441;hpb=bfe9d3ccf8d5347b917d4c9e5e89413cebe51cc6;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_Region.h b/src/HYDROGUI/HYDROGUI_Region.h index c5b3ac70..d6eca551 100644 --- a/src/HYDROGUI/HYDROGUI_Region.h +++ b/src/HYDROGUI/HYDROGUI_Region.h @@ -1,12 +1,8 @@ -// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE -// -// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// +// Copyright (C) 2014-2015 EDF-R&D // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -30,6 +26,8 @@ #include #include +class HYDROGUI_Zone; + /** * \class HYDROGUI_Region * \brief Browser item presenting a zone, used for object browser tree creation. @@ -45,16 +43,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