Salome HOME
Reference objetcs are added for chanel.
[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       {
226         theSeq.Append( anObject );
227       }
228     }
229   }
230 }
231
232 HYDROGUI_Prs* HYDROGUI_Tool::GetPresentation( const Handle(HYDROData_Entity)& theObj,
233                                               const GraphicsView_ObjectList& theObjects )
234 {
235   if( !theObj.IsNull() )
236   {
237     GraphicsView_ObjectListIterator anIter( theObjects );
238     while( anIter.hasNext() )
239     {
240       if( HYDROGUI_Prs* aPrs = dynamic_cast<HYDROGUI_Prs*>( anIter.next() ) )
241       {
242         Handle(HYDROData_Entity) anObj = aPrs->getObject();
243         if( IsEqual( anObj, theObj ) )
244           return aPrs;
245       }
246     }
247   }
248   return NULL;
249 }
250
251 GraphicsView_ObjectList HYDROGUI_Tool::GetPrsList( GraphicsView_ViewPort* theViewPort )
252 {
253   GraphicsView_ObjectList aList;
254   if( theViewPort )
255   {
256     GraphicsView_ObjectListIterator anIter( theViewPort->getObjects() );
257     while( anIter.hasNext() )
258       if( HYDROGUI_Prs* aPrs = dynamic_cast<HYDROGUI_Prs*>( anIter.next() ) )
259         aList.append( aPrs );
260   }
261   return aList;
262 }
263
264 HYDROData_SequenceOfObjects HYDROGUI_Tool::GetSelectedObjects( HYDROGUI_Module* theModule )
265 {
266   HYDROData_SequenceOfObjects aSeq;
267
268   HYDROGUI_DataModel* aModel = theModule->getDataModel();
269
270   SUIT_SelectionMgr* aSelectionMgr = theModule->getApp()->selectionMgr();
271   SUIT_DataOwnerPtrList anOwners;
272   aSelectionMgr->selected( anOwners );
273
274   QStringList aCollectedNameList; // to avoid duplication
275   foreach( SUIT_DataOwner* aSUITOwner, anOwners )
276   {
277     if( LightApp_DataOwner* anOwner = dynamic_cast<LightApp_DataOwner*>( aSUITOwner ) )
278     {
279       Handle(HYDROData_Entity) anObject = aModel->objectByEntry( anOwner->entry() );
280       if( !anObject.IsNull() )
281       {
282         QString aName = anObject->GetName();
283         if( !aCollectedNameList.contains( aName ) )
284         {
285           aSeq.Append( anObject );
286           aCollectedNameList.append( aName );
287         }
288       }
289     }
290   }
291   return aSeq;
292 }
293
294 Handle(HYDROData_Entity) HYDROGUI_Tool::GetSelectedObject( HYDROGUI_Module* theModule )
295 {
296   HYDROData_SequenceOfObjects aSeq = GetSelectedObjects( theModule );
297   if( !aSeq.IsEmpty() )
298     return aSeq.First();
299   return NULL;
300 }
301
302 HYDROData_SequenceOfObjects HYDROGUI_Tool::GetGeometryObjects( 
303   HYDROGUI_Module* theModule )
304 {
305   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
306
307   HYDROData_SequenceOfObjects aResSeq;
308
309   HYDROData_Iterator anIter( aDocument );
310   for ( ; anIter.More(); anIter.Next() )
311   {
312     Handle(HYDROData_Entity) anObj = anIter.Current();
313     if ( !HYDROData_Tool::IsGeometryObject( anObj ) )
314       continue;
315
316     aResSeq.Append( anObj );
317   }
318   
319   return aResSeq;
320 }
321
322 ObjectKind HYDROGUI_Tool::GetSelectedPartition( HYDROGUI_Module* theModule )
323 {
324   HYDROGUI_DataModel* aModel = theModule->getDataModel();
325
326   SUIT_SelectionMgr* aSelectionMgr = theModule->getApp()->selectionMgr();
327   SUIT_DataOwnerPtrList anOwners;
328   aSelectionMgr->selected( anOwners );
329
330   if( anOwners.size() != 1 )
331     return KIND_UNKNOWN;
332
333   if( LightApp_DataOwner* anOwner = dynamic_cast<LightApp_DataOwner*>( anOwners.first().operator->() ) )
334   {
335     QString anEntry = anOwner->entry();
336     QString aPrefix = HYDROGUI_DataObject::entryPrefix();
337     if( anEntry.left( aPrefix.length() ) == aPrefix )
338     {
339       anEntry.remove( aPrefix );
340       for( ObjectKind anObjectKind = KIND_UNKNOWN + 1; anObjectKind <= KIND_LAST; anObjectKind++ )
341         if( HYDROGUI_DataModel::tr( HYDROGUI_DataModel::partitionName( anObjectKind ).toAscii() ) == anEntry )
342           return anObjectKind;
343     }
344   }
345   return KIND_UNKNOWN;
346 }
347
348 QStringList HYDROGUI_Tool::GetSelectedGeomObjects( HYDROGUI_Module* theModule )
349 {
350   QStringList anEntryList;
351
352   // Get active SalomeApp_Study
353   SalomeApp_Study* aStudy = NULL;
354   if ( theModule && theModule->getApp() ) {
355     aStudy = dynamic_cast<SalomeApp_Study*>( theModule->getApp()->activeStudy() );
356   }
357   if ( !aStudy ) {
358     return anEntryList;
359   }
360
361   // Get selection
362   SUIT_SelectionMgr* aSelectionMgr = theModule->getApp()->selectionMgr();
363   SUIT_DataOwnerPtrList anOwners;
364   aSelectionMgr->selected( anOwners );
365
366   // Check if the selected objects belong to GEOM and have a shape
367   foreach( SUIT_DataOwner* aSUITOwner, anOwners )
368   {
369     if( LightApp_DataOwner* anOwner = dynamic_cast<LightApp_DataOwner*>( aSUITOwner ) )
370     {
371       QString anEntry = anOwner->entry();
372       _PTR(SObject) aSObject( aStudy->studyDS()->FindObjectID(qPrintable(anEntry)) );
373       if (aSObject) {
374          _PTR(SComponent) aSComponent = aSObject->GetFatherComponent();
375         if ( aSComponent && aSComponent->ComponentDataType() == "GEOM" ) {
376           GEOM::GEOM_Object_var aGeomObj = 
377             GEOMBase::GetObjectFromIOR( aSObject->GetIOR().c_str() );
378
379           if ( !aGeomObj->_is_nil() && aGeomObj->IsShape() ) {
380             anEntryList << anEntry;
381           }
382         }
383       }
384     }
385   }
386
387   return anEntryList;
388 }
389
390 Handle(HYDROData_Entity) HYDROGUI_Tool::FindObjectByName( HYDROGUI_Module* theModule,
391                                                           const QString&   theName,
392                                                           const ObjectKind theObjectKind )
393 {
394   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
395   return HYDROData_Tool::FindObjectByName( aDocument, theName, theObjectKind );
396 }
397
398 HYDROData_SequenceOfObjects HYDROGUI_Tool::FindObjectsByNames( HYDROGUI_Module*   theModule,
399                                                                const QStringList& theNames,
400                                                                const ObjectKind   theObjectKind )
401 {
402   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
403   return HYDROData_Tool::FindObjectsByNames( aDocument, theNames, theObjectKind );
404 }
405
406 QString HYDROGUI_Tool::GenerateObjectName( HYDROGUI_Module*   theModule,
407                                            const QString&     thePrefix,
408                                            const QStringList& theUsedNames,
409                                            const bool         theIsTryToUsePurePrefix)
410 {
411   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
412   return HYDROData_Tool::GenerateObjectName( aDocument, thePrefix, theUsedNames, theIsTryToUsePurePrefix );
413 }
414
415 size_t HYDROGUI_Tool::GetActiveViewId( HYDROGUI_Module* theModule,
416                                        const QString&   theViewId )
417 {
418   size_t aViewId = 0;
419   SUIT_ViewManager* aViewMgr = theModule->getApp()->activeViewManager();
420   if( !aViewMgr || ( !theViewId.isEmpty() && aViewMgr->getType() != theViewId ) )
421     return aViewId;
422
423   if( SUIT_ViewModel* aViewer = aViewMgr->getViewModel() )
424     aViewId = (size_t)aViewer;
425   return aViewId;
426 }
427
428 size_t HYDROGUI_Tool::GetActiveGraphicsViewId( HYDROGUI_Module* theModule )
429 {
430   return GetActiveViewId( theModule, GraphicsView_Viewer::Type() );
431 }
432
433 size_t HYDROGUI_Tool::GetActiveOCCViewId( HYDROGUI_Module* theModule )
434 {
435   return GetActiveViewId( theModule, OCCViewer_Viewer::Type() );
436 }
437
438 QList<size_t> getViewIdList( HYDROGUI_Module* theModule,
439                              const QString&   theViewId )
440 {
441   QList<size_t> aList;
442   ViewManagerList aViewMgrs;
443   theModule->getApp()->viewManagers( theViewId, aViewMgrs );
444   QListIterator<SUIT_ViewManager*> anIter( aViewMgrs );
445   while( anIter.hasNext() )
446   {
447     if( SUIT_ViewManager* aViewMgr = anIter.next() )
448     {
449       if( SUIT_ViewModel* aViewer = aViewMgr->getViewModel() )
450         aList.append( (size_t)aViewer );
451     }
452   }
453   return aList;
454 }
455
456 QList<size_t> HYDROGUI_Tool::GetGraphicsViewIdList( HYDROGUI_Module* theModule )
457 {
458   return getViewIdList( theModule, GraphicsView_Viewer::Type() );
459 }
460
461 QList<size_t> HYDROGUI_Tool::GetOCCViewIdList( HYDROGUI_Module* theModule )
462 {
463   return getViewIdList( theModule, OCCViewer_Viewer::Type() );
464 }
465
466 void HYDROGUI_Tool::setOCCActionShown( OCCViewer_ViewFrame* theViewFrame,
467                                        const int theActionId,
468                                        const bool isShown )
469 {
470   if ( !theViewFrame )
471     return;
472
473   OCCViewer_ViewWindow* aView = theViewFrame->getView( OCCViewer_ViewFrame::MAIN_VIEW );
474   if ( aView ) {
475     aView->toolMgr()->setShown( theActionId, isShown );
476     if ( theActionId == OCCViewer_ViewWindow::MaximizedId )
477       theViewFrame->onMaximizedView( aView, true );
478   }
479 }
480
481 void HYDROGUI_Tool::setOCCActionShown( HYDROGUI_Module* theModule,
482                                        const int theActionId,
483                                        const bool isShown )
484 {
485   QList<size_t> aList;
486   ViewManagerList aViewMgrs;
487   theModule->getApp()->viewManagers( OCCViewer_Viewer::Type(), aViewMgrs );
488   QListIterator<SUIT_ViewManager*> anIter( aViewMgrs );
489   while( anIter.hasNext() )
490   {
491     if( SUIT_ViewManager* aViewMgr = anIter.next() )
492     {
493       OCCViewer_ViewFrame* aViewFrame = dynamic_cast<OCCViewer_ViewFrame*>
494                                                            ( aViewMgr->getActiveView() );
495       if ( aViewFrame )
496         setOCCActionShown( aViewFrame, theActionId, isShown );
497     }
498   }
499 }
500
501 void HYDROGUI_Tool::GetObjectReferences( const Handle(HYDROData_Image)& theImage,
502                                          HYDROData_SequenceOfObjects& theRefObjects,
503                                          QStringList& theRefNames )
504 {
505   if( theImage.IsNull() )
506     return;
507
508   for( int anIndex = 0, aNbRef = theImage->NbReferences(); anIndex < aNbRef; anIndex++ )
509   {
510     Handle(HYDROData_Entity) aRefObj = theImage->Reference( anIndex );
511     if( !aRefObj.IsNull() && !aRefObj->IsRemoved() )
512     {
513       QString aName = aRefObj->GetName();
514       if( !theRefNames.contains( aName ) )
515       {
516         theRefObjects.Append( aRefObj );
517         theRefNames.append( aRefObj->GetName() );
518         if( aRefObj->GetKind() == KIND_IMAGE )
519         {
520           Handle(HYDROData_Image) aRefImage = Handle(HYDROData_Image)::DownCast( aRefObj );
521           if( !aRefImage.IsNull() )
522             GetObjectReferences( aRefImage, theRefObjects, theRefNames );
523         }
524       }
525     }
526   }
527 }
528
529 void HYDROGUI_Tool::GetObjectBackReferences( HYDROGUI_Module* theModule,
530                                              const Handle(HYDROData_Entity)& theObj,
531                                              HYDROData_SequenceOfObjects& theBackRefObjects,
532                                              QStringList& theBackRefNames )
533 {
534   if( theObj.IsNull() )
535     return;
536
537   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
538   if( aDocument.IsNull() )
539     return;
540
541   QString aName = theObj->GetName();
542
543   HYDROData_Iterator anIterator( aDocument, KIND_IMAGE );
544   for( ; anIterator.More(); anIterator.Next() )
545   {
546     Handle(HYDROData_Image) anImage = Handle(HYDROData_Image)::DownCast( anIterator.Current() );
547     if( !anImage.IsNull() )
548     {
549       HYDROData_SequenceOfObjects aRefObjects;
550       QStringList aRefNames;
551       GetObjectReferences( anImage, aRefObjects, aRefNames );
552       if( aRefNames.contains( aName ) )
553       {
554         theBackRefObjects.Append( anImage );
555         theBackRefNames.append( anImage->GetName() );
556       }
557     }
558   }
559 }
560
561
562 QDockWidget* HYDROGUI_Tool::WindowDock( QWidget* wid )
563 {
564   if ( !wid )
565     return 0;
566
567   QDockWidget* dock = 0;
568   QWidget* w = wid->parentWidget();
569   while ( w && !dock )
570   {
571     dock = ::qobject_cast<QDockWidget*>( w );
572     w = w->parentWidget();
573   }
574   return dock;
575 }
576
577 QColor HYDROGUI_Tool::GenerateFillingColor( HYDROGUI_Module*   theModule,
578                                             const QStringList& theZoneNames )
579 {
580   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
581   return GenerateFillingColor( aDocument, theZoneNames );
582 }
583
584 QColor HYDROGUI_Tool::GenerateFillingColor( const Handle(HYDROData_Document)& theDoc,
585                                             const QStringList&                theZoneNames )
586 {
587   QColor aFillingColor( HYDROData_ImmersibleZone::DefaultFillingColor() );
588
589   int aCounter = 0;
590   int aR = 0, aG = 0, aB = 0;
591   QStringListIterator aZoneNameIter( theZoneNames );
592   while( aZoneNameIter.hasNext() )
593   {
594     const QString& aZoneName = aZoneNameIter.next();
595     Handle(HYDROData_ImmersibleZone) aRefZone = 
596       Handle(HYDROData_ImmersibleZone)::DownCast(
597         HYDROData_Tool::FindObjectByName( theDoc, aZoneName, KIND_IMMERSIBLE_ZONE ) );
598     if( !aRefZone.IsNull() )
599     {
600       QColor aRefColor = aRefZone->GetFillingColor();
601       aR += aRefColor.red();
602       aG += aRefColor.green();
603       aB += aRefColor.blue();
604       aCounter++;
605     }
606   }
607   
608   if( aCounter > 0 )
609   {
610     aFillingColor = QColor( aR / aCounter, aG / aCounter, aB / aCounter );
611   }
612
613   return aFillingColor;
614 }
615
616 QStringList HYDROGUI_Tool::FindExistingObjectsNames( const Handle(HYDROData_Document)& theDoc, 
617                                                      const ObjectKind theObjectKind )
618 {
619   QStringList aNames;
620
621   HYDROData_Iterator anIter( theDoc, theObjectKind );
622   for ( ; anIter.More(); anIter.Next() ) {
623     Handle(HYDROData_Entity) anObject = anIter.Current();
624     if( !anObject.IsNull() ) {
625       aNames.append( anObject->GetName() );
626     }
627   }
628
629   return aNames;
630 }