Salome HOME
63249c73daedf1b515ce767a6c1ffe8181ec9a77
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_DataModel.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_DataModel.h"
20
21 #include "HYDROGUI_DataObject.h"
22 #include "HYDROGUI_Module.h"
23 #include "HYDROGUI_Tool.h"
24 #include "HYDROGUI_Tool2.h"
25 #include "HYDROGUI_Zone.h"
26 #include "HYDROGUI_Region.h"
27
28 #include <HYDROData_Bathymetry.h>
29 #include <HYDROData_CalculationCase.h>
30 #include <HYDROGUI_DataModelSync.h>
31 #include <HYDROData_Document.h>
32 #include <HYDROData_DummyObject3D.h>
33 #include <HYDROData_Image.h>
34 #include <HYDROData_ImmersibleZone.h>
35 #include <HYDROData_Iterator.h>
36 #include <HYDROData_Polyline3D.h>
37 #include <HYDROData_PolylineXY.h>
38 #include <HYDROData_Profile.h>
39 #include <HYDROData_VisualState.h>
40 #include <HYDROData_Region.h>
41 #include <HYDROData_Zone.h>
42 #include <HYDROData_Obstacle.h>
43 #include <HYDROData_Channel.h>
44 #include <HYDROData_Digue.h>
45 #include <HYDROData_River.h>
46 #include <HYDROData_Stream.h>
47 #include <HYDROData_StricklerTable.h>
48 #include <HYDROData_LandCoverMap.h>
49
50 #include <CAM_Module.h>
51 #include <CAM_Study.h>
52
53 #include <LightApp_Application.h>
54 #include <LightApp_DataObject.h>
55 #include <LightApp_Study.h>
56
57 #include <SUIT_DataBrowser.h>
58 #include <SUIT_ResourceMgr.h>
59 #include <SUIT_Study.h>
60 #include <SUIT_Tools.h>
61 #include <SUIT_TreeSync.h>
62
63 #include <HYDROData_Document.h>
64
65 #include <TDF_Delta.hxx>
66 #include <TDF_ListIteratorOfDeltaList.hxx>
67
68 #include <QApplication>
69 #include <QDir>
70
71 // #define DEB_GROUPS 1
72 #ifdef DEB_GROUPS
73 #include <HYDROData_ShapesGroup.h>
74 #endif
75
76 static HYDROData_SequenceOfObjects myCopyingObjects;
77
78 const int ENTRY_COLUMN = 2;
79
80
81 HYDROGUI_DataModel::HYDROGUI_DataModel( CAM_Module* theModule )
82 : LightApp_DataModel( theModule )
83 {
84   update( module()->application()->activeStudy()->id() );
85 }
86
87 HYDROGUI_DataModel::~HYDROGUI_DataModel()
88 {
89 }
90
91 bool HYDROGUI_DataModel::create( CAM_Study* theStudy )
92 {
93     bool status = LightApp_DataModel::create( theStudy );
94     if ( status )
95         updateDocument();
96     return status;
97 }
98
99 bool HYDROGUI_DataModel::open( const QString& theURL,
100                                CAM_Study* theStudy,
101                                QStringList theFileList )
102 {
103   LightApp_DataModel::open( theURL, theStudy, theFileList );
104   const int aStudyId = theStudy->id();
105
106   Data_DocError res = DocError_UnknownProblem;
107   if( theFileList.count() >= 2 )
108   {
109     QString aTmpDir = theFileList[0];
110     QString aDataFileName = theFileList[1];
111     QString aStatesFileName = theFileList.count() == 3 ? theFileList[2] : "";
112
113     myStudyURL = theURL;
114     QString aDataFullPath = SUIT_Tools::addSlash( aTmpDir ) + aDataFileName;
115     QString aStatesFullPath = aStatesFileName.isEmpty() ? "" : SUIT_Tools::addSlash( aTmpDir ) + aStatesFileName;
116
117     try
118     {
119       res = HYDROData_Document::Load( (char*)aDataFullPath.toLatin1().constData(), aStudyId );
120     }
121     catch(...)
122     {
123       res = DocError_UnknownProblem;
124     }
125     
126     if ( res != DocError_OK )
127     {
128       module()->application()->putInfo( tr( "LOAD_ERROR" ) );
129       return false;
130     }
131
132     if ( !aStatesFullPath.isEmpty() )
133     {
134       QFile aFile( aStatesFullPath );
135       if( aFile.open( QFile::ReadOnly ) )
136       {
137         myStates = aFile.readAll();
138         aFile.close();
139       }
140     }
141
142     updateDocument();
143   }
144
145   // if the document open was successful, the data model update happens
146   // in the set mode of the module
147   if ( res == DocError_OK )
148     update( aStudyId );
149
150   return true;
151 }
152
153 bool HYDROGUI_DataModel::save( QStringList& theFileList )
154 {
155   if( !module()->application()->activeStudy() )
156     return false;
157   
158   LightApp_DataModel::save( theFileList );
159
160   QString aTmpDir;
161   SUIT_ResourceMgr* resMgr = module()->application()->resourceMgr();
162   bool isMultiFile = false;
163   if ( resMgr )
164     isMultiFile = resMgr->booleanValue( "Study", "multi_file", false );
165
166   // save module data to temporary files
167   LightApp_Study* aStudy = dynamic_cast<LightApp_Study*>( module()->application()->activeStudy() );
168   aTmpDir = aStudy->GetTmpDir( myStudyURL.toLatin1().constData(), isMultiFile ).c_str();
169   
170   // save OCAF data to a temporary file
171   QString aDataFileName = SUIT_Tools::file( myStudyURL, false ) + "_HYDRO.cbf";
172   QString aDataFullPath = aTmpDir + aDataFileName;
173   Data_DocError res = getDocument()->Save( (char*)aDataFullPath.toLatin1().constData() );
174   if( res != DocError_OK )
175   {
176     module()->application()->putInfo( tr( "SAVE_ERROR" ) );
177     return false;
178   }
179
180   // save tree state data to a temporary file
181   LightApp_Application* anApp = dynamic_cast<LightApp_Application*>( module()->application() );
182   QByteArray aStatesData = anApp->objectBrowser()->getOpenStates( ENTRY_COLUMN );
183   QString aStatesFileName = SUIT_Tools::file( myStudyURL, false ) + "_HYDRO_tree_states.txt";
184   QString aStatesFullPath = aTmpDir + aStatesFileName;
185   QFile aFile( aStatesFullPath );
186   if( aFile.open( QFile::WriteOnly ) )
187   {
188     aFile.write( aStatesData );
189     aFile.close();
190   }
191
192   // add temporary files to the list
193   theFileList.append( aTmpDir );
194   theFileList.append( aDataFileName );
195   theFileList.append( aStatesFileName );
196
197   return true;
198 }
199
200 bool HYDROGUI_DataModel::saveAs( const QString& theURL,
201                                  CAM_Study*,
202                                  QStringList& theFileList )
203 {
204   myStudyURL = theURL;
205   return save( theFileList );
206 }
207
208 bool HYDROGUI_DataModel::close()
209 {
210   HYDROGUI_Module* aModule = dynamic_cast<HYDROGUI_Module*>( module() );
211   if ( aModule )
212       aModule->clearCache();
213   return true;
214 }
215
216 bool HYDROGUI_DataModel::dumpPython( const QString& theURL,
217                                      CAM_Study*     theStudy,
218                                      bool           isMultiFile,
219                                      QStringList&   theListOfFiles )
220 {
221   LightApp_DataModel::dumpPython( theURL, theStudy, isMultiFile, theListOfFiles );
222
223   int aStudyId = theStudy->id();
224
225   LightApp_Study* aStudy = ::qobject_cast<LightApp_Study*>( theStudy );
226   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( aStudyId );
227   if ( aDocument.IsNull() || !aStudy )
228     return false;
229
230   QString aDir = aStudy->GetTmpDir( theURL.toLatin1().constData(), isMultiFile ).c_str();
231   QString aFileToExport = aDir + QString( QDir::separator() ) + "HYDRO.py";
232
233   bool aRes = aDocument->DumpToPython( aFileToExport, isMultiFile );
234   if ( aRes )
235   {
236     theListOfFiles.append( aDir );
237     theListOfFiles.append( aFileToExport );
238   }
239
240   return aRes;
241 }
242
243 bool HYDROGUI_DataModel::isModified() const
244 {
245   return getDocument()->IsModified();
246 }
247
248 bool HYDROGUI_DataModel::isSaved() const
249 {
250   return true;
251 }
252
253 void HYDROGUI_DataModel::update( const int theStudyId )
254 {
255   LightApp_Application* anApp = dynamic_cast<LightApp_Application*>( module()->application() );
256   if( !anApp )
257     return;
258
259   SUIT_DataObject* aStudyRoot = anApp->activeStudy()->root();
260   if( !aStudyRoot )
261     return;
262
263   // create a new root object
264   CAM_DataObject* aNewRootObj = new CAM_DataObject();
265
266   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theStudyId );
267   if( aDocument.IsNull() )
268     return;
269
270   // Create root objects:
271
272   // IMAGES
273   LightApp_DataObject* anImageRootObj = createObject( aNewRootObj, tr( partitionName( KIND_IMAGE ).toLatin1() ) );
274
275   // BATHYMETRY
276   LightApp_DataObject* aBathymetryRootObj = createObject( aNewRootObj, tr( partitionName( KIND_BATHYMETRY ).toLatin1() ) );
277
278   // POLYLINES
279   LightApp_DataObject* aPolylineRootObj = createObject( aNewRootObj, tr( partitionName( KIND_POLYLINEXY ).toLatin1() ) );
280
281   // PROFILES
282   LightApp_DataObject* aProfileRootObj = createObject( aNewRootObj, tr( partitionName( KIND_PROFILE ).toLatin1() ) );
283
284   // POLYLINES 3D
285   LightApp_DataObject* aPolyline3DRootObj = createObject( aNewRootObj, tr( partitionName( KIND_POLYLINE ).toLatin1() ) );
286
287   // NATURAL OBJECTS
288   LightApp_DataObject* aNaturalObjectsRootObj = createObject( aNewRootObj, tr( partitionName( KIND_NATURAL_OBJECT ).toLatin1() ) );
289
290   // ARTIFICIAL OBJECTS
291   LightApp_DataObject* anArtificialObjectsRootObj = createObject( aNewRootObj, tr( partitionName( KIND_ARTIFICIAL_OBJECT ).toLatin1() ) );
292
293   // OBSTACLES
294   LightApp_DataObject* anObstaclesRootObj = createObject( aNewRootObj, tr( partitionName( KIND_OBSTACLE ).toLatin1() ) );
295
296   // STRICKLER TABLES
297   LightApp_DataObject* aStricklerTablesRootObj = createObject( aNewRootObj, tr( partitionName( KIND_STRICKLER_TABLE ).toLatin1() ) );
298
299   // LAND COVER MAPS
300   LightApp_DataObject* aLandCoversRootObj = createObject( aNewRootObj, tr( partitionName( KIND_LAND_COVER_MAP ).toLatin1() ) );
301
302   // CALCULATION CASES
303   LightApp_DataObject* aCalculRootObj = createObject( aNewRootObj, tr( partitionName( KIND_CALCULATION ).toLatin1() ) );
304
305   // VISUAL STATES
306   LightApp_DataObject* aVisualStateRootObj = createObject( aNewRootObj, tr( partitionName( KIND_VISUAL_STATE ).toLatin1() ) );
307
308   int aNoStricklerTableObj = 0;
309   HYDROData_Iterator anIterator( aDocument, KIND_UNKNOWN );
310   for( ; anIterator.More(); anIterator.Next() ) {
311     LightApp_DataObject* obj = 0;
312     Handle(HYDROData_Entity) anObj = anIterator.Current();
313
314     if ( !anObj.IsNull() )
315     {
316       switch ( anObj->GetKind() ) {
317         case KIND_IMAGE:
318         {
319           Handle(HYDROData_Image) anImageObj =
320             Handle(HYDROData_Image)::DownCast( anObj );
321           if( !anImageObj.IsNull() ) {
322             obj = createObject( anImageRootObj, anImageObj );
323           }
324
325           break;
326         }
327         case KIND_BATHYMETRY:
328         {
329           Handle(HYDROData_Bathymetry) aBathymetryObj =
330             Handle(HYDROData_Bathymetry)::DownCast( anObj );
331           if( !aBathymetryObj.IsNull() ) {
332             obj = createObject( aBathymetryRootObj, aBathymetryObj );
333           }
334
335           break;
336         }
337         case KIND_CHANNEL:
338         {
339           Handle(HYDROData_Channel) aChannelObj =
340             Handle(HYDROData_Channel)::DownCast( anObj );
341           if( !aChannelObj.IsNull() ) {
342             obj = createObject( anArtificialObjectsRootObj, aChannelObj );
343           }
344
345           break;
346         }
347         case KIND_DIGUE:
348         {
349           Handle(HYDROData_Digue) aDigueObj =
350             Handle(HYDROData_Digue)::DownCast( anObj );
351           if( !aDigueObj.IsNull() ) {
352             obj = createObject( anArtificialObjectsRootObj, aDigueObj );
353           }
354
355           break;
356         }
357         case KIND_IMMERSIBLE_ZONE:
358         {
359           Handle(HYDROData_ImmersibleZone) anImmersibleZoneObj =
360             Handle(HYDROData_ImmersibleZone)::DownCast( anObj );
361           if( !anImmersibleZoneObj.IsNull() ) {
362             obj = createObject( aNaturalObjectsRootObj, anImmersibleZoneObj );
363           }
364
365           break;
366         }
367         case KIND_RIVER:
368         {
369           Handle(HYDROData_River) aRiverObj =
370             Handle(HYDROData_River)::DownCast( anObj );
371           if( !aRiverObj.IsNull() ) {
372             obj = createObject( aNaturalObjectsRootObj, aRiverObj );
373           }
374
375           break;
376         }
377         case KIND_STREAM:
378         {
379           Handle(HYDROData_Stream) aStreamObj =
380             Handle(HYDROData_Stream)::DownCast( anObj );
381           if( !aStreamObj.IsNull() ) {
382             obj = createObject( aNaturalObjectsRootObj, aStreamObj );
383           }
384
385           break;
386         }
387         case KIND_OBSTACLE:
388         {
389           Handle(HYDROData_Obstacle) anObstacleObj =
390             Handle(HYDROData_Obstacle)::DownCast( anObj );
391           if( !anObstacleObj.IsNull() ) {
392             obj = createObject( anObstaclesRootObj, anObstacleObj );
393           }
394
395           break;
396         }
397                 case KIND_STRICKLER_TABLE:
398         {
399           Handle(HYDROData_StricklerTable) aStricklerTableObj =
400             Handle(HYDROData_StricklerTable)::DownCast( anObj );
401           if( !aStricklerTableObj.IsNull() ) {
402             obj = createObject( aStricklerTablesRootObj, aStricklerTableObj );
403           }
404                   aNoStricklerTableObj++;
405
406           break;
407         }
408         case KIND_LAND_COVER_MAP:
409         {
410           Handle(HYDROData_LandCoverMap) aLandCoverMapObj =
411             Handle(HYDROData_LandCoverMap)::DownCast( anObj );
412           if( !aLandCoverMapObj.IsNull() ) {
413             obj = createObject( aLandCoversRootObj, aLandCoverMapObj );
414           }
415
416           break;
417         }
418         case KIND_CALCULATION:
419         {
420           Handle(HYDROData_CalculationCase) aCalculObj =
421             Handle(HYDROData_CalculationCase)::DownCast( anObj );
422           if( !aCalculObj.IsNull() ) {
423             obj = createObject( aCalculRootObj, aCalculObj );
424           }
425
426           break;
427         }
428         case KIND_POLYLINEXY:
429         {
430           Handle(HYDROData_PolylineXY) aPolylineObj =
431             Handle(HYDROData_PolylineXY)::DownCast( anObj );
432           if( !aPolylineObj.IsNull() ) {
433             obj = createObject( aPolylineRootObj, aPolylineObj );
434           }
435
436           break;
437         }
438         case KIND_POLYLINE:
439         {
440           Handle(HYDROData_Polyline3D) aPolylineObj =
441             Handle(HYDROData_Polyline3D)::DownCast( anObj );
442           if( !aPolylineObj.IsNull() ) {
443             obj = createObject( aPolyline3DRootObj, aPolylineObj );
444           }
445
446           break;
447         }
448         case KIND_PROFILE:
449         {
450           Handle(HYDROData_Profile) aProfileObj =
451             Handle(HYDROData_Profile)::DownCast( anObj );
452           if( !aProfileObj.IsNull() ) {
453             obj = createObject( aProfileRootObj, aProfileObj );
454           }
455
456           break;
457         }
458         case KIND_VISUAL_STATE:
459         {
460           Handle(HYDROData_VisualState) aVisualStateObj =
461             Handle(HYDROData_VisualState)::DownCast( anObj );
462           if( !aVisualStateObj.IsNull() ) {
463             obj = createObject( aVisualStateRootObj, aVisualStateObj );
464           }
465
466           break;
467         }
468       }
469     }
470   }
471
472   // Create default Strickler table object
473   if ( aNoStricklerTableObj == 0 )
474     createDefaultStricklerTable( aDocument, aStricklerTablesRootObj );
475
476   //if( SUIT_DataBrowser* anObjectBrowser = anApp->objectBrowser() )
477   //{
478   //  anObjectBrowser->setAutoOpenLevel( 3 );
479   //  anObjectBrowser->openLevels();
480   //}
481
482   HYDROGUI_DataModelSync aSync( aNewRootObj );
483   SUIT_DataObject* aRoot = root();
484   bool isNewDoc = aRoot==0;
485   if( isNewDoc )
486     aRoot = createRootModuleObject( aStudyRoot );
487   ::synchronize < suitPtr, suitPtr, HYDROGUI_DataModelSync >
488     ( aNewRootObj, aRoot, aSync );
489
490   SUIT_DataBrowser* ob = anApp->objectBrowser();
491
492   if ( !myStates.isEmpty() )
493   {
494     ob->updateTree();
495     ob->setAutoOpenLevel( 1 );
496     //ob->setOpenStates( myStates, ENTRY_COLUMN );
497     myStates.clear();
498   }
499 }
500
501 HYDROGUI_DataObject* HYDROGUI_DataModel::getDataObject( const Handle(HYDROData_Entity)& theModelObject )
502 {
503   HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>(
504     findObject( HYDROGUI_DataObject::dataObjectEntry( theModelObject ) ) );
505   return aGuiObj;
506 }
507
508 HYDROGUI_DataObject* HYDROGUI_DataModel::getReferencedDataObject( HYDROGUI_DataObject* theObject )
509 {
510   return NULL; // to do if necessary
511 }
512
513 SUIT_DataObject* HYDROGUI_DataModel::findObject( const QString& theEntry ) const
514 {
515   LightApp_Application* anApp = dynamic_cast<LightApp_Application*>( module()->application() );
516   return anApp ? anApp->findObject( theEntry ) : 0;
517 }
518
519 void HYDROGUI_DataModel::update( LightApp_DataObject* theObject,
520                                  LightApp_Study* theStudy )
521 {
522   if( !theStudy )
523     theStudy = dynamic_cast<LightApp_Study*>( module()->application()->activeStudy()) ;
524   if( theStudy )
525     update( theStudy->id() );
526 }
527
528 CAM_DataObject* HYDROGUI_DataModel::createRootModuleObject( SUIT_DataObject* theParent )
529 {
530   CAM_ModuleObject* aRootObj = createModuleObject( theParent );
531   aRootObj->setDataModel( this );
532   setRoot( aRootObj );
533   return aRootObj;
534 }
535
536 void HYDROGUI_DataModel::updateModel()
537 {
538   HYDROGUI_Module* aModule = dynamic_cast<HYDROGUI_Module*>( module() );
539   if( aModule )
540     update( aModule->getStudyId() );
541 }
542
543 Handle(HYDROData_Entity) HYDROGUI_DataModel::objectByEntry( const QString& theEntry,
544                                                             const ObjectKind theObjectKind )
545 {
546   QString anEntry = theEntry;
547   if( anEntry.indexOf( "_" ) != -1 ) // reference object
548     anEntry = anEntry.section( "_", -1 );
549
550   Handle(HYDROData_Document) aDocument = getDocument();
551   if( !aDocument.IsNull() )
552   {
553     HYDROData_Iterator anIterator( aDocument, theObjectKind );
554     for( ; anIterator.More(); anIterator.Next() )
555     {
556       Handle(HYDROData_Entity) anObject = anIterator.Current();
557       if( !anObject.IsNull() )
558       {
559         QString anEntryRef = HYDROGUI_DataObject::dataObjectEntry( anObject );
560         if( anEntryRef == anEntry )
561           return anObject;
562       }
563     }
564   }
565   return NULL;
566 }
567
568 bool HYDROGUI_DataModel::canUndo() const
569 {
570   return getDocument()->CanUndo();
571 }
572
573 bool HYDROGUI_DataModel::canRedo() const
574 {
575   return getDocument()->CanRedo();
576 }
577
578 QStringList HYDROGUI_DataModel::undoNames() const
579 {
580   QStringList aNames;
581   for( TDF_ListIteratorOfDeltaList anIter( getDocument()->GetUndos() ); anIter.More(); anIter.Next() )
582     aNames.prepend( HYDROGUI_Tool::ToQString( anIter.Value()->Name() ) );
583   return aNames;
584 }
585
586 QStringList HYDROGUI_DataModel::redoNames() const
587 {
588   QStringList aNames;
589   for( TDF_ListIteratorOfDeltaList anIter( getDocument()->GetRedos() ); anIter.More(); anIter.Next() )
590     aNames.append( HYDROGUI_Tool::ToQString( anIter.Value()->Name() ) );
591   return aNames;
592 }
593
594 void HYDROGUI_DataModel::clearUndos()
595 {
596   getDocument()->ClearUndos();
597 }
598
599 void HYDROGUI_DataModel::clearRedos()
600 {
601   getDocument()->ClearRedos();
602 }
603
604 bool HYDROGUI_DataModel::undo()
605 {
606   try 
607   {
608     getDocument()->Undo();
609   }
610   catch ( Standard_Failure )
611   {
612     return false;
613   }
614   return true;
615 }
616
617 bool HYDROGUI_DataModel::redo()
618 {
619   try 
620   {
621     getDocument()->Redo();
622   }
623   catch ( Standard_Failure )
624   {
625     return false;
626   }
627   return true;
628 }
629
630 bool HYDROGUI_DataModel::canCopy()
631 {
632   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( (HYDROGUI_Module*)module() );
633   bool isCanCopy = !aSeq.IsEmpty();
634
635   for ( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ ) {
636     Handle(HYDROData_Entity) anObject = aSeq.Value( anIndex );
637     if( !anObject.IsNull() ) {
638       ObjectKind aKind = anObject->GetKind();
639       bool isUnrecognized = aKind <= KIND_UNKNOWN || aKind > KIND_LAST;
640       bool isChildObject = aKind == KIND_DUMMY_3D || 
641                            aKind == KIND_ZONE ||
642                            aKind == KIND_SHAPES_GROUP || 
643                            aKind == KIND_SPLIT_GROUP;
644       if ( isUnrecognized || isChildObject ) {
645         isCanCopy = false;
646         break;
647       }
648     }
649   }
650   
651   return isCanCopy;
652 }
653
654 bool HYDROGUI_DataModel::canPaste()
655 {
656   for( int anIndex = 1, aLength = myCopyingObjects.Length(); anIndex <= aLength; anIndex++ )
657   {
658     Handle(HYDROData_Entity) anObject = myCopyingObjects.Value( anIndex );
659     if( !anObject.IsNull() && !anObject->IsRemoved() )
660       return true;
661   }
662   return false;
663 }
664
665 bool HYDROGUI_DataModel::copy()
666 {
667   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( (HYDROGUI_Module*)module() );
668   changeCopyingObjects( aSeq );
669   return true;
670 }
671
672 bool HYDROGUI_DataModel::paste()
673 {
674   bool anIsChanged = false;
675   for( int anIndex = 1, aLength = myCopyingObjects.Length(); anIndex <= aLength; anIndex++ )
676   {
677     Handle(HYDROData_Entity) anObject = myCopyingObjects.Value( anIndex );
678     if( !anObject.IsNull() && !anObject->IsRemoved() )
679     {
680       ObjectKind aKind = anObject->GetKind();
681       Handle(HYDROData_Entity) aClone = getDocument()->CreateObject( aKind );
682       if( !aClone.IsNull() )
683       {
684         anObject->CopyTo( aClone, true );
685         anIsChanged = true;
686
687         // remove Z layer
688         aClone->RemoveZLevel();
689       }
690     }
691   }
692   return anIsChanged;
693 }
694
695 void HYDROGUI_DataModel::changeCopyingObjects( const HYDROData_SequenceOfObjects& theSeq )
696 {
697   myCopyingObjects.Assign( theSeq );
698 }
699
700 QString HYDROGUI_DataModel::partitionName( const ObjectKind theObjectKind )
701 {
702   switch( theObjectKind )
703   {
704     case KIND_IMAGE:             return "IMAGES";
705     case KIND_POLYLINE:          return "POLYLINES_3D";
706     case KIND_POLYLINEXY:        return "POLYLINES";
707     case KIND_PROFILE:           return "PROFILES";
708     case KIND_VISUAL_STATE:      return "VISUAL_STATES";
709     case KIND_BATHYMETRY:        return "BATHYMETRIES";
710     case KIND_CALCULATION:       return "CALCULATION_CASES";
711     case KIND_OBSTACLE:          return "OBSTACLES";
712     case KIND_ARTIFICIAL_OBJECT: return "ARTIFICIAL_OBJECTS";
713     case KIND_NATURAL_OBJECT:    return "NATURAL_OBJECTS";
714     case KIND_STRICKLER_TABLE:   return "STRICKLER_TABLES";
715     case KIND_LAND_COVER_MAP:    return "LAND_COVER_MAPS";
716     default: break;
717   }
718   return QString();
719 }
720
721 Handle(HYDROData_Document) HYDROGUI_DataModel::getDocument() const
722 {
723   int aStudyId = module()->application()->activeStudy()->id();
724   return HYDROData_Document::Document( aStudyId );
725 }
726
727 LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject*         theParent,
728                                                        Handle(HYDROData_Entity) theModelObject,
729                                                        const QString&           theParentEntry,
730                                                        const bool               theIsBuildTree )
731 {
732   HYDROGUI_DataObject* aResObj = new HYDROGUI_DataObject( theParent, theModelObject, theParentEntry );
733
734   const ObjectKind aKind = theModelObject->GetKind();
735   bool visibility = aKind == KIND_IMAGE || aKind == KIND_POLYLINEXY || aKind == KIND_POLYLINE ||
736                     aKind == KIND_SHAPES_GROUP || aKind == KIND_SPLIT_GROUP || aKind == KIND_ZONE ||
737                     aKind == KIND_IMMERSIBLE_ZONE || aKind == KIND_REGION || aKind == KIND_BATHYMETRY ||
738                     aKind == KIND_OBSTACLE || aKind == KIND_STREAM || aKind == KIND_CHANNEL ||
739                     aKind == KIND_DIGUE || aKind == KIND_DUMMY_3D || aKind == KIND_LAND_COVER_MAP;
740   if ( !visibility )
741   {
742     Handle(HYDROData_Profile) aProfObj = Handle(HYDROData_Profile)::DownCast( theModelObject );
743     visibility = !aProfObj.IsNull() && aProfObj->IsValid();
744   }
745
746   if ( aKind == KIND_REGION )
747   {
748       QString an = aResObj->name();
749       int a = 0;
750   }
751
752   if ( visibility )
753   {
754     setObjectVisibilityState( theModelObject, aResObj );
755   }
756
757   if ( theIsBuildTree )
758   {
759     buildObjectTree( theParent, aResObj, theParentEntry );
760   }
761
762   return aResObj;
763 }
764
765 LightApp_DataObject* HYDROGUI_DataModel::buildObject( SUIT_DataObject*     theParent,
766                                                       HYDROGUI_DataObject* theObject,
767                                                       const QString&       theParentEntry,
768                                                       const bool           theIsBuildTree,
769                                                       const bool           theIsInOperation )
770 {
771   if ( theIsBuildTree )
772   {
773     buildObjectTree( theParent, theObject, theParentEntry, theIsInOperation );
774   }
775   return theObject;
776 }
777
778 LightApp_DataObject* HYDROGUI_DataModel::createZone( SUIT_DataObject*       theParent,
779                                                      Handle(HYDROData_Zone) theModelObject,
780                                                      const QString&         theParentEntry,
781                                                      const bool             theIsBuildTree,
782                                                      const bool             theIsInOperation )
783 {
784   HYDROGUI_Zone* aZone = new HYDROGUI_Zone( theParent, theModelObject, theParentEntry, theIsInOperation );
785   LightApp_DataObject* aDataObj = buildObject( theParent, aZone, theParentEntry, theIsBuildTree, theIsInOperation );
786
787   setObjectVisibilityState( theModelObject, aZone );
788
789   return aDataObj;
790 }
791
792 LightApp_DataObject* HYDROGUI_DataModel::createRegion( SUIT_DataObject*         theParent,
793                                                        Handle(HYDROData_Region) theModelObject,
794                                                        const QString&           theParentEntry,
795                                                        const bool               theIsBuildTree,
796                                                        const bool               theIsInOperation )
797 {
798   return buildObject( theParent, new HYDROGUI_Region( theParent, theModelObject, theParentEntry, theIsInOperation ), 
799     theParentEntry, theIsBuildTree, theIsInOperation );
800 }
801
802 void HYDROGUI_DataModel::createDefaultStricklerTable( const Handle(HYDROData_Document)& theDocument,
803                                                       LightApp_DataObject*              theParent )
804 {
805   // Create default Strickler table object
806   Handle(HYDROData_StricklerTable) aStricklerTableObj =
807     Handle(HYDROData_StricklerTable)::DownCast( theDocument->CreateObject(KIND_STRICKLER_TABLE) );      
808   if ( !aStricklerTableObj.IsNull() )
809   {
810     SUIT_ResourceMgr* resMgr = module()->application()->resourceMgr();
811     QString defTablePath = resMgr->path( "resources", module()->name(), tr( "DEFAULT_STRICKLER_TABLE_FILE" ) );
812     aStricklerTableObj->Import( defTablePath );
813         // Set name
814     QString aStricklerTableName;
815     if ( aStricklerTableObj->GetName().isEmpty() )
816     {
817       HYDROGUI_Module* aModule = dynamic_cast<HYDROGUI_Module*>( module() );
818       if ( aModule )
819         aStricklerTableName = HYDROGUI_Tool::GenerateObjectName( aModule, tr( "DEFAULT_STRICKLER_TABLE_NAME" ) );
820     }
821     if ( aStricklerTableObj->GetName() != aStricklerTableName )
822       aStricklerTableObj->SetName( aStricklerTableName );
823
824     aStricklerTableObj->Update();
825
826     LightApp_DataObject* obj = createObject( theParent, aStricklerTableObj );
827   }
828 }
829
830 LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject* theParent,
831                                                        const QString&   theName,
832                                                        const QString&   theParentEntry )
833 {
834   return new HYDROGUI_NamedObject( theParent, theName, theParentEntry );
835 }
836
837 void HYDROGUI_DataModel::buildObjectPartition( SUIT_DataObject*                   theObject,
838                                                const HYDROData_SequenceOfObjects& theObjects,
839                                                const QString&                     thePartName,
840                                                const bool                         theIsCreateEmpty )
841 {
842   if ( theObjects.IsEmpty() && !theIsCreateEmpty )
843     return;
844
845   HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>( theObject );
846   if ( !aGuiObj )
847     return;
848
849   LightApp_DataObject* aPartSect = 
850     createObject( aGuiObj, thePartName, aGuiObj->entry() );
851
852   HYDROData_SequenceOfObjects::Iterator anIter( theObjects );
853   for ( ; anIter.More(); anIter.Next() )
854   {
855     Handle(HYDROData_Entity) anObj = anIter.Value();
856     if( !anObj.IsNull() && !anObj->IsRemoved() )
857       createObject( aPartSect, anObj, aGuiObj->entry(), false );
858   }
859 }
860
861 void HYDROGUI_DataModel::buildObjectTree( SUIT_DataObject* theParent,
862                                           SUIT_DataObject* theObject,
863                                           const QString&   theParentEntry,
864                                           const bool       theIsInOperation )
865 {
866   HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>( theObject );
867   if ( !aGuiObj )
868     return;
869
870   Handle(HYDROData_Entity) aDataObj = aGuiObj->modelObject();
871   if ( aDataObj.IsNull() )
872     return;
873
874   if ( aDataObj->IsKind( STANDARD_TYPE(HYDROData_Object) ) )
875   {
876     Handle(HYDROData_Object) aGeomObj =
877       Handle(HYDROData_Object)::DownCast( aDataObj );
878
879     Handle(HYDROData_DummyObject3D) anObject3D = aGeomObj->GetObject3D();
880     if ( !anObject3D.IsNull() )
881       createObject( aGuiObj, anObject3D, "", false );
882
883 #ifdef DEB_GROUPS
884     HYDROData_SequenceOfObjects anObjGroups = aGeomObj->GetGroups();
885     buildObjectPartition( aGuiObj, anObjGroups, tr( "OBJECT_GROUPS" ), false );
886 #endif
887   }
888
889   ObjectKind anObjectKind = aDataObj->GetKind();
890
891   if ( anObjectKind == KIND_IMAGE )
892   {
893     Handle(HYDROData_Image) anImageObj =
894       Handle(HYDROData_Image)::DownCast( aDataObj );
895     for ( int anIndex = 0, aNbRef = anImageObj->NbReferences(); anIndex < aNbRef; anIndex++ )
896     {
897       Handle(HYDROData_Entity) aRefObj = anImageObj->Reference( anIndex );
898       if ( !aRefObj.IsNull() && !aRefObj->IsRemoved() )
899         createObject( aGuiObj, aRefObj, aGuiObj->entry(), false );
900     }
901   }
902   else if ( anObjectKind == KIND_IMMERSIBLE_ZONE )
903   {
904     Handle(HYDROData_ImmersibleZone) aZoneObj =
905       Handle(HYDROData_ImmersibleZone)::DownCast( aDataObj );
906
907     LightApp_DataObject* aPolylineSect = 
908       createObject( aGuiObj, tr( "ZONE_POLYLINE" ), aGuiObj->entry() );
909
910     Handle(HYDROData_PolylineXY) aPolyline = aZoneObj->GetPolyline();
911     if ( !aPolyline.IsNull() && !aPolyline->IsRemoved() )
912       createObject( aPolylineSect, aPolyline, aGuiObj->entry(), false );
913
914     LightApp_DataObject* aBathSect = 
915       createObject( aGuiObj, tr( "ZONE_BATHYMETRY" ), aGuiObj->entry() );
916
917     Handle(HYDROData_IAltitudeObject) anAltitudeObj = aZoneObj->GetAltitudeObject();
918     if ( !anAltitudeObj.IsNull() && !anAltitudeObj->IsRemoved() )
919       createObject( aBathSect, anAltitudeObj, aGuiObj->entry(), false );
920   }
921   else if ( anObjectKind == KIND_POLYLINE )
922   {
923     Handle(HYDROData_Polyline3D) aPolyline3D =
924       Handle(HYDROData_Polyline3D)::DownCast( aDataObj );
925
926     LightApp_DataObject* aPolylineSect = 
927       createObject( aGuiObj, tr( "POLYLINE3D_POLYLINE" ), aGuiObj->entry() );
928
929     Handle(HYDROData_PolylineXY) aPolylineXY = aPolyline3D->GetPolylineXY();
930     if ( !aPolylineXY.IsNull() && !aPolylineXY->IsRemoved() )
931       createObject( aPolylineSect, aPolylineXY, aGuiObj->entry(), false );
932
933     LightApp_DataObject* aProfileSect = 
934       createObject( aGuiObj, tr( "POLYLINE3D_PROFILE" ), aGuiObj->entry() );
935
936     Handle(HYDROData_ProfileUZ) aProfileUZ = aPolyline3D->GetProfileUZ();
937     if ( aProfileUZ.IsNull() || aProfileUZ->IsRemoved() )
938       aProfileUZ = aPolyline3D->GetChildProfileUZ( false );
939
940     if ( !aProfileUZ.IsNull() && !aProfileUZ->IsRemoved() )
941     {
942       Handle(HYDROData_Profile) aProfile = 
943         Handle(HYDROData_Profile)::DownCast( aProfileUZ->GetFatherObject() );
944       if ( !aProfile.IsNull() && !aProfile->IsRemoved() )
945         createObject( aProfileSect, aProfile, aGuiObj->entry(), false );
946     }
947
948     LightApp_DataObject* aBathSect = 
949       createObject( aGuiObj, tr( "POLYLINE3D_BATHYMETRY" ), aGuiObj->entry() );
950
951     Handle(HYDROData_IAltitudeObject) anAltitudeObj = aPolyline3D->GetAltitudeObject();
952     if ( !anAltitudeObj.IsNull() && !anAltitudeObj->IsRemoved() )
953       createObject( aBathSect, anAltitudeObj, aGuiObj->entry(), false );
954   }
955   else if ( anObjectKind == KIND_CALCULATION )
956   {
957     Handle(HYDROData_CalculationCase) aCaseObj =
958       Handle(HYDROData_CalculationCase)::DownCast( aDataObj );
959
960     LightApp_DataObject* aPolylineSect = 
961       createObject( aGuiObj, tr( "CASE_BOUNDARY" ), aGuiObj->entry() );
962
963     Handle(HYDROData_PolylineXY) aPolyline = aCaseObj->GetBoundaryPolyline();
964     if ( !aPolyline.IsNull() && !aPolyline->IsRemoved() )
965       createObject( aPolylineSect, aPolyline, aGuiObj->entry(), false );
966
967     LightApp_DataObject* aCaseAOSect = 
968       createObject( aGuiObj, tr( partitionName( KIND_ARTIFICIAL_OBJECT ).toLatin1() ),
969                     aGuiObj->entry() );
970     LightApp_DataObject* aCaseNOSect = 
971       createObject( aGuiObj, tr( partitionName( KIND_NATURAL_OBJECT ).toLatin1() ),
972                     aGuiObj->entry() );
973
974     HYDROData_SequenceOfObjects aSeq = aCaseObj->GetGeometryObjects();
975     HYDROData_SequenceOfObjects::Iterator aGOIter( aSeq );
976     Handle(HYDROData_Entity) anEntity;
977     Handle(HYDROData_ArtificialObject) anAObject;
978     Handle(HYDROData_NaturalObject) aNObject;
979     for ( ; aGOIter.More(); aGOIter.Next() )
980     {
981       anEntity = aGOIter.Value();
982       if ( anEntity.IsNull() )
983         continue;
984       anAObject = Handle(HYDROData_ArtificialObject)::DownCast( anEntity );
985       if ( !anAObject.IsNull() )
986         createObject( aCaseAOSect, anAObject, aGuiObj->entry(), false );
987       else
988       {
989         aNObject = Handle(HYDROData_NaturalObject)::DownCast( anEntity );
990         if ( !aNObject.IsNull() )
991           createObject( aCaseNOSect, aNObject, aGuiObj->entry(), false );
992       }
993     }
994
995     LightApp_DataObject* aLandCoverMapSect = 
996       createObject( aGuiObj, tr( "CASE_LAND_COVER_MAP" ), aGuiObj->entry() );
997
998     Handle(HYDROData_LandCoverMap) aLandCoverMap = aCaseObj->GetLandCoverMap();
999     if ( !aLandCoverMap.IsNull() && !aLandCoverMap->IsRemoved() )
1000       createObject( aLandCoverMapSect, aLandCoverMap, aGuiObj->entry(), false );
1001
1002     LightApp_DataObject* aCaseRegionsSect = 
1003       createObject( aGuiObj, tr( "CASE_REGIONS" ), aGuiObj->entry() );
1004
1005     HYDROData_SequenceOfObjects aCaseRegions = aCaseObj->GetRegions();
1006     HYDROData_SequenceOfObjects::Iterator anIter( aCaseRegions );
1007     for ( ; anIter.More(); anIter.Next() )
1008     {
1009       Handle(HYDROData_Region) aCaseRegion =
1010         Handle(HYDROData_Region)::DownCast( anIter.Value() );
1011       if( !aCaseRegion.IsNull() && !aCaseRegion->IsRemoved() )
1012         createRegion( aCaseRegionsSect, aCaseRegion, "", true, theIsInOperation );
1013     }
1014    
1015 #ifdef DEB_GROUPS
1016     HYDROData_SequenceOfObjects aCalcGroups = aCaseObj->GetGeometryGroups();
1017     buildObjectPartition( aGuiObj, aCalcGroups, tr( "OBJECT_GROUPS" ), false );
1018
1019     HYDROData_SequenceOfObjects aCalcSplitGroups = aCaseObj->GetSplitGroups();
1020     buildObjectPartition( aGuiObj, aCalcSplitGroups, tr( "CASE_SPLIT_GROUPS" ), false );
1021 #endif
1022
1023   }
1024   else if ( anObjectKind == KIND_REGION )
1025   {
1026     Handle(HYDROData_Region) aRegionObj =
1027       Handle(HYDROData_Region)::DownCast( aDataObj );
1028
1029     HYDROData_SequenceOfObjects aRegionZones = aRegionObj->GetZones();
1030     HYDROData_SequenceOfObjects::Iterator anIter( aRegionZones );
1031     for ( ; anIter.More(); anIter.Next() )
1032     {
1033       Handle(HYDROData_Zone) aRegionZone =
1034         Handle(HYDROData_Zone)::DownCast( anIter.Value() );
1035       if( !aRegionZone.IsNull() && !aRegionZone->IsRemoved() )
1036         createZone( aGuiObj, aRegionZone, "", true, theIsInOperation );
1037     }
1038   }
1039   else if ( anObjectKind == KIND_PROFILE )
1040   {
1041     Handle(HYDROData_Profile) aProfileObj =
1042       Handle(HYDROData_Profile)::DownCast( aDataObj );
1043
1044     aGuiObj->setIsValid( aProfileObj->IsValid() );
1045   }
1046   else if ( anObjectKind == KIND_CHANNEL || anObjectKind == KIND_DIGUE )
1047   {
1048     Handle(HYDROData_Channel) aChannelObj =
1049       Handle(HYDROData_Channel)::DownCast( aDataObj );
1050
1051     LightApp_DataObject* aGuideLineSect = 
1052       createObject( aGuiObj, tr( "CHANNEL_GUIDE_LINE" ), aGuiObj->entry() );
1053     Handle(HYDROData_Polyline3D) aGuideLine = aChannelObj->GetGuideLine();
1054     if ( !aGuideLine.IsNull() && !aGuideLine->IsRemoved() ) {
1055       createObject( aGuideLineSect, aGuideLine, aGuiObj->entry(), false );
1056     }
1057
1058     LightApp_DataObject* aProfileSect = 
1059       createObject( aGuiObj, tr( "CHANNEL_PROFILE" ), aGuiObj->entry() );
1060     Handle(HYDROData_Profile) aProfile = aChannelObj->GetProfile();
1061     if ( !aProfile.IsNull() && !aProfile->IsRemoved() ) {
1062       createObject( aProfileSect, aProfile, aGuiObj->entry(), false );
1063     }
1064   }
1065   else if ( anObjectKind == KIND_STREAM )
1066   {
1067     Handle(HYDROData_Stream) aStreamObj =
1068       Handle(HYDROData_Stream)::DownCast( aDataObj );
1069
1070     LightApp_DataObject* aHydraulicAxisSect = 
1071       createObject( aGuiObj, tr( "STREAM_HYDRAULIC_AXIS" ), aGuiObj->entry() );
1072     Handle(HYDROData_PolylineXY) aHydraulicAxis = aStreamObj->GetHydraulicAxis();
1073     if ( !aHydraulicAxis.IsNull() && !aHydraulicAxis->IsRemoved() ) {
1074       createObject( aHydraulicAxisSect, aHydraulicAxis, aGuiObj->entry(), false );
1075     }
1076
1077     HYDROData_SequenceOfObjects aProfiles = aStreamObj->GetProfiles();
1078     buildObjectPartition( aGuiObj, aProfiles, tr( "STREAM_PROFILES" ), true );
1079
1080     Handle(HYDROData_Polyline3D) aBottomPolyline = aStreamObj->GetBottomPolyline();
1081     if ( !aBottomPolyline.IsNull() && !aBottomPolyline->IsRemoved() ) {
1082       createObject( aGuiObj, aBottomPolyline, aGuiObj->entry(), false );
1083     }
1084   }
1085   else if ( anObjectKind == KIND_LAND_COVER_MAP )
1086   {
1087     Handle(HYDROData_LandCoverMap) aLandCoverMapObj =
1088       Handle(HYDROData_LandCoverMap)::DownCast( aDataObj );
1089
1090     /*TODO: reference objects of the land cover map 
1091     HYDROData_SequenceOfObjects aPolylines = aLandCoverMapObj->GetPolylines();
1092     buildObjectPartition( aGuiObj, aPolylines, tr( "LAND_COVER_POLYLINES" ), true );*/
1093   }
1094   
1095   HYDROGUI_Module* aModule = dynamic_cast<HYDROGUI_Module*>( module() );
1096   if( aModule )
1097     aModule->enableLCMActions();
1098   
1099 }
1100
1101 void HYDROGUI_DataModel::buildCaseTree( SUIT_DataObject* theParent, Handle(HYDROData_CalculationCase) theCase )
1102 {
1103   if ( !theCase.IsNull() )
1104   {
1105     if ( theParent )
1106     {
1107       // Remove previous objects tree
1108         DataObjectList aList;
1109         theParent->children( aList );
1110         QListIterator<SUIT_DataObject*> anIter( aList );
1111         while( anIter.hasNext() )
1112           removeChild( theParent, anIter.next() );
1113     }
1114
1115     new HYDROGUI_DropTargetObject( theParent, tr( "NEW_REGION" ), "", true );
1116
1117     HYDROData_SequenceOfObjects aCaseRegions = theCase->GetRegions();
1118     HYDROData_SequenceOfObjects::Iterator anIter( aCaseRegions );
1119     for ( ; anIter.More(); anIter.Next() )
1120     {
1121       Handle(HYDROData_Region) aCaseRegion =
1122         Handle(HYDROData_Region)::DownCast( anIter.Value() );
1123       if( !aCaseRegion.IsNull() && !aCaseRegion->IsRemoved() )
1124         createRegion( theParent, aCaseRegion, "", true, true );
1125     }
1126   }
1127 }
1128
1129 void HYDROGUI_DataModel::updateObjectTree( Handle(HYDROData_Entity)& theObj )
1130 {
1131   if ( !theObj.IsNull() )
1132   {
1133     HYDROGUI_DataObject* aGuiObj = dynamic_cast<HYDROGUI_DataObject*>(
1134       findObject( HYDROGUI_DataObject::dataObjectEntry( theObj ) ) );
1135     if ( aGuiObj )
1136     {
1137       // Remove previous objects tree
1138       DataObjectList aList;
1139       aGuiObj->children( aList );
1140       QListIterator<SUIT_DataObject*> anIter( aList );
1141       while( anIter.hasNext() )
1142         removeChild( aGuiObj, anIter.next() );
1143
1144       // Rebuild the subtree
1145       QString aParentEntry;
1146       HYDROGUI_DataObject* aParent = dynamic_cast<HYDROGUI_DataObject*>( aGuiObj->parent() );
1147       if ( aParent )
1148       {
1149         aParentEntry = aParent->entry();
1150       }
1151       buildObjectTree( aParent, aGuiObj, aParentEntry, aGuiObj->isInOperation() );
1152     } 
1153     else
1154     {
1155       // workaround for the bug in SalomeApp_Study::findObjectByEntry - it can't find LightApp_DataObjects
1156       HYDROGUI_Module* aModule = dynamic_cast<HYDROGUI_Module*>( module() );
1157       if( aModule )
1158       {
1159         aModule->getApp()->updateObjectBrowser();
1160       }
1161     }
1162   }
1163 }
1164
1165 void HYDROGUI_DataModel::removeChild( SUIT_DataObject* theParent,
1166                                       SUIT_DataObject* theChild )
1167 {
1168   SUIT_DataObject* aSubChild = theChild->firstChild();
1169   for( ; aSubChild; aSubChild = aSubChild->nextBrother() )
1170     removeChild( theChild, aSubChild );
1171   theParent->removeChild( theChild );
1172 }
1173
1174 SUIT_DataObject* HYDROGUI_DataModel::findChildByName( const SUIT_DataObject* theFather,
1175                                                       const QString& theName )
1176 {
1177   SUIT_DataObject* aChild = theFather->firstChild();
1178   while( aChild )
1179   {
1180     if( aChild->name() == theName )
1181       return aChild; // found
1182     aChild = aChild->nextBrother();
1183   }
1184   return NULL; // not found
1185 }
1186
1187 bool HYDROGUI_DataModel::createNewRegion( Handle(HYDROData_CalculationCase) theCase, 
1188                                          const QList<HYDROGUI_Zone*>& theZonesList )
1189 {
1190   bool isOk = !theCase.IsNull();
1191   if ( isOk )
1192   {
1193     Handle(HYDROData_Region) aRegion;
1194     Handle(HYDROData_Zone) aZone;
1195     for (int i = 0; i < theZonesList.length(); i++ )
1196     {
1197       aZone = Handle(HYDROData_Zone)::DownCast( theZonesList.at(i)->modelObject() );
1198       if ( !aZone.IsNull() )
1199       {
1200         if ( aRegion.IsNull() )
1201         {
1202           aRegion = theCase->AddNewRegion( aZone );
1203           isOk = !aRegion.IsNull();
1204         }
1205         else
1206         {
1207           if ( !( aRegion->AddZone( aZone ) ) )
1208           {
1209             isOk = false;
1210           }
1211         }
1212       }
1213     }
1214   }
1215   return isOk;
1216 }
1217
1218 bool HYDROGUI_DataModel::rename( Handle(HYDROData_Entity) theEntity, const QString& theName )
1219 {
1220   if ( theName.isEmpty() )
1221     return false;
1222
1223   try 
1224   {
1225     getDocument()->StartOperation();
1226     theEntity->SetName( theName );
1227     getDocument()->CommitOperation( HYDROGUI_Tool::ToExtString( tr("RENAME_TO").arg( theName ) ) );
1228     module()->application()->activeStudy()->Modified();
1229   }
1230   catch ( Standard_Failure )
1231   {
1232     getDocument()->AbortOperation();
1233     return false;
1234   }
1235   return true;
1236 }
1237
1238 void HYDROGUI_DataModel::updateDocument()
1239 {
1240     // Sets the default strickler coefficient from preferences to document.
1241     Handle(HYDROData_Document) aDoc = getDocument();
1242     SUIT_ResourceMgr* resMgr = module()->application()->resourceMgr();
1243     if ( resMgr && !aDoc.IsNull() )
1244       aDoc->SetDefaultStricklerCoefficient( resMgr->doubleValue( "preferences", "default_strickler_coefficient", 0 ) );
1245 }
1246
1247 void HYDROGUI_DataModel::setObjectVisibilityState( Handle(HYDROData_Entity) theModelObject,
1248                                                    HYDROGUI_DataObject* theObject )
1249 {
1250   SUIT_AbstractModel* treeModel = 0;
1251   LightApp_Application* app = dynamic_cast<LightApp_Application*>( module()->application() );
1252   if ( app )
1253     treeModel = dynamic_cast<SUIT_AbstractModel*>( app->objectBrowser()->model() );
1254
1255   if ( treeModel )
1256   {
1257     HYDROGUI_Module* aModule = dynamic_cast<HYDROGUI_Module*>( module() );
1258     bool isVisible = aModule->isObjectVisible( -1, theModelObject );
1259     Qtx::VisibilityState aVisState = isVisible ? Qtx::ShownState : Qtx::HiddenState;
1260     treeModel->setVisibilityState( theObject->text( theObject->customData( Qtx::IdType ).toInt() ), aVisState, false );
1261   }
1262 }