Salome HOME
Exlude the user input during process events by application (Bug #325).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Region.h
index c5b3ac7079600e75ec78a358f4802bdcb6066441..b6db313f3bef027a6b711e68a60225ca843bd4b1 100644 (file)
@@ -30,6 +30,8 @@
 #include <QString>
 #include <QColor>
 
+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<HYDROGUI_Zone*>& theZonesList );
 };
 #endif