Salome HOME
Creat\Edit stream operation.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Tool.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "HYDROGUI_Tool.h"
24
25 #include "HYDROGUI_DataModel.h"
26 #include "HYDROGUI_DataObject.h"
27 #include "HYDROGUI_Module.h"
28 #include "HYDROGUI_Prs.h"
29
30 #include <HYDROData_Document.h>
31 #include <HYDROData_Iterator.h>
32 #include <HYDROData_ImmersibleZone.h>
33 #include <HYDROData_Tool.h>
34
35 #include <GEOMBase.h>
36
37 #include <GraphicsView_Viewer.h>
38
39 #include <SalomeApp_Study.h>
40
41 #include <LightApp_Application.h>
42 #include <LightApp_DataOwner.h>
43 #include <LightApp_SelectionMgr.h>
44
45 #include <OCCViewer_ViewModel.h>
46 #include <OCCViewer_ViewFrame.h>
47
48 #include <QtxWorkstack.h>
49 #include <QtxActionToolMgr.h>
50
51 #include <STD_TabDesktop.h>
52
53 #include <SUIT_Session.h>
54 #include <SUIT_Study.h>
55 #include <SUIT_ViewManager.h>
56 #include <SUIT_ViewWindow.h>
57
58 #include <SALOMEDSClient.hxx>
59
60 #include <QDir>
61 #include <QFileInfo>
62 #include <QDockWidget>
63 #include <QTextCodec>
64
65 // Definition of this id allows to use 'latin1' (Qt alias for 'ISO-8859-1')
66 // encoding instead of default 'System'
67 #define USE_LATIN1_ENCODING
68
69 QString HYDROGUI_Tool::ToQString( const TCollection_AsciiString& src )
70 {
71 #ifdef USE_LATIN1_ENCODING
72   QTextCodec* codec = QTextCodec::codecForName( "latin1" ); // alias for ISO-8859-1
73 #else
74   QTextCodec* codec = QTextCodec::codecForLocale();
75 #endif
76   QString res;
77   if ( !src.IsEmpty() )
78     res = codec ? codec->toUnicode( (char*)src.ToCString(), src.Length() ) :
79       QString( (char*)src.ToCString() );
80   return res;
81 }
82
83 QString HYDROGUI_Tool::ToQString( const TCollection_ExtendedString& src )
84 {
85   return QString( (QChar*)src.ToExtString(), src.Length() );
86 }
87
88 QString HYDROGUI_Tool::ToQString( const Handle(TCollection_HAsciiString)& src )
89 {
90   if( src.IsNull() )
91     return QString();
92   else
93     return ToQString( src->String() );
94 }
95
96 QString HYDROGUI_Tool::ToQString( const Handle(TCollection_HExtendedString)& src )
97 {
98   if( src.IsNull() )
99     return QString();
100   return ToQString( src->String() );
101 }
102
103 TCollection_AsciiString HYDROGUI_Tool::ToAsciiString( const QString& src )
104 {
105   TCollection_AsciiString res;
106   if( !src.isNull() )
107   {
108 #ifdef USE_LATIN1_ENCODING
109     QTextCodec* codec = QTextCodec::codecForName( "latin1" ); // alias for ISO-8859-1
110 #else
111     QTextCodec* codec = QTextCodec::codecForLocale();
112 #endif
113     if( codec )
114     {
115       QByteArray str = codec->fromUnicode( src );
116       res = TCollection_AsciiString( (Standard_CString)str.constData() );
117     }
118     else
119       res = TCollection_AsciiString( src.toLatin1().data() );
120   }
121   return res;
122 }
123
124 TCollection_ExtendedString HYDROGUI_Tool::ToExtString( const QString& src )
125 {
126   if( src.isEmpty() )
127     return TCollection_ExtendedString();
128
129   Standard_Integer len = src.length();
130   Standard_ExtString extStr = new Standard_ExtCharacter[ ( len + 1 ) * 2 ];
131   memcpy( (void*)extStr, src.unicode(), len * 2 );
132   ((short*)extStr)[ len ] = 0;
133
134   TCollection_ExtendedString trg( extStr );
135   delete [] extStr;
136   return trg;
137 }
138
139 Handle(TCollection_HAsciiString) HYDROGUI_Tool::ToHAsciiString( const QString& src )
140 {
141   return new TCollection_HAsciiString( ToAsciiString( src ) );
142 }
143
144 Handle(TCollection_HExtendedString) HYDROGUI_Tool::ToHExtString( const QString& src )
145 {
146   return new TCollection_HExtendedString( ToExtString( src ) );
147 }
148
149 int HYDROGUI_Tool::GetActiveStudyId()
150 {
151   if( SUIT_Session* aSession = SUIT_Session::session() )
152     if( SUIT_Application* anApp = aSession->activeApplication() )
153       if( SUIT_Study* aStudy = anApp->activeStudy() )
154         return aStudy->id();
155   return 0;
156 }
157
158 QString HYDROGUI_Tool::GetTempDir( const bool theToCreate )
159 {
160   QString aRes;
161
162   char* tmpdir = getenv ( "HYDRO_TMP_DIR" );
163   if ( tmpdir )
164   {
165     // try to create folder if it does not exist
166     QFileInfo fi( tmpdir );
167     if ( !fi.exists() && theToCreate )
168     {
169       if ( QDir().mkdir( tmpdir ) )
170         QFile::setPermissions( tmpdir, (QFile::Permissions)0x4FFFF );
171        QFileInfo fi( tmpdir );
172        if ( !fi.exists() || !fi.isWritable() )
173          tmpdir = 0;
174     }
175   }
176   if ( !tmpdir )
177     tmpdir = getenv ( "TEMP" );
178   if ( !tmpdir )
179     tmpdir = getenv ( "TMP" );
180   if ( !tmpdir )
181   {
182 #ifdef WNT
183     tmpdir = "C:\\";
184 #else
185     tmpdir = "/tmp";
186 #endif
187   }
188   aRes = tmpdir;
189   
190   QFileInfo fi( aRes );
191   if ( !fi.exists() || !fi.isWritable() )
192     aRes = QString::null;
193
194   return aRes;
195 }
196
197 void HYDROGUI_Tool::SetActiveViewManager( HYDROGUI_Module* theModule,
198                                           SUIT_ViewManager* theViewManager )
199 {
200   if( theViewManager )
201     if( SUIT_ViewWindow* aViewWindow = theViewManager->getActiveView() )
202       if( STD_TabDesktop* aTabDesktop = dynamic_cast<STD_TabDesktop*>( theModule->getApp()->desktop() ) )
203         if( QtxWorkstack* aWorkstack = aTabDesktop->workstack() )
204           aWorkstack->setActiveWindow( aViewWindow );
205 }
206
207 void HYDROGUI_Tool::GetPrsSubObjects( HYDROGUI_Module* theModule,
208                                       HYDROData_SequenceOfObjects& theSeq )
209 {
210   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
211   if( !aDocument.IsNull() )
212   {
213     HYDROData_Iterator anIterator( aDocument );
214     for( ; anIterator.More(); anIterator.Next() )
215     {
216       Handle(HYDROData_Entity) anObject = anIterator.Current();
217       if( !anObject.IsNull() && ( 
218         ( anObject->GetKind() == KIND_IMAGE ) ||
219         ( anObject->GetKind() == KIND_POLYLINEXY ) ||
220         ( anObject->GetKind() == KIND_IMMERSIBLE_ZONE ) ||
221         ( anObject->GetKind() == KIND_REGION ) ||
222         ( anObject->GetKind() == KIND_BATHYMETRY ) ||
223         ( anObject->GetKind() == KIND_ZONE ) ||
224         ( anObject->GetKind() == KIND_OBSTACLE ) ||
225         ( anObject->GetKind() == KIND_PROFILE ) ) )
226       {
227         theSeq.Append( anObject );
228       }
229     }
230   }
231 }
232
233 HYDROGUI_Prs* HYDROGUI_Tool::GetPresentation( const Handle(HYDROData_Entity)& theObj,
234                                               const GraphicsView_ObjectList& theObjects )
235 {
236   if( !theObj.IsNull() )
237   {
238     GraphicsView_ObjectListIterator anIter( theObjects );
239     while( anIter.hasNext() )
240     {
241       if( HYDROGUI_Prs* aPrs = dynamic_cast<HYDROGUI_Prs*>( anIter.next() ) )
242       {
243         Handle(HYDROData_Entity) anObj = aPrs->getObject();
244         if( IsEqual( anObj, theObj ) )
245           return aPrs;
246       }
247     }
248   }
249   return NULL;
250 }
251
252 GraphicsView_ObjectList HYDROGUI_Tool::GetPrsList( GraphicsView_ViewPort* theViewPort )
253 {
254   GraphicsView_ObjectList aList;
255   if( theViewPort )
256   {
257     GraphicsView_ObjectListIterator anIter( theViewPort->getObjects() );
258     while( anIter.hasNext() )
259       if( HYDROGUI_Prs* aPrs = dynamic_cast<HYDROGUI_Prs*>( anIter.next() ) )
260         aList.append( aPrs );
261   }
262   return aList;
263 }
264
265 HYDROData_SequenceOfObjects HYDROGUI_Tool::GetSelectedObjects( HYDROGUI_Module* theModule )
266 {
267   HYDROData_SequenceOfObjects aSeq;
268
269   HYDROGUI_DataModel* aModel = theModule->getDataModel();
270
271   SUIT_SelectionMgr* aSelectionMgr = theModule->getApp()->selectionMgr();
272   SUIT_DataOwnerPtrList anOwners;
273   aSelectionMgr->selected( anOwners );
274
275   QStringList aCollectedNameList; // to avoid duplication
276   foreach( SUIT_DataOwner* aSUITOwner, anOwners )
277   {
278     if( LightApp_DataOwner* anOwner = dynamic_cast<LightApp_DataOwner*>( aSUITOwner ) )
279     {
280       Handle(HYDROData_Entity) anObject = aModel->objectByEntry( anOwner->entry() );
281       if( !anObject.IsNull() )
282       {
283         QString aName = anObject->GetName();
284         if( !aCollectedNameList.contains( aName ) )
285         {
286           aSeq.Append( anObject );
287           aCollectedNameList.append( aName );
288         }
289       }
290     }
291   }
292   return aSeq;
293 }
294
295 Handle(HYDROData_Entity) HYDROGUI_Tool::GetSelectedObject( HYDROGUI_Module* theModule )
296 {
297   HYDROData_SequenceOfObjects aSeq = GetSelectedObjects( theModule );
298   if( !aSeq.IsEmpty() )
299     return aSeq.First();
300   return NULL;
301 }
302
303 HYDROData_SequenceOfObjects HYDROGUI_Tool::GetGeometryObjects( 
304   HYDROGUI_Module* theModule )
305 {
306   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
307
308   HYDROData_SequenceOfObjects aResSeq;
309
310   HYDROData_Iterator anIter( aDocument );
311   for ( ; anIter.More(); anIter.Next() )
312   {
313     Handle(HYDROData_Entity) anObj = anIter.Current();
314     if ( !HYDROData_Tool::IsGeometryObject( anObj ) )
315       continue;
316
317     aResSeq.Append( anObj );
318   }
319   
320   return aResSeq;
321 }
322
323 ObjectKind HYDROGUI_Tool::GetSelectedPartition( HYDROGUI_Module* theModule )
324 {
325   HYDROGUI_DataModel* aModel = theModule->getDataModel();
326
327   SUIT_SelectionMgr* aSelectionMgr = theModule->getApp()->selectionMgr();
328   SUIT_DataOwnerPtrList anOwners;
329   aSelectionMgr->selected( anOwners );
330
331   if( anOwners.size() != 1 )
332     return KIND_UNKNOWN;
333
334   if( LightApp_DataOwner* anOwner = dynamic_cast<LightApp_DataOwner*>( anOwners.first().operator->() ) )
335   {
336     QString anEntry = anOwner->entry();
337     QString aPrefix = HYDROGUI_DataObject::entryPrefix();
338     if( anEntry.left( aPrefix.length() ) == aPrefix )
339     {
340       anEntry.remove( aPrefix );
341       for( ObjectKind anObjectKind = KIND_UNKNOWN + 1; anObjectKind <= KIND_LAST; anObjectKind++ )
342         if( HYDROGUI_DataModel::tr( HYDROGUI_DataModel::partitionName( anObjectKind ).toAscii() ) == anEntry )
343           return anObjectKind;
344     }
345   }
346   return KIND_UNKNOWN;
347 }
348
349 QStringList HYDROGUI_Tool::GetSelectedGeomObjects( HYDROGUI_Module* theModule )
350 {
351   QStringList anEntryList;
352
353   // Get active SalomeApp_Study
354   SalomeApp_Study* aStudy = NULL;
355   if ( theModule && theModule->getApp() ) {
356     aStudy = dynamic_cast<SalomeApp_Study*>( theModule->getApp()->activeStudy() );
357   }
358   if ( !aStudy ) {
359     return anEntryList;
360   }
361
362   // Get selection
363   SUIT_SelectionMgr* aSelectionMgr = theModule->getApp()->selectionMgr();
364   SUIT_DataOwnerPtrList anOwners;
365   aSelectionMgr->selected( anOwners );
366
367   // Check if the selected objects belong to GEOM and have a shape
368   foreach( SUIT_DataOwner* aSUITOwner, anOwners )
369   {
370     if( LightApp_DataOwner* anOwner = dynamic_cast<LightApp_DataOwner*>( aSUITOwner ) )
371     {
372       QString anEntry = anOwner->entry();
373       _PTR(SObject) aSObject( aStudy->studyDS()->FindObjectID(qPrintable(anEntry)) );
374       if (aSObject) {
375          _PTR(SComponent) aSComponent = aSObject->GetFatherComponent();
376         if ( aSComponent && aSComponent->ComponentDataType() == "GEOM" ) {
377           GEOM::GEOM_Object_var aGeomObj = 
378             GEOMBase::GetObjectFromIOR( aSObject->GetIOR().c_str() );
379
380           if ( !aGeomObj->_is_nil() && aGeomObj->IsShape() ) {
381             anEntryList << anEntry;
382           }
383         }
384       }
385     }
386   }
387
388   return anEntryList;
389 }
390
391 Handle(HYDROData_Entity) HYDROGUI_Tool::FindObjectByName( HYDROGUI_Module* theModule,
392                                                           const QString&   theName,
393                                                           const ObjectKind theObjectKind )
394 {
395   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
396   return HYDROData_Tool::FindObjectByName( aDocument, theName, theObjectKind );
397 }
398
399 HYDROData_SequenceOfObjects HYDROGUI_Tool::FindObjectsByNames( HYDROGUI_Module*   theModule,
400                                                                const QStringList& theNames,
401                                                                const ObjectKind   theObjectKind )
402 {
403   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
404   return HYDROData_Tool::FindObjectsByNames( aDocument, theNames, theObjectKind );
405 }
406
407 QString HYDROGUI_Tool::GenerateObjectName( HYDROGUI_Module*   theModule,
408                                            const QString&     thePrefix,
409                                            const QStringList& theUsedNames,
410                                            const bool         theIsTryToUsePurePrefix)
411 {
412   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
413   return HYDROData_Tool::GenerateObjectName( aDocument, thePrefix, theUsedNames, theIsTryToUsePurePrefix );
414 }
415
416 size_t HYDROGUI_Tool::GetActiveViewId( HYDROGUI_Module* theModule,
417                                        const QString&   theViewId )
418 {
419   size_t aViewId = 0;
420   SUIT_ViewManager* aViewMgr = theModule->getApp()->activeViewManager();
421   if( !aViewMgr || ( !theViewId.isEmpty() && aViewMgr->getType() != theViewId ) )
422     return aViewId;
423
424   if( SUIT_ViewModel* aViewer = aViewMgr->getViewModel() )
425     aViewId = (size_t)aViewer;
426   return aViewId;
427 }
428
429 size_t HYDROGUI_Tool::GetActiveGraphicsViewId( HYDROGUI_Module* theModule )
430 {
431   return GetActiveViewId( theModule, GraphicsView_Viewer::Type() );
432 }
433
434 size_t HYDROGUI_Tool::GetActiveOCCViewId( HYDROGUI_Module* theModule )
435 {
436   return GetActiveViewId( theModule, OCCViewer_Viewer::Type() );
437 }
438
439 QList<size_t> getViewIdList( HYDROGUI_Module* theModule,
440                              const QString&   theViewId )
441 {
442   QList<size_t> aList;
443   ViewManagerList aViewMgrs;
444   theModule->getApp()->viewManagers( theViewId, aViewMgrs );
445   QListIterator<SUIT_ViewManager*> anIter( aViewMgrs );
446   while( anIter.hasNext() )
447   {
448     if( SUIT_ViewManager* aViewMgr = anIter.next() )
449     {
450       if( SUIT_ViewModel* aViewer = aViewMgr->getViewModel() )
451         aList.append( (size_t)aViewer );
452     }
453   }
454   return aList;
455 }
456
457 QList<size_t> HYDROGUI_Tool::GetGraphicsViewIdList( HYDROGUI_Module* theModule )
458 {
459   return getViewIdList( theModule, GraphicsView_Viewer::Type() );
460 }
461
462 QList<size_t> HYDROGUI_Tool::GetOCCViewIdList( HYDROGUI_Module* theModule )
463 {
464   return getViewIdList( theModule, OCCViewer_Viewer::Type() );
465 }
466
467 void HYDROGUI_Tool::setOCCActionShown( OCCViewer_ViewFrame* theViewFrame,
468                                        const int theActionId,
469                                        const bool isShown )
470 {
471   if ( !theViewFrame )
472     return;
473
474   OCCViewer_ViewWindow* aView = theViewFrame->getView( OCCViewer_ViewFrame::MAIN_VIEW );
475   if ( aView ) {
476     aView->toolMgr()->setShown( theActionId, isShown );
477     if ( theActionId == OCCViewer_ViewWindow::MaximizedId )
478       theViewFrame->onMaximizedView( aView, true );
479   }
480 }
481
482 void HYDROGUI_Tool::setOCCActionShown( HYDROGUI_Module* theModule,
483                                        const int theActionId,
484                                        const bool isShown )
485 {
486   QList<size_t> aList;
487   ViewManagerList aViewMgrs;
488   theModule->getApp()->viewManagers( OCCViewer_Viewer::Type(), aViewMgrs );
489   QListIterator<SUIT_ViewManager*> anIter( aViewMgrs );
490   while( anIter.hasNext() )
491   {
492     if( SUIT_ViewManager* aViewMgr = anIter.next() )
493     {
494       OCCViewer_ViewFrame* aViewFrame = dynamic_cast<OCCViewer_ViewFrame*>
495                                                            ( aViewMgr->getActiveView() );
496       if ( aViewFrame )
497         setOCCActionShown( aViewFrame, theActionId, isShown );
498     }
499   }
500 }
501
502 void HYDROGUI_Tool::GetObjectReferences( const Handle(HYDROData_Image)& theImage,
503                                          HYDROData_SequenceOfObjects& theRefObjects,
504                                          QStringList& theRefNames )
505 {
506   if( theImage.IsNull() )
507     return;
508
509   for( int anIndex = 0, aNbRef = theImage->NbReferences(); anIndex < aNbRef; anIndex++ )
510   {
511     Handle(HYDROData_Entity) aRefObj = theImage->Reference( anIndex );
512     if( !aRefObj.IsNull() && !aRefObj->IsRemoved() )
513     {
514       QString aName = aRefObj->GetName();
515       if( !theRefNames.contains( aName ) )
516       {
517         theRefObjects.Append( aRefObj );
518         theRefNames.append( aRefObj->GetName() );
519         if( aRefObj->GetKind() == KIND_IMAGE )
520         {
521           Handle(HYDROData_Image) aRefImage = Handle(HYDROData_Image)::DownCast( aRefObj );
522           if( !aRefImage.IsNull() )
523             GetObjectReferences( aRefImage, theRefObjects, theRefNames );
524         }
525       }
526     }
527   }
528 }
529
530 void HYDROGUI_Tool::GetObjectBackReferences( HYDROGUI_Module* theModule,
531                                              const Handle(HYDROData_Entity)& theObj,
532                                              HYDROData_SequenceOfObjects& theBackRefObjects,
533                                              QStringList& theBackRefNames )
534 {
535   if( theObj.IsNull() )
536     return;
537
538   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
539   if( aDocument.IsNull() )
540     return;
541
542   QString aName = theObj->GetName();
543
544   HYDROData_Iterator anIterator( aDocument, KIND_IMAGE );
545   for( ; anIterator.More(); anIterator.Next() )
546   {
547     Handle(HYDROData_Image) anImage = Handle(HYDROData_Image)::DownCast( anIterator.Current() );
548     if( !anImage.IsNull() )
549     {
550       HYDROData_SequenceOfObjects aRefObjects;
551       QStringList aRefNames;
552       GetObjectReferences( anImage, aRefObjects, aRefNames );
553       if( aRefNames.contains( aName ) )
554       {
555         theBackRefObjects.Append( anImage );
556         theBackRefNames.append( anImage->GetName() );
557       }
558     }
559   }
560 }
561
562
563 QDockWidget* HYDROGUI_Tool::WindowDock( QWidget* wid )
564 {
565   if ( !wid )
566     return 0;
567
568   QDockWidget* dock = 0;
569   QWidget* w = wid->parentWidget();
570   while ( w && !dock )
571   {
572     dock = ::qobject_cast<QDockWidget*>( w );
573     w = w->parentWidget();
574   }
575   return dock;
576 }
577
578 QColor HYDROGUI_Tool::GenerateFillingColor( HYDROGUI_Module*   theModule,
579                                             const QStringList& theZoneNames )
580 {
581   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
582   return GenerateFillingColor( aDocument, theZoneNames );
583 }
584
585 QColor HYDROGUI_Tool::GenerateFillingColor( const Handle(HYDROData_Document)& theDoc,
586                                             const QStringList&                theZoneNames )
587 {
588   QColor aFillingColor( HYDROData_ImmersibleZone::DefaultFillingColor() );
589
590   int aCounter = 0;
591   int aR = 0, aG = 0, aB = 0;
592   QStringListIterator aZoneNameIter( theZoneNames );
593   while( aZoneNameIter.hasNext() )
594   {
595     const QString& aZoneName = aZoneNameIter.next();
596     Handle(HYDROData_ImmersibleZone) aRefZone = 
597       Handle(HYDROData_ImmersibleZone)::DownCast(
598         HYDROData_Tool::FindObjectByName( theDoc, aZoneName, KIND_IMMERSIBLE_ZONE ) );
599     if( !aRefZone.IsNull() )
600     {
601       QColor aRefColor = aRefZone->GetFillingColor();
602       aR += aRefColor.red();
603       aG += aRefColor.green();
604       aB += aRefColor.blue();
605       aCounter++;
606     }
607   }
608   
609   if( aCounter > 0 )
610   {
611     aFillingColor = QColor( aR / aCounter, aG / aCounter, aB / aCounter );
612   }
613
614   return aFillingColor;
615 }
616
617 QStringList HYDROGUI_Tool::FindExistingObjectsNames( const Handle(HYDROData_Document)& theDoc, 
618                                                      const ObjectKind theObjectKind )
619 {
620   QStringList aNames;
621
622   HYDROData_Iterator anIter( theDoc, theObjectKind );
623   for ( ; anIter.More(); anIter.Next() ) {
624     Handle(HYDROData_Entity) anObject = anIter.Current();
625     if( !anObject.IsNull() ) {
626       aNames.append( anObject->GetName() );
627     }
628   }
629
630   return aNames;
631 }