Salome HOME
cb93e55af0e675cb04c178bcd2cf2a16ca5b0bd0
[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 8031: // DEFLECTION ANGLE - POPUP VIEWER
380       {
381         OnDeflection();
382         break;
383       }
384     case 8032: // COLOR - POPUP VIEWER
385       {
386         OnColor();
387         break;
388       }
389     case 8033: // TRANSPARENCY - POPUP VIEWER
390       {
391         OnTransparency();
392         break;
393       }
394     case 8034: // ISOS - POPUP VIEWER
395       {
396         OnNbIsos();
397         break;
398       }
399     case 8035: // AUTO COLOR - POPUP VIEWER
400       {
401         OnAutoColor();
402         break;
403       }
404     case 8036: // DISABLE AUTO COLOR - POPUP VIEWER
405       {
406         OnDisableAutoColor();
407         break;
408       }
409     case 8037: // SHOW CHILDREN - POPUP VIEWER
410     case 8038: // HIDE CHILDREN - POPUP VIEWER
411       {
412         OnShowHideChildren( theCommandID == 8037 );
413         break;
414       }
415     case 8039: // POINT MARKER
416       {
417         OnPointMarker();
418         break;
419       }
420     case 9024 : // OPEN - OBJBROSER POPUP
421       {
422         OnOpen();
423         break;
424       }
425     default:
426       {
427         SUIT_Session::session()->activeApplication()->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
428         break;
429       }
430     }
431   return true;
432 }
433
434
435 //===============================================================================
436 // function : OnEditDelete()
437 // purpose  :
438 //===============================================================================
439 void GEOMToolsGUI::OnEditDelete()
440 {
441   SALOME_ListIO selected;
442   SalomeApp_Application* app =
443     dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
444   if ( !app )
445     return;
446
447   LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
448   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
449   if ( !aSelMgr || !appStudy )
450     return;
451
452   // get selection
453   aSelMgr->selectedObjects( selected, "ObjectBrowser", false );
454   if ( selected.IsEmpty() )
455     return;
456
457   _PTR(Study) aStudy = appStudy->studyDS();
458   
459   // check if study is locked
460   if ( _PTR(AttributeStudyProperties)( aStudy->GetProperties() )->IsLocked() ) {
461     SUIT_MessageBox::warning( app->desktop(),
462                               tr("WRN_WARNING"),
463                               tr("WRN_STUDY_LOCKED") );
464     return; // study is locked
465   }
466   
467   // get GEOM component
468   CORBA::String_var geomIOR = app->orb()->object_to_string( GeometryGUI::GetGeomGen() );
469   QString geomComp = getParentComponent( aStudy->FindObjectIOR( geomIOR.in() ) );
470
471   // check each selected object: if belongs to GEOM, if not reference...
472   QMap<QString,QString> toBeDeleted;
473   QMap<QString,QString> allDeleted;
474   bool isComponentSelected = false;
475   for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
476     Handle(SALOME_InteractiveObject) anIObject = It.Value();
477     if ( !anIObject->hasEntry() )
478       continue; // invalid object
479     // ...
480     QString entry = anIObject->getEntry();
481     _PTR(SObject) obj = aStudy->FindObjectID( entry.toLatin1().data() );
482     // check parent component
483     QString parentComp = getParentComponent( obj );
484     if ( parentComp != geomComp )  {
485       SUIT_MessageBox::warning( app->desktop(),
486                                 QObject::tr("ERR_ERROR"),
487                                 QObject::tr("NON_GEOM_OBJECTS_SELECTED").arg( getGeometryGUI()->moduleName() ) );
488       return; // not GEOM object selected
489     }
490
491     ///////////////////////////////////////////////////////
492     // if GEOM component is selected, so skip other checks
493     if ( isComponentSelected ) continue; 
494     ///////////////////////////////////////////////////////
495         
496     // check if object is reference
497     _PTR(SObject) refobj;
498     if ( obj && obj->ReferencedObject( refobj ) ) {
499       // get the main object by reference IPAL 21354
500       obj = refobj;
501       entry = obj->GetID().c_str();
502     }
503     // ...
504     QString aName = obj->GetName().c_str();
505     if ( entry == geomComp ) {
506       // GEOM component is selected, skip other checks
507       isComponentSelected = true;
508       continue;
509     }
510     toBeDeleted.insert( entry, aName );
511     allDeleted.insert( entry, aName ); // skip GEOM component
512     // browse through all children recursively
513     _PTR(ChildIterator) it ( aStudy->NewChildIterator( obj ) );
514     for ( it->InitEx( true ); it->More(); it->Next() ) {
515       _PTR(SObject) child( it->Value() );
516       if ( child && child->ReferencedObject( refobj ) )
517         continue; // skip references
518       aName = child->GetName().c_str();
519       if ( !aName.isEmpty() )
520         allDeleted.insert( child->GetID().c_str(), aName );
521     }
522   }
523   
524   // is there is anything to delete?
525   if ( !isComponentSelected && allDeleted.count() <= 0 )
526     return; // nothing to delete
527
528   // show confirmation dialog box
529   GEOMToolsGUI_DeleteDlg dlg( app->desktop(), allDeleted, isComponentSelected );
530   if ( !dlg.exec() )
531     return; // operation is cancelled by user
532   
533   // get currently opened views
534   QList<SALOME_View*> views;
535   SALOME_View* view;
536   ViewManagerList vmans = app->viewManagers();
537   SUIT_ViewManager* vman;
538   foreach ( vman, vmans ) {
539     SUIT_ViewModel* vmod = vman->getViewModel();
540     view = dynamic_cast<SALOME_View*> ( vmod ); // must work for OCC and VTK views
541     if ( view )
542       views.append( view );
543   }
544   
545   _PTR(StudyBuilder) aStudyBuilder (aStudy->NewBuilder());
546   GEOM_Displayer* disp = new GEOM_Displayer( appStudy );
547   
548   if ( isComponentSelected ) {
549     // GEOM component is selected: delete all objects recursively
550     _PTR(SObject) comp = aStudy->FindObjectID( geomComp.toLatin1().data() );
551     if ( !comp )
552       return;
553     _PTR(ChildIterator) it ( aStudy->NewChildIterator( comp ) );
554     // remove top-level objects only
555     for ( it->InitEx( false ); it->More(); it->Next() ) {
556       _PTR(SObject) child( it->Value() );
557       // remove object from GEOM engine
558       removeObjectWithChildren( child, aStudy, views, disp );
559       // remove object from study
560       aStudyBuilder->RemoveObjectWithChildren( child );
561     }
562   }
563   else {
564     // GEOM component is not selected: check if selected objects are in use
565     if ( inUse( aStudy, geomComp, allDeleted ) ) {
566       SUIT_MessageBox::warning( app->desktop(),
567                                 QObject::tr("WRN_WARNING"),
568                                 QObject::tr("DEP_OBJECT") );
569       return; // object(s) in use
570     }
571     // ... and then delete all objects
572     QMap<QString, QString>::Iterator it;
573     for ( it = toBeDeleted.begin(); it != toBeDeleted.end(); ++it ) {
574       _PTR(SObject) obj ( aStudy->FindObjectID( it.key().toLatin1().data() ) );
575       // remove object from GEOM engine
576       removeObjectWithChildren( obj, aStudy, views, disp );
577       // remove objects from study
578       aStudyBuilder->RemoveObjectWithChildren( obj );
579     }
580   }
581   
582   selected.Clear();
583   aSelMgr->setSelectedObjects( selected );
584   getGeometryGUI()->updateObjBrowser();
585   app->updateActions(); //SRN: To update a Save button in the toolbar
586 }
587
588
589 //==============================================================================
590 // function : OnEditCopy()
591 // purpose  :
592 //==============================================================================
593 void GEOMToolsGUI::OnEditCopy()
594 {
595 /*
596  SALOME_Selection* Sel = SALOME_Selection::Selection(QAD_Application::getDesktop()->getActiveStudy()->getSelection() );
597   GEOM::string_array_var listIOR = new GEOM::string_array;
598
599   const SALOME_ListIO& List = Sel->StoredIObjects();
600
601   myGeomBase->ConvertListOfIOInListOfIOR(List, listIOR);
602
603   Sel->ClearIObjects();
604
605   SALOMEDS::Study_var aStudy = QAD_Application::getDesktop()->getActiveStudy()->getStudyDocument();
606   int aStudyID = aStudy->StudyId();
607
608   for (unsigned int ind = 0; ind < listIOR->length();ind++) {
609     GEOM::GEOM_Object_var aShapeInit = myGeom->GetIORFromString(listIOR[ind]);
610     try {
611       GEOM::GEOM_IInsertOperations_var IOp =  myGeom->GetIInsertOperations(aStudyID);
612       GEOM::GEOM_Object_var result = IOp->MakeCopy(aShapeInit);
613       myGeomBase->Display(result);
614     }
615     catch  (const SALOME::SALOME_Exception& S_ex) {
616       QtCatchCorbaException(S_ex);
617     }
618   }
619
620   QAD_Application::getDesktop()->putInfo(tr("GEOM_PRP_READY"));
621 */
622 }
623
624 //=====================================================================================
625 // function : Import
626 // purpose  : BRep, Iges, Step
627 //=====================================================================================
628 bool GEOMToolsGUI::Import()
629 {
630   SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( getGeometryGUI()->getApp() );
631   if ( !app ) return false;
632
633   SalomeApp_Study* stud = dynamic_cast<SalomeApp_Study*> ( app->activeStudy() );
634   if ( !stud ) {
635     MESSAGE ( "FAILED to cast active study to SalomeApp_Study" );
636     return false;
637   }
638   _PTR(Study) aStudy = stud->studyDS();
639
640   // check if study is locked
641   bool aLocked = (_PTR(AttributeStudyProperties)(aStudy->GetProperties()))->IsLocked();
642   if ( aLocked ) {
643     SUIT_MessageBox::warning( app->desktop(),
644                               QObject::tr("WRN_WARNING"),
645                               QObject::tr("WRN_STUDY_LOCKED") );
646     return false;
647   }
648
649   // check if GEOM engine is available
650   GEOM::GEOM_Gen_var eng = GeometryGUI::GetGeomGen();
651   if ( CORBA::is_nil( eng ) ) {
652     SUIT_MessageBox::critical( app->desktop(),
653                                QObject::tr("WRN_WARNING"),
654                                QObject::tr( "GEOM Engine is not started" ) );
655     return false;
656   }
657
658   GEOM::GEOM_IInsertOperations_var aInsOp = eng->GetIInsertOperations( aStudy->StudyId() );
659   if ( aInsOp->_is_nil() )
660     return false;
661
662   // obtain a list of available import formats
663   FilterMap aMap;
664   GEOM::string_array_var aFormats, aPatterns;
665   aInsOp->ImportTranslators( aFormats, aPatterns );
666
667   for ( int i = 0, n = aFormats->length(); i < n; i++ )
668     aMap.insert( (char*)aPatterns[i], (char*)aFormats[i] );
669
670   // select files to be imported
671   QString fileType;
672   QStringList fileNames = getFileNames( app->desktop(), "", aMap,
673                                         tr( "GEOM_MEN_IMPORT" ), fileType, true );
674
675   // set Wait cursor
676   SUIT_OverrideCursor wc;
677
678   if ( fileNames.count() == 0 )
679     return false; // nothing selected, return
680
681   QStringList errors;
682
683   QList< GEOM::GEOM_Object_var > objsForDisplay;
684
685   
686   // iterate through all selected files
687
688   SUIT_MessageBox::StandardButton igesAnswer = SUIT_MessageBox::NoButton;
689   SUIT_MessageBox::StandardButton acisAnswer = SUIT_MessageBox::NoButton;
690
691   for ( int i = 0; i < fileNames.count(); i++ ) {
692     QString fileName = fileNames[i];
693
694     if ( fileName.isEmpty() )
695       continue;
696
697     QString aCurrentType;
698     if ( fileType.isEmpty() ) {
699       // file type is not defined, try to detect
700       QString ext = QFileInfo( fileName ).suffix().toUpper();
701       QRegExp re( "\\*\\.(\\w+)" );
702       for ( FilterMap::const_iterator it = aMap.begin(); 
703             it != aMap.end() && aCurrentType.isEmpty(); ++it ) {
704         int pos = 0;
705         while ( re.indexIn( it.key(), pos ) >= 0 ) {
706           QString f = re.cap(1).trimmed().toUpper();
707           if ( ext == f ) { aCurrentType = it.value(); break; }
708           pos = re.pos() + re.cap(1).length() + 2;
709         }
710       }
711     }
712     else {
713       aCurrentType = fileType;
714     }
715
716     if ( aCurrentType.isEmpty() ) {
717       errors.append( QString( "%1 : %2" ).arg( fileName ).arg( tr( "GEOM_UNSUPPORTED_TYPE" ) ) );
718       continue;
719     }
720
721     GEOM_Operation* anOp = new GEOM_Operation( app, aInsOp.in() );
722     try {
723       app->putInfo( tr( "GEOM_PRP_LOADING" ).arg( SUIT_Tools::file( fileName, /*withExten=*/true ) ) );
724       anOp->start();
725
726       CORBA::String_var fileN = fileName.toLatin1().constData();
727       CORBA::String_var fileT = aCurrentType.toLatin1().constData();
728
729       // skl 29.05.2009
730       if ( aCurrentType == "IGES" ) {
731         GEOM::GEOM_Object_var anObj = aInsOp->Import( fileN, "IGES_UNIT" );
732         bool needConvert = false;
733         TCollection_AsciiString aUnitName = aInsOp->GetErrorCode();
734         if ( aUnitName.SubString( 1, 4 ) == "UNIT" )
735           needConvert = aUnitName.SubString( 6, aUnitName.Length() ) != "M";
736
737         if ( needConvert ) {
738           if ( igesAnswer == SUIT_MessageBox::NoToAll ) {
739             // converting for all files is already approved
740             fileT = "IGES_SCALE";
741           }
742           else if ( igesAnswer != SUIT_MessageBox::YesToAll ) {
743             SUIT_MessageBox::StandardButtons btns = SUIT_MessageBox::Yes | SUIT_MessageBox::No;
744             if ( i < fileNames.count()-1 ) btns = btns | SUIT_MessageBox::YesToAll | SUIT_MessageBox::NoToAll;
745             igesAnswer = SUIT_MessageBox::question( app->desktop(),
746                                                     "Question",//tr("WRN_WARNING"),
747                                                     tr("GEOM_SCALE_DIMENSIONS"),
748                                                     btns | SUIT_MessageBox::Cancel,
749                                                     SUIT_MessageBox::No );
750             switch ( igesAnswer ) {
751             case SUIT_MessageBox::Cancel:
752               return false;                // cancel (break) import operation
753             case SUIT_MessageBox::Yes:
754             case SUIT_MessageBox::YesToAll:
755               break;                       // scaling is confirmed
756             case SUIT_MessageBox::No:
757             case SUIT_MessageBox::NoAll:
758               fileT = "IGES_SCALE";
759             default:
760               break;                       // scaling is rejected
761             } // switch ( igesAnswer )
762           } // if ( igeAnswer != NoToAll )
763         } // if ( needConvert )
764       } // if ( aCurrentType == "IGES" )
765       else if ( aCurrentType == "ACIS" ) {
766         if ( acisAnswer != SUIT_MessageBox::YesToAll && acisAnswer != SUIT_MessageBox::NoToAll ) {
767           SUIT_MessageBox::StandardButtons btns = SUIT_MessageBox::Yes | SUIT_MessageBox::No;
768           if ( i < fileNames.count()-1 ) btns = btns | SUIT_MessageBox::YesToAll | SUIT_MessageBox::NoToAll;
769           acisAnswer = SUIT_MessageBox::question( app->desktop(),
770                                                   "Question",//tr("WRN_WARNING"),
771                                                   tr("GEOM_PUBLISH_NAMED_SHAPES"),
772                                                   btns | SUIT_MessageBox::Cancel,
773                                                   SUIT_MessageBox::No );
774           if ( acisAnswer == SUIT_MessageBox::Cancel )
775             return false; // cancel (break) import operation
776         } // if ( acisAnswer != YesToAll && acisAnswer != NoToAll )
777       } // else if ( aCurrentType == "ACIS" )
778       
779       GEOM::GEOM_Object_var anObj = aInsOp->Import( fileN, fileT );
780
781       if ( !anObj->_is_nil() && aInsOp->IsDone() ) {
782         QString aPublishObjName = 
783           GEOMBase::GetDefaultName( SUIT_Tools::file( fileName, /*withExten=*/true ) );
784         
785         SALOMEDS::Study_var aDSStudy = GeometryGUI::ClientStudyToStudy( aStudy );
786         GeometryGUI::GetGeomGen()->PublishInStudy( aDSStudy,
787                                                    SALOMEDS::SObject::_nil(),
788                                                    anObj,
789                                                    aPublishObjName.toLatin1().constData() );
790         
791         objsForDisplay.append( anObj );
792         
793         if ( aCurrentType == "ACIS" ) {
794           if ( acisAnswer == SUIT_MessageBox::Yes || acisAnswer == SUIT_MessageBox::YesToAll )
795             GeometryGUI::GetGeomGen()->PublishNamedShapesInStudy( aDSStudy, anObj );
796         }
797
798         anOp->commit();
799       }
800       else {
801         anOp->abort();
802         errors.append( QString( "%1 : %2" ).arg( fileName ).arg( aInsOp->GetErrorCode() ) );
803       }
804     }
805     catch( const SALOME::SALOME_Exception& S_ex ) {
806       anOp->abort();
807       errors.append( QString( "%1 : %2" ).arg( fileName ).arg( tr( "GEOM_UNKNOWN_IMPORT_ERROR" ) ) );
808     }
809   }
810
811   // update object browser
812   getGeometryGUI()->updateObjBrowser( true );
813
814   // display imported model (if only one file is selected)
815   if ( objsForDisplay.count() == 1 )
816     GEOM_Displayer( stud ).Display( objsForDisplay[0].in() );
817
818   if ( errors.count() > 0 ) {
819     SUIT_MessageBox::critical( app->desktop(),
820                                QObject::tr( "GEOM_ERROR" ),
821                                QObject::tr( "GEOM_IMPORT_ERRORS" ) + "\n" + errors.join( "\n" ) );
822   }
823
824   app->updateActions(); //SRN: To update a Save button in the toolbar
825
826   return objsForDisplay.count() > 0;
827 }
828
829
830 //=====================================================================================
831 // function : Export
832 // purpose  : BRep, Iges, Step
833 //=====================================================================================
834 bool GEOMToolsGUI::Export()
835 {
836   SalomeApp_Application* app = getGeometryGUI()->getApp();
837   if (!app) return false;
838
839   SalomeApp_Study* stud = dynamic_cast<SalomeApp_Study*> ( app->activeStudy() );
840   if ( !stud ) {
841     MESSAGE ( "FAILED to cast active study to SalomeApp_Study" );
842     return false;
843   }
844   _PTR(Study) aStudy = stud->studyDS();
845
846   GEOM::GEOM_Gen_var eng = GeometryGUI::GetGeomGen();
847   if ( CORBA::is_nil( eng ) ) {
848     SUIT_MessageBox::critical( app->desktop(),
849                                QObject::tr("WRN_WARNING"),
850                                QObject::tr( "GEOM Engine is not started" ) );
851     return false;
852   }
853
854   GEOM::GEOM_IInsertOperations_var aInsOp = eng->GetIInsertOperations( aStudy->StudyId() );
855   if ( aInsOp->_is_nil() )
856     return false;
857
858   // Obtain a list of available export formats
859   FilterMap aMap;
860   QStringList filters;
861   GEOM::string_array_var aFormats, aPatterns;
862   aInsOp->ExportTranslators( aFormats, aPatterns );
863   for ( int i = 0, n = aFormats->length(); i < n; i++ ) {
864     aMap.insert( (char*)aPatterns[i], (char*)aFormats[i] );
865     filters.push_back( (char*)aPatterns[i] );
866   }
867
868   // Get selected objects
869   LightApp_SelectionMgr* sm = app->selectionMgr();
870   if ( !sm )
871     return false;
872
873   SALOME_ListIO selectedObjects;
874   sm->selectedObjects( selectedObjects );
875   bool appropriateObj = false;
876
877   SALOME_ListIteratorOfListIO It( selectedObjects );
878   for(;It.More();It.Next()) {
879     Handle(SALOME_InteractiveObject) IObject = It.Value();
880     Standard_Boolean found;
881     GEOM::GEOM_Object_var anObj = GEOMBase::ConvertIOinGEOMObject(IObject, found);
882
883     if ( !found || anObj->_is_nil() )
884       continue;
885
886     QString fileType;
887     QString file = getFileName(app->desktop(), QString( IObject->getName() ), aMap, filters,
888                                tr("GEOM_MEN_EXPORT"), false, fileType, true);
889
890     // User has pressed "Cancel" --> stop the operation
891     if ( file.isEmpty() || fileType.isEmpty() )
892       return false;
893
894     GEOM_Operation* anOp = new GEOM_Operation( app, aInsOp.in() );
895     try {
896       SUIT_OverrideCursor wc;
897
898       app->putInfo( tr("GEOM_PRP_EXPORT").arg(SUIT_Tools::file( file, /*withExten=*/true )) );
899
900       anOp->start();
901
902
903       aInsOp->Export( anObj, file.toStdString().c_str(), fileType.toLatin1().constData() );
904
905       if ( aInsOp->IsDone() )
906         anOp->commit();
907       else
908         {
909           anOp->abort();
910           wc.suspend();
911           SUIT_MessageBox::critical( app->desktop(),
912                                      QObject::tr( "GEOM_ERROR" ),
913                                      QObject::tr("GEOM_PRP_ABORT") + "\n" + QString( aInsOp->GetErrorCode() ) );
914           return false;
915         }
916     }
917     catch (const SALOME::SALOME_Exception& S_ex) {
918       //QtCatchCorbaException(S_ex);
919       anOp->abort();
920       return false;
921     }
922     appropriateObj = true;
923   }
924
925   if ( !appropriateObj )
926     SUIT_MessageBox::warning( app->desktop(),
927                               QObject::tr("WRN_WARNING"),
928                               QObject::tr("GEOM_WRN_NO_APPROPRIATE_SELECTION") );
929   return true;
930 }
931
932 //=====================================================================================
933 // function : RemoveObjectWithChildren
934 // purpose  : to be used by OnEditDelete() method
935 //=====================================================================================
936 void GEOMToolsGUI::removeObjectWithChildren(_PTR(SObject) obj,
937                                             _PTR(Study) aStudy,
938                                             QList<SALOME_View*> views,
939                                             GEOM_Displayer* disp)
940 {
941   // iterate through all children of obj
942   for (_PTR(ChildIterator) it (aStudy->NewChildIterator(obj)); it->More(); it->Next()) {
943     _PTR(SObject) child (it->Value());
944     removeObjectWithChildren(child, aStudy, views, disp);
945   }
946
947   // erase object and remove it from engine
948   _PTR(GenericAttribute) anAttr;
949   if (obj->FindAttribute(anAttr, "AttributeIOR")) {
950     _PTR(AttributeIOR) anIOR (anAttr);
951
952     // Delete shape in Client
953     const TCollection_AsciiString ASCIor ((char*)anIOR->Value().c_str());
954     getGeometryGUI()->GetShapeReader().RemoveShapeFromBuffer(ASCIor);
955
956     CORBA::Object_var corbaObj = GeometryGUI::ClientSObjectToObject(obj);
957     GEOM::GEOM_Object_var geomObj = GEOM::GEOM_Object::_narrow( corbaObj );
958     if (!CORBA::is_nil(geomObj)) {
959       // Erase graphical object
960       QListIterator<SALOME_View*> it( views );
961       while ( it.hasNext() )
962         if ( SALOME_View* view = it.next() )
963           disp->Erase(geomObj, true, view);
964       
965       // Remove object from Engine
966       // We can't directly remove object from engine. All we can do is to unpublish the object
967       // from the study. Another client could be using the object.
968       // Unpublishing is done just after in aStudyBuilder->RemoveObjectWithChildren( child );
969       //GeometryGUI::GetGeomGen()->RemoveObject( geomObj );
970     }
971   }
972 }
973
974 //=================================================================================
975 // function : deactivate()
976 // purpose  : Called when GEOM component is deactivated
977 //=================================================================================
978 void GEOMToolsGUI::deactivate()
979 {
980   SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
981   if ( app ) {
982     SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
983     GEOM_Displayer aDisp (appStudy);
984     aDisp.GlobalSelection();
985     getGeometryGUI()->setLocalSelectionMode(GEOM_ALLOBJECTS);
986   }
987 }
988
989 //=====================================================================================
990 // EXPORTED METHODS
991 //=====================================================================================
992 extern "C"
993 {
994 #ifdef WIN32
995   __declspec( dllexport )
996 #endif
997   GEOMGUI* GetLibGUI( GeometryGUI* parent )
998   {
999     return new GEOMToolsGUI( parent );
1000   }
1001 }