Salome HOME
2099f79caff09f314c74c9e98d20d1e9196c9357
[modules/geom.git] / src / GEOMToolsGUI / GEOMToolsGUI.cxx
1 //  Copyright (C) 2007-2008  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 // GEOM GEOMGUI : GUI for Geometry component
23 // File   : GEOMBase_Tools.cxx
24 // Author : Damien COQUERET, Open CASCADE S.A.S.
25 //
26 #include "GEOMToolsGUI.h"
27 #include "GEOMToolsGUI_DeleteDlg.h"
28
29 #include <GeometryGUI.h>
30 #include <GEOMBase.h>
31 #include <GEOM_Operation.h>
32 #include <GEOM_Displayer.h>
33
34 #include <SUIT_Session.h>
35 #include <SUIT_OverrideCursor.h>
36 #include <SUIT_MessageBox.h>
37 #include <SUIT_Tools.h>
38 #include <SUIT_FileDlg.h>
39 #include <SUIT_Desktop.h>
40 #include <SUIT_ViewModel.h>
41 #include <SUIT_ViewManager.h>
42
43 #include <SalomeApp_Application.h>
44 #include <SalomeApp_Study.h>
45 #include <LightApp_SelectionMgr.h>
46 #include <GEOMImpl_Types.hxx>
47
48 #include <SALOME_ListIO.hxx>
49 #include <SALOME_ListIteratorOfListIO.hxx>
50 #include <SALOME_Prs.h>
51
52 // QT Includes
53 #include <QApplication>
54 #include <QMap>
55 #include <QRegExp>
56
57 // OCCT Includes
58 #include <TCollection_AsciiString.hxx>
59
60 using namespace std;
61
62 typedef QMap<QString, QString> FilterMap;
63 static QString lastUsedFilter;
64
65 //=======================================================================
66 // function : getFileName
67 // purpose  : Selection of a file name for Import/Export. Returns also
68 //            the selected file type code through <filter> argument.
69 //=======================================================================
70 static QString getFileName( QWidget*           parent,
71                             const QString&     initial,
72                             const FilterMap&   filterMap,
73                             const QStringList& filters,
74                             const QString&     caption,
75                             bool               open,
76                             QString&           format,
77                             bool               showCurrentDirInitially = false )
78 {
79   //QStringList filters;
80   QString aBrepFilter;
81   for ( FilterMap::const_iterator it = filterMap.begin(); it != filterMap.end(); ++it ) {
82     //filters.push_back( it.key() );
83     if ( it.key().contains( "BREP", Qt::CaseInsensitive ) )
84       aBrepFilter = it.key();
85   }
86
87   SUIT_FileDlg* fd = new SUIT_FileDlg( parent, open, true, true );
88   if ( !caption.isEmpty() )
89     fd->setWindowTitle( caption );
90
91   if ( !initial.isEmpty() )
92     fd->selectFile( initial );
93   
94   if ( showCurrentDirInitially && SUIT_FileDlg::getLastVisitedPath().isEmpty() )
95     fd->setDirectory( QDir::currentPath() );
96
97   fd->setFilters( filters );
98   
99   if ( !lastUsedFilter.isEmpty() && filterMap.contains( lastUsedFilter ) ) {
100     fd->selectFilter( lastUsedFilter );
101   }
102   else if ( !aBrepFilter.isEmpty() ) {
103     fd->selectFilter( aBrepFilter );
104   }
105
106   QString filename;
107   if ( fd->exec() == QDialog::Accepted ) {
108     filename = fd->selectedFile();
109     format = filterMap[fd->selectedFilter()];
110     lastUsedFilter = fd->selectedFilter();
111   }
112
113   delete fd;
114   qApp->processEvents();
115   return filename;
116 }
117
118 //=======================================================================
119 // function : getFileNames
120 // purpose  : Select list of files for Import operation. Returns also
121 //            the selected file type code through <format> argument.
122 //=======================================================================
123 static QStringList getFileNames( QWidget*           parent,
124                                  const QString&     initial,
125                                  const FilterMap&   filterMap,
126                                  const QString&     caption,
127                                  QString&           format,
128                                  bool               showCurrentDirInitially = false)
129 {
130   QString aBrepFilter;
131   QStringList allFilters;
132   QStringList filters;
133   QRegExp re( "\\((.*)\\)" );
134   re.setMinimal( true );
135   for ( FilterMap::const_iterator it = filterMap.begin(); it != filterMap.end(); ++it ) {
136     if ( it.value().contains( "BREP", Qt::CaseInsensitive ) && aBrepFilter.isEmpty() )
137       aBrepFilter = it.key();
138     filters.append( it.key() );
139     int pos = 0;
140     while ( re.indexIn( it.key(), pos ) >= 0 ) {
141       QString f = re.cap(1);
142       pos = re.pos() + f.length() + 2;
143       allFilters.append( f.simplified() );
144     }
145   }
146   filters.append( QObject::tr( "GEOM_ALL_IMPORT_FILES" ).arg( allFilters.join( " " ) ) );
147   
148   SUIT_FileDlg fd( parent, true, true, true );
149   fd.setFileMode( SUIT_FileDlg::ExistingFiles );     
150   if ( !caption.isEmpty() )
151     fd.setWindowTitle( caption );
152   if ( !initial.isEmpty() )
153     fd.selectFile( initial );
154   
155   if ( showCurrentDirInitially && SUIT_FileDlg::getLastVisitedPath().isEmpty() )
156     fd.setDirectory( QDir::currentPath() );
157   
158   fd.setFilters( filters );
159   
160   if ( !lastUsedFilter.isEmpty() && filterMap.contains( lastUsedFilter ) )
161     fd.selectFilter( lastUsedFilter );
162   else if ( !aBrepFilter.isEmpty() )
163     fd.selectFilter( aBrepFilter );
164
165   QStringList filenames;
166   if ( fd.exec() ) {
167     filenames = fd.selectedFiles();
168     format = filterMap.contains( fd.selectedFilter() ) ? filterMap[ fd.selectedFilter() ] : QString();
169     lastUsedFilter = fd.selectedFilter();
170   }
171   qApp->processEvents();
172   return filenames;
173 }
174
175 //=======================================================================
176 // function : getParentComponent
177 // purpose  : Get object's parent component entry
178 //=======================================================================
179 static QString getParentComponent( _PTR( SObject ) obj )
180 {
181   if ( obj ) {
182     _PTR(SComponent) comp = obj->GetFatherComponent();
183     if ( comp )
184       return QString( comp->GetID().c_str() );
185   }
186   return QString();
187 }
188
189 //=====================================================================================
190 // function : inUse
191 // purpose  : check if the object(s) passed as the the second arguments are used
192 //            by the other objects in the study
193 //=====================================================================================
194 static bool inUse( _PTR(Study) study, const QString& component, const QMap<QString,QString>& objects )
195 {
196   _PTR(SObject) comp = study->FindObjectID( component.toLatin1().data() );
197   if ( !comp )
198     return false;
199
200   // collect all GEOM objects being deleted
201   QMap<QString, GEOM::GEOM_Object_var> gobjects;
202   QMap<QString, QString>::ConstIterator oit;
203   list<_PTR(SObject)> aSelectedSO;
204   for ( oit = objects.begin(); oit != objects.end(); ++oit ) {
205     _PTR(SObject) so = study->FindObjectID( oit.key().toLatin1().data() );
206     if ( !so )
207       continue;
208     aSelectedSO.push_back(so);
209     CORBA::Object_var corbaObj_rem = GeometryGUI::ClientSObjectToObject( so );
210     GEOM::GEOM_Object_var geomObj_rem = GEOM::GEOM_Object::_narrow( corbaObj_rem );
211     if( CORBA::is_nil( geomObj_rem ) ) 
212       continue;
213     gobjects.insert( oit.key(), geomObj_rem );
214   }
215
216   // Search References with other Modules
217   list< _PTR(SObject) >::iterator itSO = aSelectedSO.begin();
218   for ( ; itSO != aSelectedSO.end(); ++itSO ) {
219     std::vector<_PTR(SObject)> aReferences = study->FindDependances( *itSO  );    
220     int aRefLength = aReferences.size();
221     if (aRefLength) {
222       for (int i = 0; i < aRefLength; i++) {
223         _PTR(SObject) firstSO( aReferences[i] );
224         _PTR(SComponent) aComponent = firstSO->GetFatherComponent();
225         QString type = aComponent->ComponentDataType().c_str();
226         if ( type == "SMESH" )
227           return true;
228       }
229     }
230   }
231
232   // browse through all GEOM data tree
233   _PTR(ChildIterator) it ( study->NewChildIterator( comp ) );
234   for ( it->InitEx( true ); it->More(); it->Next() ) {
235     _PTR(SObject) child( it->Value() );
236     CORBA::Object_var corbaObj = GeometryGUI::ClientSObjectToObject( child );
237     GEOM::GEOM_Object_var geomObj = GEOM::GEOM_Object::_narrow( corbaObj );
238     if( CORBA::is_nil( geomObj ) ) 
239       continue;
240
241     GEOM::ListOfGO_var list = geomObj->GetDependency();
242     if( list->length() == 0 ) 
243       continue;
244
245     for( int i = 0; i < list->length(); i++ ) {
246       bool depends = false;
247       bool deleted = false;
248       QMap<QString, GEOM::GEOM_Object_var>::Iterator git;
249       for ( git = gobjects.begin(); git != gobjects.end() && ( !depends || !deleted ); ++git ) {
250         depends = depends || list[i]->_is_equivalent( *git );
251         deleted = deleted || git.key() == child->GetID().c_str() ;//geomObj->_is_equivalent( *git );
252       }
253       if ( depends && !deleted )
254         return true;
255     }
256   }
257   return false;
258 }
259
260
261 //=======================================================================
262 // function : GEOMToolsGUI()
263 // purpose  : Constructor
264 //=======================================================================
265 GEOMToolsGUI::GEOMToolsGUI( GeometryGUI* parent )
266 : GEOMGUI( parent )
267 {
268 }
269
270
271 //=======================================================================
272 // function : ~GEOMToolsGUI()
273 // purpose  : Destructor
274 //=======================================================================
275 GEOMToolsGUI::~GEOMToolsGUI()
276 {
277 }
278
279
280 //=======================================================================
281 // function : OnGUIEvent()
282 // purpose  :
283 //=======================================================================
284 bool GEOMToolsGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
285 {
286   getGeometryGUI()->EmitSignalDeactivateDialog();
287
288   switch (theCommandID)
289     {
290     case 31: // COPY
291       {
292         OnEditCopy();
293         break;
294       }
295     case 33: // DELETE
296       {
297         OnEditDelete();
298         break;
299       }
300     case 111: // IMPORT BREP
301     case 112: // IMPORT IGES
302     case 113: // IMPORT STEP
303       {
304         Import();
305         break;
306       }
307     case 121: // EXPORT BREP
308     case 122: // EXPORT IGES
309     case 123: // EXPORT STEP
310       {
311         Export();
312         break;
313       }
314     case 2171: // POPUP VIEWER - SELECT ONLY - VERTEX
315       {
316         OnSelectOnly( GEOM_POINT );
317         break;
318       }
319     case 2172: // POPUP VIEWER - SELECT ONLY - EDGE
320       {
321         OnSelectOnly( GEOM_EDGE );
322         break;
323       }
324     case 2173: // POPUP VIEWER - SELECT ONLY - WIRE
325       {
326         OnSelectOnly( GEOM_WIRE );
327         break;
328       }
329     case 2174: // POPUP VIEWER - SELECT ONLY - FACE
330       {
331         OnSelectOnly( GEOM_FACE );
332         break;
333       }
334     case 2175: // POPUP VIEWER - SELECT ONLY - SHELL
335       {
336         OnSelectOnly( GEOM_SHELL );
337         break;
338       }
339     case 2176: // POPUP VIEWER - SELECT ONLY - SOLID
340       {
341         OnSelectOnly( GEOM_SOLID );
342         break;
343       }
344     case 2177: // POPUP VIEWER - SELECT ONLY - COMPOUND
345       {
346         OnSelectOnly( GEOM_COMPOUND );
347         break;
348       }
349     case 2178: // POPUP VIEWER - SELECT ONLY - SELECT ALL
350       {
351         OnSelectOnly( GEOM_ALLOBJECTS );
352         break;
353       }    
354     case 411: // SETTINGS - ADD IN STUDY
355       {
356         // SAN -- TO BE REMOVED !!!
357         break;
358       }
359     case 412: // SETTINGS - SHADING COLOR
360       {
361         OnSettingsColor();
362         break;
363       }
364     case 804: // ADD IN STUDY - POPUP VIEWER
365       {
366         // SAN -- TO BE REMOVED !!!!
367         break;
368       }
369     case 901: // RENAME
370       {
371         OnRename();
372         break;
373       }
374     case 5103: // CHECK GEOMETRY
375       {
376         OnCheckGeometry();
377         break;
378       }
379     case 8032: // COLOR - POPUP VIEWER
380       {
381         OnColor();
382         break;
383       }
384     case 8033: // TRANSPARENCY - POPUP VIEWER
385       {
386         OnTransparency();
387         break;
388       }
389     case 8034: // ISOS - POPUP VIEWER
390       {
391         OnNbIsos();
392         break;
393       }
394     case 8035: // AUTO COLOR - POPUP VIEWER
395       {
396         OnAutoColor();
397         break;
398       }
399     case 8036: // DISABLE AUTO COLOR - POPUP VIEWER
400       {
401         OnDisableAutoColor();
402         break;
403       }
404     case 8037: // SHOW CHILDREN - POPUP VIEWER
405     case 8038: // HIDE CHILDREN - POPUP VIEWER
406       {
407         OnShowHideChildren( theCommandID == 8037 );
408         break;
409       }
410     case 9024 : // OPEN - OBJBROSER POPUP
411       {
412         OnOpen();
413         break;
414       }
415     default:
416       {
417         SUIT_Session::session()->activeApplication()->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
418         break;
419       }
420     }
421   return true;
422 }
423
424
425 //===============================================================================
426 // function : OnEditDelete()
427 // purpose  :
428 //===============================================================================
429 void GEOMToolsGUI::OnEditDelete()
430 {
431   SALOME_ListIO selected;
432   SalomeApp_Application* app =
433     dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
434   if ( !app )
435     return;
436
437   LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
438   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
439   if ( !aSelMgr || !appStudy )
440     return;
441
442   // get selection
443   aSelMgr->selectedObjects( selected, "ObjectBrowser", false );
444   if ( selected.IsEmpty() )
445     return;
446
447   _PTR(Study) aStudy = appStudy->studyDS();
448   
449   // check if study is locked
450   if ( _PTR(AttributeStudyProperties)( aStudy->GetProperties() )->IsLocked() ) {
451     SUIT_MessageBox::warning( app->desktop(),
452                               tr("WRN_WARNING"),
453                               tr("WRN_STUDY_LOCKED") );
454     return; // study is locked
455   }
456   
457   // get GEOM component
458   CORBA::String_var geomIOR = app->orb()->object_to_string( GeometryGUI::GetGeomGen() );
459   QString geomComp = getParentComponent( aStudy->FindObjectIOR( geomIOR.in() ) );
460
461   // check each selected object: if belongs to GEOM, if not reference...
462   QMap<QString,QString> toBeDeleted;
463   QMap<QString,QString> allDeleted;
464   bool isComponentSelected = false;
465   for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
466     Handle(SALOME_InteractiveObject) anIObject = It.Value();
467     if ( !anIObject->hasEntry() )
468       continue; // invalid object
469     // ...
470     QString entry = anIObject->getEntry();
471     _PTR(SObject) obj = aStudy->FindObjectID( entry.toLatin1().data() );
472     // check parent component
473     QString parentComp = getParentComponent( obj );
474     if ( parentComp != geomComp )  {
475       SUIT_MessageBox::warning( app->desktop(),
476                                 QObject::tr("ERR_ERROR"),
477                                 QObject::tr("NON_GEOM_OBJECTS_SELECTED").arg( getGeometryGUI()->moduleName() ) );
478       return; // not GEOM object selected
479     }
480
481     ///////////////////////////////////////////////////////
482     // if GEOM component is selected, so skip other checks
483     if ( isComponentSelected ) continue; 
484     ///////////////////////////////////////////////////////
485         
486     // check if object is reference
487     _PTR(SObject) refobj;
488     if ( obj && obj->ReferencedObject( refobj ) )
489       continue; // skip references
490     // ...
491     QString aName = obj->GetName().c_str();
492     if ( entry == geomComp ) {
493       // GEOM component is selected, skip other checks
494       isComponentSelected = true;
495       continue;
496     }
497     toBeDeleted.insert( entry, aName );
498     allDeleted.insert( entry, aName ); // skip GEOM component
499     // browse through all children recursively
500     _PTR(ChildIterator) it ( aStudy->NewChildIterator( obj ) );
501     for ( it->InitEx( true ); it->More(); it->Next() ) {
502       _PTR(SObject) child( it->Value() );
503       if ( child && child->ReferencedObject( refobj ) )
504         continue; // skip references
505       aName = child->GetName().c_str();
506       if ( !aName.isEmpty() )
507         allDeleted.insert( child->GetID().c_str(), aName );
508     }
509   }
510   
511   // is there is anything to delete?
512   if ( !isComponentSelected && allDeleted.count() <= 0 )
513     return; // nothing to delete
514
515   // show confirmation dialog box
516   GEOMToolsGUI_DeleteDlg dlg( app->desktop(), allDeleted, isComponentSelected );
517   if ( !dlg.exec() )
518     return; // operation is cancelled by user
519   
520   // get currently opened views
521   QList<SALOME_View*> views;
522   SALOME_View* view;
523   ViewManagerList vmans = app->viewManagers();
524   SUIT_ViewManager* vman;
525   foreach ( vman, vmans ) {
526     SUIT_ViewModel* vmod = vman->getViewModel();
527     view = dynamic_cast<SALOME_View*> ( vmod ); // must work for OCC and VTK views
528     if ( view )
529       views.append( view );
530   }
531   
532   _PTR(StudyBuilder) aStudyBuilder (aStudy->NewBuilder());
533   GEOM_Displayer* disp = new GEOM_Displayer( appStudy );
534   
535   if ( isComponentSelected ) {
536     // GEOM component is selected: delete all objects recursively
537     _PTR(SObject) comp = aStudy->FindObjectID( geomComp.toLatin1().data() );
538     if ( !comp )
539       return;
540     _PTR(ChildIterator) it ( aStudy->NewChildIterator( comp ) );
541     // remove top-level objects only
542     for ( it->InitEx( false ); it->More(); it->Next() ) {
543       _PTR(SObject) child( it->Value() );
544       // remove object from GEOM engine
545       removeObjectWithChildren( child, aStudy, views, disp );
546       // remove object from study
547       aStudyBuilder->RemoveObjectWithChildren( child );
548     }
549   }
550   else {
551     // GEOM component is not selected: check if selected objects are in use
552     if ( inUse( aStudy, geomComp, allDeleted ) ) {
553       SUIT_MessageBox::warning( app->desktop(),
554                                 QObject::tr("WRN_WARNING"),
555                                 QObject::tr("DEP_OBJECT") );
556       return; // object(s) in use
557     }
558     // ... and then delete all objects
559     QMap<QString, QString>::Iterator it;
560     for ( it = toBeDeleted.begin(); it != toBeDeleted.end(); ++it ) {
561       _PTR(SObject) obj ( aStudy->FindObjectID( it.key().toLatin1().data() ) );
562       // remove object from GEOM engine
563       removeObjectWithChildren( obj, aStudy, views, disp );
564       // remove objects from study
565       aStudyBuilder->RemoveObjectWithChildren( obj );
566     }
567   }
568   
569   selected.Clear();
570   aSelMgr->setSelectedObjects( selected );
571   getGeometryGUI()->updateObjBrowser();
572   app->updateActions(); //SRN: To update a Save button in the toolbar
573 }
574
575
576 //==============================================================================
577 // function : OnEditCopy()
578 // purpose  :
579 //==============================================================================
580 void GEOMToolsGUI::OnEditCopy()
581 {
582 /*
583  SALOME_Selection* Sel = SALOME_Selection::Selection(QAD_Application::getDesktop()->getActiveStudy()->getSelection() );
584   GEOM::string_array_var listIOR = new GEOM::string_array;
585
586   const SALOME_ListIO& List = Sel->StoredIObjects();
587
588   myGeomBase->ConvertListOfIOInListOfIOR(List, listIOR);
589
590   Sel->ClearIObjects();
591
592   SALOMEDS::Study_var aStudy = QAD_Application::getDesktop()->getActiveStudy()->getStudyDocument();
593   int aStudyID = aStudy->StudyId();
594
595   for (unsigned int ind = 0; ind < listIOR->length();ind++) {
596     GEOM::GEOM_Object_var aShapeInit = myGeom->GetIORFromString(listIOR[ind]);
597     try {
598       GEOM::GEOM_IInsertOperations_var IOp =  myGeom->GetIInsertOperations(aStudyID);
599       GEOM::GEOM_Object_var result = IOp->MakeCopy(aShapeInit);
600       myGeomBase->Display(result);
601     }
602     catch  (const SALOME::SALOME_Exception& S_ex) {
603       QtCatchCorbaException(S_ex);
604     }
605   }
606
607   QAD_Application::getDesktop()->putInfo(tr("GEOM_PRP_READY"));
608 */
609 }
610
611 //=====================================================================================
612 // function : Import
613 // purpose  : BRep, Iges, Step
614 //=====================================================================================
615 bool GEOMToolsGUI::Import()
616 {
617   SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( getGeometryGUI()->getApp() );
618   if ( !app ) return false;
619
620   SalomeApp_Study* stud = dynamic_cast<SalomeApp_Study*> ( app->activeStudy() );
621   if ( !stud ) {
622     MESSAGE ( "FAILED to cast active study to SalomeApp_Study" );
623     return false;
624   }
625   _PTR(Study) aStudy = stud->studyDS();
626
627   // check if study is locked
628   bool aLocked = (_PTR(AttributeStudyProperties)(aStudy->GetProperties()))->IsLocked();
629   if ( aLocked ) {
630     SUIT_MessageBox::warning( app->desktop(),
631                               QObject::tr("WRN_WARNING"),
632                               QObject::tr("WRN_STUDY_LOCKED") );
633     return false;
634   }
635
636   // check if GEOM engine is available
637   GEOM::GEOM_Gen_var eng = GeometryGUI::GetGeomGen();
638   if ( CORBA::is_nil( eng ) ) {
639     SUIT_MessageBox::critical( app->desktop(),
640                                QObject::tr("WRN_WARNING"),
641                                QObject::tr( "GEOM Engine is not started" ) );
642     return false;
643   }
644
645   GEOM::GEOM_IInsertOperations_var aInsOp = eng->GetIInsertOperations( aStudy->StudyId() );
646   if ( aInsOp->_is_nil() )
647     return false;
648
649   // obtain a list of available import formats
650   FilterMap aMap;
651   GEOM::string_array_var aFormats, aPatterns;
652   aInsOp->ImportTranslators( aFormats, aPatterns );
653
654   for ( int i = 0, n = aFormats->length(); i < n; i++ )
655     aMap.insert( (char*)aPatterns[i], (char*)aFormats[i] );
656
657   // select files to be imported
658   QString fileType;
659   QStringList fileNames = getFileNames( app->desktop(), "", aMap,
660                                         tr( "GEOM_MEN_IMPORT" ), fileType, true );
661
662   // set Wait cursor
663   SUIT_OverrideCursor wc;
664
665   if ( fileNames.count() == 0 )
666     return false; // nothing selected, return
667
668   QStringList errors;
669
670   QList< GEOM::GEOM_Object_var > objsForDisplay;
671
672   
673   // iterate through all selected files
674
675   SUIT_MessageBox::StandardButton igesAnswer = SUIT_MessageBox::NoButton;
676   SUIT_MessageBox::StandardButton acisAnswer = SUIT_MessageBox::NoButton;
677
678   for ( int i = 0; i < fileNames.count(); i++ ) {
679     QString fileName = fileNames[i];
680
681     if ( fileName.isEmpty() )
682       continue;
683
684     QString aCurrentType;
685     if ( fileType.isEmpty() ) {
686       // file type is not defined, try to detect
687       QString ext = QFileInfo( fileName ).suffix().toUpper();
688       QRegExp re( "\\*\\.(\\w+)" );
689       for ( FilterMap::const_iterator it = aMap.begin(); 
690             it != aMap.end() && aCurrentType.isEmpty(); ++it ) {
691         int pos = 0;
692         while ( re.indexIn( it.key(), pos ) >= 0 ) {
693           QString f = re.cap(1).trimmed().toUpper();
694           if ( ext == f ) { aCurrentType = it.value(); break; }
695           pos = re.pos() + re.cap(1).length() + 2;
696         }
697       }
698     }
699     else {
700       aCurrentType = fileType;
701     }
702
703     if ( aCurrentType.isEmpty() ) {
704       errors.append( QString( "%1 : %2" ).arg( fileName ).arg( tr( "GEOM_UNSUPPORTED_TYPE" ) ) );
705       continue;
706     }
707
708     GEOM_Operation* anOp = new GEOM_Operation( app, aInsOp.in() );
709     try {
710       app->putInfo( tr( "GEOM_PRP_LOADING" ).arg( SUIT_Tools::file( fileName, /*withExten=*/true ) ) );
711       anOp->start();
712
713       CORBA::String_var fileN = fileName.toLatin1().constData();
714       CORBA::String_var fileT = aCurrentType.toLatin1().constData();
715
716       // skl 29.05.2009
717       if ( aCurrentType == "IGES" ) {
718         GEOM::GEOM_Object_var anObj = aInsOp->Import( fileN, "IGES_UNIT" );
719         bool needConvert = false;
720         TCollection_AsciiString aUnitName = aInsOp->GetErrorCode();
721         if ( aUnitName.SubString( 1, 4 ) == "UNIT" )
722           needConvert = aUnitName.SubString( 6, aUnitName.Length() ) != "M";
723
724         if ( needConvert ) {
725           if ( igesAnswer == SUIT_MessageBox::NoToAll ) {
726             // converting for all files is already approved
727             fileT = "IGES_SCALE";
728           }
729           else if ( igesAnswer != SUIT_MessageBox::YesToAll ) {
730             SUIT_MessageBox::StandardButtons btns = SUIT_MessageBox::Yes | SUIT_MessageBox::No;
731             if ( i < fileNames.count()-1 ) btns = btns | SUIT_MessageBox::YesToAll | SUIT_MessageBox::NoToAll;
732             igesAnswer = SUIT_MessageBox::question( app->desktop(),
733                                                     "Question",//tr("WRN_WARNING"),
734                                                     tr("GEOM_SCALE_DIMENSIONS"),
735                                                     btns | SUIT_MessageBox::Cancel,
736                                                     SUIT_MessageBox::No );
737             switch ( igesAnswer ) {
738             case SUIT_MessageBox::Cancel:
739               return false;                // cancel (break) import operation
740             case SUIT_MessageBox::Yes:
741             case SUIT_MessageBox::YesToAll:
742               break;                       // scaling is confirmed
743             case SUIT_MessageBox::No:
744             case SUIT_MessageBox::NoAll:
745               fileT = "IGES_SCALE";
746             default:
747               break;                       // scaling is rejected
748             } // switch ( igesAnswer )
749           } // if ( igeAnswer != NoToAll )
750         } // if ( needConvert )
751       } // if ( aCurrentType == "IGES" )
752       else if ( aCurrentType == "ACIS" ) {
753         if ( acisAnswer != SUIT_MessageBox::YesToAll && acisAnswer != SUIT_MessageBox::NoToAll ) {
754           SUIT_MessageBox::StandardButtons btns = SUIT_MessageBox::Yes | SUIT_MessageBox::No;
755           if ( i < fileNames.count()-1 ) btns = btns | SUIT_MessageBox::YesToAll | SUIT_MessageBox::NoToAll;
756           acisAnswer = SUIT_MessageBox::question( app->desktop(),
757                                                   "Question",//tr("WRN_WARNING"),
758                                                   tr("GEOM_PUBLISH_NAMED_SHAPES"),
759                                                   btns | SUIT_MessageBox::Cancel,
760                                                   SUIT_MessageBox::No );
761           if ( acisAnswer == SUIT_MessageBox::Cancel )
762             return false; // cancel (break) import operation
763         } // if ( acisAnswer != YesToAll && acisAnswer != NoToAll )
764       } // else if ( aCurrentType == "ACIS" )
765       
766       GEOM::GEOM_Object_var anObj = aInsOp->Import( fileN, fileT );
767
768       if ( !anObj->_is_nil() && aInsOp->IsDone() ) {
769         QString aPublishObjName = 
770           GEOMBase::GetDefaultName( SUIT_Tools::file( fileName, /*withExten=*/true ) );
771         
772         SALOMEDS::Study_var aDSStudy = GeometryGUI::ClientStudyToStudy( aStudy );
773         GeometryGUI::GetGeomGen()->PublishInStudy( aDSStudy,
774                                                    SALOMEDS::SObject::_nil(),
775                                                    anObj,
776                                                    aPublishObjName.toLatin1().constData() );
777         
778         objsForDisplay.append( anObj );
779         
780         if ( aCurrentType == "ACIS" ) {
781           if ( acisAnswer == SUIT_MessageBox::Yes || acisAnswer == SUIT_MessageBox::YesToAll )
782             GeometryGUI::GetGeomGen()->PublishNamedShapesInStudy( aDSStudy, anObj );
783         }
784
785         anOp->commit();
786       }
787       else {
788         anOp->abort();
789         errors.append( QString( "%1 : %2" ).arg( fileName ).arg( aInsOp->GetErrorCode() ) );
790       }
791     }
792     catch( const SALOME::SALOME_Exception& S_ex ) {
793       anOp->abort();
794       errors.append( QString( "%1 : %2" ).arg( fileName ).arg( tr( "GEOM_UNKNOWN_IMPORT_ERROR" ) ) );
795     }
796   }
797
798   // update object browser
799   getGeometryGUI()->updateObjBrowser( true );
800
801   // display imported model (if only one file is selected)
802   if ( objsForDisplay.count() == 1 )
803     GEOM_Displayer( stud ).Display( objsForDisplay[0].in() );
804
805   if ( errors.count() > 0 ) {
806     SUIT_MessageBox::critical( app->desktop(),
807                                QObject::tr( "GEOM_ERROR" ),
808                                QObject::tr( "GEOM_IMPORT_ERRORS" ) + "\n" + errors.join( "\n" ) );
809   }
810
811   app->updateActions(); //SRN: To update a Save button in the toolbar
812
813   return objsForDisplay.count() > 0;
814 }
815
816
817 //=====================================================================================
818 // function : Export
819 // purpose  : BRep, Iges, Step
820 //=====================================================================================
821 bool GEOMToolsGUI::Export()
822 {
823   SalomeApp_Application* app = getGeometryGUI()->getApp();
824   if (!app) return false;
825
826   SalomeApp_Study* stud = dynamic_cast<SalomeApp_Study*> ( app->activeStudy() );
827   if ( !stud ) {
828     MESSAGE ( "FAILED to cast active study to SalomeApp_Study" );
829     return false;
830   }
831   _PTR(Study) aStudy = stud->studyDS();
832
833   GEOM::GEOM_Gen_var eng = GeometryGUI::GetGeomGen();
834   if ( CORBA::is_nil( eng ) ) {
835     SUIT_MessageBox::critical( app->desktop(),
836                                QObject::tr("WRN_WARNING"),
837                                QObject::tr( "GEOM Engine is not started" ) );
838     return false;
839   }
840
841   GEOM::GEOM_IInsertOperations_var aInsOp = eng->GetIInsertOperations( aStudy->StudyId() );
842   if ( aInsOp->_is_nil() )
843     return false;
844
845   // Obtain a list of available export formats
846   FilterMap aMap;
847   QStringList filters;
848   GEOM::string_array_var aFormats, aPatterns;
849   aInsOp->ExportTranslators( aFormats, aPatterns );
850   for ( int i = 0, n = aFormats->length(); i < n; i++ ) {
851     aMap.insert( (char*)aPatterns[i], (char*)aFormats[i] );
852     filters.push_back( (char*)aPatterns[i] );
853   }
854
855   // Get selected objects
856   LightApp_SelectionMgr* sm = app->selectionMgr();
857   if ( !sm )
858     return false;
859
860   SALOME_ListIO selectedObjects;
861   sm->selectedObjects( selectedObjects );
862   bool appropriateObj = false;
863
864   SALOME_ListIteratorOfListIO It( selectedObjects );
865   for(;It.More();It.Next()) {
866     Handle(SALOME_InteractiveObject) IObject = It.Value();
867     Standard_Boolean found;
868     GEOM::GEOM_Object_var anObj = GEOMBase::ConvertIOinGEOMObject(IObject, found);
869
870     if ( !found || anObj->_is_nil() )
871       continue;
872
873     QString fileType;
874     QString file = getFileName(app->desktop(), QString( IObject->getName() ), aMap, filters,
875                                tr("GEOM_MEN_EXPORT"), false, fileType, true);
876
877     // User has pressed "Cancel" --> stop the operation
878     if ( file.isEmpty() || fileType.isEmpty() )
879       return false;
880
881     GEOM_Operation* anOp = new GEOM_Operation( app, aInsOp.in() );
882     try {
883       SUIT_OverrideCursor wc;
884
885       app->putInfo( tr("GEOM_PRP_EXPORT").arg(SUIT_Tools::file( file, /*withExten=*/true )) );
886
887       anOp->start();
888
889
890       aInsOp->Export( anObj, file.toStdString().c_str(), fileType.toLatin1().constData() );
891
892       if ( aInsOp->IsDone() )
893         anOp->commit();
894       else
895         {
896           anOp->abort();
897           wc.suspend();
898           SUIT_MessageBox::critical( app->desktop(),
899                                      QObject::tr( "GEOM_ERROR" ),
900                                      QObject::tr("GEOM_PRP_ABORT") + "\n" + QString( aInsOp->GetErrorCode() ) );
901           return false;
902         }
903     }
904     catch (const SALOME::SALOME_Exception& S_ex) {
905       //QtCatchCorbaException(S_ex);
906       anOp->abort();
907       return false;
908     }
909     appropriateObj = true;
910   }
911
912   if ( !appropriateObj )
913     SUIT_MessageBox::warning( app->desktop(),
914                               QObject::tr("WRN_WARNING"),
915                               QObject::tr("GEOM_WRN_NO_APPROPRIATE_SELECTION") );
916   return true;
917 }
918
919 //=====================================================================================
920 // function : RemoveObjectWithChildren
921 // purpose  : to be used by OnEditDelete() method
922 //=====================================================================================
923 void GEOMToolsGUI::removeObjectWithChildren(_PTR(SObject) obj,
924                                             _PTR(Study) aStudy,
925                                             QList<SALOME_View*> views,
926                                             GEOM_Displayer* disp)
927 {
928   // iterate through all children of obj
929   for (_PTR(ChildIterator) it (aStudy->NewChildIterator(obj)); it->More(); it->Next()) {
930     _PTR(SObject) child (it->Value());
931     removeObjectWithChildren(child, aStudy, views, disp);
932   }
933
934   // erase object and remove it from engine
935   _PTR(GenericAttribute) anAttr;
936   if (obj->FindAttribute(anAttr, "AttributeIOR")) {
937     _PTR(AttributeIOR) anIOR (anAttr);
938
939     // Delete shape in Client
940     const TCollection_AsciiString ASCIor ((char*)anIOR->Value().c_str());
941     getGeometryGUI()->GetShapeReader().RemoveShapeFromBuffer(ASCIor);
942
943     CORBA::Object_var corbaObj = GeometryGUI::ClientSObjectToObject(obj);
944     GEOM::GEOM_Object_var geomObj = GEOM::GEOM_Object::_narrow( corbaObj );
945     if (!CORBA::is_nil(geomObj)) {
946       // Erase graphical object
947       QListIterator<SALOME_View*> it( views );
948       while ( it.hasNext() )
949         if ( SALOME_View* view = it.next() )
950           disp->Erase(geomObj, true, view);
951       
952       // Remove object from Engine
953       GeometryGUI::GetGeomGen()->RemoveObject( geomObj );
954     }
955   }
956 }
957
958 //=================================================================================
959 // function : deactivate()
960 // purpose  : Called when GEOM component is deactivated
961 //=================================================================================
962 void GEOMToolsGUI::deactivate()
963 {
964   SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
965   if ( app ) {
966     SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
967     GEOM_Displayer aDisp (appStudy);
968     aDisp.GlobalSelection();
969     getGeometryGUI()->setLocalSelectionMode(GEOM_ALLOBJECTS);
970   }
971 }
972
973 //=====================================================================================
974 // EXPORTED METHODS
975 //=====================================================================================
976 extern "C"
977 {
978 #ifdef WIN32
979   __declspec( dllexport )
980 #endif
981   GEOMGUI* GetLibGUI( GeometryGUI* parent )
982   {
983     return new GEOMToolsGUI( parent );
984   }
985 }