Salome HOME
debug of profileOp
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Region.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include "HYDROGUI_Region.h"
20
21 #include "HYDROGUI_Zone.h"
22
23 #include <HYDROData_Region.h>
24 #include <HYDROData_Zone.h>
25 #include <HYDROData_Object.h>
26
27 #include <SUIT_DataObject.h>
28
29 HYDROGUI_Region::HYDROGUI_Region( SUIT_DataObject* theParent, 
30                                   Handle(HYDROData_Region) theData,
31                                   const QString& theParentEntry,
32                                   const bool theIsInOperation )
33 : HYDROGUI_DataObject( theParent, theData, theParentEntry, theIsInOperation ), CAM_DataObject( theParent )
34 {
35 }
36
37 bool HYDROGUI_Region::addZones( const QList<HYDROGUI_Zone*>& theZonesList )
38 {
39   Handle(HYDROData_Region) aRegion = Handle(HYDROData_Region)::DownCast( modelObject() );
40   bool isOk = !aRegion.IsNull();
41   if ( isOk )
42   {
43     Handle(HYDROData_Zone) aZone;
44     for (int i = 0; i < theZonesList.length(); i++ )
45     {
46       aZone = Handle(HYDROData_Zone)::DownCast( theZonesList.at(i)->modelObject() );
47       if ( !aZone.IsNull() )
48       {
49         if ( !( aRegion->AddZone( aZone ) ) )
50         {
51           isOk = false;
52         }
53       }
54     }
55   }
56   return isOk;
57 }