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