]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMESHGUI/SMESHGUI.cxx
Salome HOME
merge V5_1_4
[modules/smesh.git] / src / SMESHGUI / SMESHGUI.cxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI.cxx
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 // SMESH includes
27 //
28 #include "SMESHGUI.h"
29 #include "SMESHGUI_AddMeshElementDlg.h"
30 #include "SMESHGUI_AddQuadraticElementDlg.h"
31 #include "SMESHGUI_BuildCompoundDlg.h"
32 #include "SMESHGUI_ClippingDlg.h"
33 #include "SMESHGUI_ComputeDlg.h"
34 #include "SMESHGUI_ConvToQuadOp.h"
35 #include "SMESHGUI_CreatePolyhedralVolumeDlg.h"
36 #include "SMESHGUI_DeleteGroupDlg.h"
37 #include "SMESHGUI_Displayer.h"
38 #include "SMESHGUI_EditMeshDlg.h"
39 #include "SMESHGUI_ExtrusionAlongPathDlg.h"
40 #include "SMESHGUI_ExtrusionDlg.h"
41 #include "SMESHGUI_FileInfoDlg.h"
42 #include "SMESHGUI_FileValidator.h"
43 #include "SMESHGUI_FilterDlg.h"
44 #include "SMESHGUI_FilterLibraryDlg.h"
45 #include "SMESHGUI_FindElemByPointDlg.h"
46 #include "SMESHGUI_GroupDlg.h"
47 #include "SMESHGUI_GroupOnShapeDlg.h"
48 #include "SMESHGUI_GroupOpDlg.h"
49 #include "SMESHGUI_Hypotheses.h"
50 #include "SMESHGUI_Make2DFrom3DOp.h"
51 #include "SMESHGUI_MakeNodeAtPointDlg.h"
52 #include "SMESHGUI_MeshInfosDlg.h"
53 #include "SMESHGUI_MeshOp.h"
54 #include "SMESHGUI_MeshOrderOp.h"
55 #include "SMESHGUI_MeshPatternDlg.h"
56 #include "SMESHGUI_MoveNodesDlg.h"
57 #include "SMESHGUI_MultiEditDlg.h"
58 #include "SMESHGUI_NodesDlg.h"
59 #include "SMESHGUI_Preferences_ColorDlg.h"
60 #include "SMESHGUI_Preferences_ScalarBarDlg.h"
61 #include "SMESHGUI_RemoveElementsDlg.h"
62 #include "SMESHGUI_RemoveNodesDlg.h"
63 #include "SMESHGUI_RenumberingDlg.h"
64 #include "SMESHGUI_RevolutionDlg.h"
65 #include "SMESHGUI_RotationDlg.h"
66 #include "SMESHGUI_Selection.h"
67 #include "SMESHGUI_SewingDlg.h"
68 #include "SMESHGUI_SingleEditDlg.h"
69 #include "SMESHGUI_SmoothingDlg.h"
70 #include "SMESHGUI_StandardMeshInfosDlg.h"
71 #include "SMESHGUI_SymmetryDlg.h"
72 #include "SMESHGUI_TranslationDlg.h"
73 #include "SMESHGUI_ScaleDlg.h"
74 #include "SMESHGUI_TransparencyDlg.h"
75 #include "SMESHGUI_WhatIsDlg.h"
76
77 #include "SMESHGUI_Utils.h"
78 #include "SMESHGUI_MeshUtils.h"
79 #include "SMESHGUI_GroupUtils.h"
80 #include "SMESHGUI_FilterUtils.h"
81 #include "SMESHGUI_PatternUtils.h"
82 #include "SMESHGUI_VTKUtils.h"
83 #include "SMESHGUI_HypothesesUtils.h"
84
85 #include <SMESH_Client.hxx>
86 #include <SMESH_Actor.h>
87 #include <SMESH_TypeFilter.hxx>
88
89 // SALOME GUI includes
90 #include <SalomeApp_Tools.h>
91 #include <SalomeApp_Study.h>
92 #include <SalomeApp_Application.h>
93 #include <SalomeApp_CheckFileDlg.h>
94
95 #include <LightApp_DataOwner.h>
96 #include <LightApp_Preferences.h>
97 #include <LightApp_SelectionMgr.h>
98 #include <LightApp_UpdateFlags.h>
99 #include <LightApp_NameDlg.h>
100
101 #include <SVTK_ViewWindow.h>
102 #include <SVTK_ViewModel.h>
103 #include <SVTK_ViewManager.h>
104
105 #include <VTKViewer_Algorithm.h>
106
107 #include <SUIT_MessageBox.h>
108 #include <SUIT_ResourceMgr.h>
109 #include <SUIT_FileDlg.h>
110 #include <SUIT_Desktop.h>
111 #include <SUIT_OverrideCursor.h>
112 #include <SUIT_Session.h>
113
114 #include <QtxPopupMgr.h>
115 #include <QtxFontEdit.h>
116
117 #include <SALOME_ListIO.hxx>
118 #include <SALOME_ListIteratorOfListIO.hxx>
119
120 // IDL includes
121 #include <SALOMEconfig.h>
122 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
123 #include CORBA_CLIENT_HEADER(SMESH_MeshEditor)
124
125 // Qt includes
126 // #define       INCLUDE_MENUITEM_DEF // VSR commented ????????
127 #include <QMenu>
128
129 // BOOST includes
130 #include <boost/shared_ptr.hpp>
131
132 // VTK includes
133 #include <vtkScalarBarActor.h>
134 #include <vtkCamera.h>
135 #include <vtkRenderer.h>
136 #include <vtkPlane.h>
137
138 // SALOME KERNEL includes
139 #include <SALOMEDS_Study.hxx>
140 #include <SALOMEDSClient_StudyBuilder.hxx>
141 #include <SALOMEDSClient_SComponent.hxx>
142 #include <SALOMEDSClient_ClientFactory.hxx>
143 #include <SALOMEDSClient_IParameters.hxx>
144
145 // OCCT includes
146 #include <Standard_ErrorHandler.hxx>
147 #include <NCollection_DataMap.hxx>
148
149 //namespace{
150   // Declarations
151   //=============================================================
152   void ImportMeshesFromFile(SMESH::SMESH_Gen_ptr theComponentMesh,
153                             int theCommandID);
154
155   void ExportMeshToFile(int theCommandID);
156
157   void SetDisplayMode(int theCommandID, SMESHGUI_StudyId2MarkerMap& theMarkerMap);
158
159   void SetDisplayEntity(int theCommandID);
160
161   void Control( int theCommandID );
162
163
164   // Definitions
165   //=============================================================
166   void ImportMeshesFromFile( SMESH::SMESH_Gen_ptr theComponentMesh,
167                              int theCommandID )
168   {
169     QStringList filter;
170     std::string myExtension;
171
172     if ( theCommandID == 113 ) {
173       filter.append( QObject::tr( "MED files (*.med)" ) );
174       filter.append( QObject::tr( "All files (*)" ) );
175     }
176     else if ( theCommandID == 112 ) {
177       filter.append( QObject::tr( "IDEAS files (*.unv)" ) );
178     }
179     else if ( theCommandID == 111 ) {
180       filter.append( QObject::tr( "DAT files (*.dat)" ) );
181     }
182
183     QString anInitialPath = "";
184     if ( SUIT_FileDlg::getLastVisitedPath().isEmpty() )
185       anInitialPath = QDir::currentPath();
186
187     QStringList filenames = SUIT_FileDlg::getOpenFileNames( SMESHGUI::desktop(),
188                                                             anInitialPath,
189                                                             filter,
190                                                             QObject::tr( "SMESH_IMPORT_MESH" ) );
191     if ( filenames.count() > 0 ) {
192       SUIT_OverrideCursor wc;
193       _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
194
195       QStringList errors;
196       bool isEmpty = false;
197       for ( QStringList::ConstIterator it = filenames.begin(); it != filenames.end(); ++it ) {
198         QString filename = *it;
199         SMESH::mesh_array_var aMeshes = new SMESH::mesh_array;
200         try {
201           switch ( theCommandID ) {
202           case 111:
203             {
204               // DAT format (currently unsupported)
205               errors.append( QString( "%1 :\n\t%2" ).arg( filename ).
206                              arg( QObject::tr( "SMESH_ERR_NOT_SUPPORTED_FORMAT" ) ) );
207               break;
208             }
209           case 112:
210             {
211               // UNV format
212               aMeshes->length( 1 );
213               aMeshes[0] = theComponentMesh->CreateMeshesFromUNV( filename.toLatin1().constData() );
214               if ( aMeshes[0]->_is_nil() )
215                 errors.append( QString( "%1 :\n\t%2" ).arg( filename ).
216                                arg( QObject::tr( "SMESH_ERR_UNKNOWN_IMPORT_ERROR" ) ) );
217               break;
218             }
219           case 113:
220             {
221               // MED format
222               SMESH::DriverMED_ReadStatus res;
223               aMeshes = theComponentMesh->CreateMeshesFromMED( filename.toLatin1().constData(), res );
224               if ( res != SMESH::DRS_OK ) {
225                 errors.append( QString( "%1 :\n\t%2" ).arg( filename ).
226                                arg( QObject::tr( QString( "SMESH_DRS_%1" ).arg( res ).toLatin1().data() ) ) );
227               }
228               break;
229             }
230           }
231         }
232         catch ( const SALOME::SALOME_Exception& S_ex ) {
233           errors.append( QString( "%1 :\n\t%2" ).arg( filename ).
234                          arg( QObject::tr( "SMESH_ERR_UNKNOWN_IMPORT_ERROR" ) ) );
235         }
236
237         for ( int i = 0, iEnd = aMeshes->length(); i < iEnd; i++ ) {
238           _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshes[i] );
239           if ( aMeshSO ) {
240             _PTR(StudyBuilder) aBuilder = aStudy->NewBuilder();
241             _PTR(AttributePixMap) aPixmap = aBuilder->FindOrCreateAttribute( aMeshSO, "AttributePixMap" );
242             aPixmap->SetPixMap( "ICON_SMESH_TREE_MESH_IMPORTED" );
243             if ( theCommandID == 112 ) // mesh names aren't taken from the file for UNV import
244               SMESH::SetName( aMeshSO, QFileInfo(filename).fileName() );
245           }
246           else {
247             isEmpty = true;
248           }
249         }
250       }
251
252       // update Object browser
253       SMESHGUI::GetSMESHGUI()->updateObjBrowser();
254
255       // show Error message box if there were errors
256       if ( errors.count() > 0 ) {
257         SUIT_MessageBox::critical( SMESHGUI::desktop(),
258                                    QObject::tr( "SMESH_ERROR" ),
259                                    QObject::tr( "SMESH_IMPORT_ERRORS" ) + "\n" + errors.join( "\n" ) );
260       }
261
262       // show warning message box, if some imported mesh is empty
263       if ( isEmpty ) {
264           SUIT_MessageBox::warning( SMESHGUI::desktop(),
265                                     QObject::tr( "SMESH_WRN_WARNING" ),
266                                     QObject::tr( "SMESH_DRS_SOME_EMPTY" ) );
267       }
268     }
269   }
270
271   void ExportMeshToFile( int theCommandID )
272   {
273     LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
274     SALOME_ListIO selected;
275     if( aSel )
276       aSel->selectedObjects( selected );
277
278     // actually, the following condition can't be met (added for insurance)
279     if( selected.Extent() == 0 ||
280         selected.Extent() > 1 && theCommandID != 122 && theCommandID != 125 )
281       return;
282
283     bool hasDuplicatedMeshNames = false;
284     QList< QPair< SMESH::SMESH_Mesh_var, QString > > aMeshList;
285     QList< QPair< SMESH::SMESH_Mesh_var, QString > >::iterator aMeshIter;
286     SALOME_ListIteratorOfListIO It( selected );
287     for( ; It.More(); It.Next() ) {
288       Handle(SALOME_InteractiveObject) anIObject = It.Value();
289       SMESH::SMESH_Mesh_var aMeshItem = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>( anIObject );
290       if ( aMeshItem->_is_nil() ) {
291         SUIT_MessageBox::warning( SMESHGUI::desktop(),
292                                   QObject::tr( "SMESH_WRN_WARNING" ),
293                                   QObject::tr( "SMESH_BAD_MESH_SELECTION" ));
294         return;
295       }
296
297       QString aMeshName = anIObject->getName();
298
299       // check for duplications
300       for( aMeshIter = aMeshList.begin(); aMeshIter != aMeshList.end(); aMeshIter++ ) {
301         if( aMeshName == (*aMeshIter).second ) {
302           hasDuplicatedMeshNames = true;
303           break;
304         }
305       }
306
307       aMeshList.append( QPair< SMESH::SMESH_Mesh_var, QString >( aMeshItem, aMeshName ) );
308     }
309
310     if( hasDuplicatedMeshNames ) {
311       int aRet = SUIT_MessageBox::warning(SMESHGUI::desktop(),
312                                           QObject::tr("SMESH_WRN_WARNING"),
313                                           QObject::tr("SMESH_EXPORT_MED_DUPLICATED_MESH_NAMES"),
314                                           QObject::tr("SMESH_BUT_YES"),
315                                           QObject::tr("SMESH_BUT_NO"), 0, 1);
316       if (aRet != 0)
317         return;
318     }
319
320     aMeshIter = aMeshList.begin();
321     SMESH::SMESH_Mesh_var aMesh = (*aMeshIter).first;
322     QString aMeshName = (*aMeshIter).second;
323
324     QList<SALOMEDS::Color> aReservedColors;
325
326     QString aFilter, aTitle = QObject::tr("Export mesh");
327     QMap<QString, SMESH::MED_VERSION> aFilterMap;
328     QMap<QString, int> aFilterMapSTL;
329     switch ( theCommandID ) {
330     case 125:
331     case 122:
332       {
333         for( aMeshIter = aMeshList.begin(); aMeshIter != aMeshList.end(); aMeshIter++ ) {
334           SMESH::SMESH_Mesh_var aMeshItem = (*aMeshIter).first;
335           if (aMeshItem->HasDuplicatedGroupNamesMED()) {
336             int aRet = SUIT_MessageBox::warning
337               (SMESHGUI::desktop(),
338                QObject::tr("SMESH_WRN_WARNING"),
339                QObject::tr("SMESH_EXPORT_MED_DUPLICATED_GRP").arg((*aMeshIter).second),
340                QObject::tr("SMESH_BUT_YES"),
341                QObject::tr("SMESH_BUT_NO"), 0, 1);
342             if (aRet != 0)
343               return;
344           }
345         }
346         // PAL18696
347         QString v21 (aMesh->GetVersionString(SMESH::MED_V2_1, 2));
348         QString v22 (aMesh->GetVersionString(SMESH::MED_V2_2, 2));
349         aFilterMap.insert( QString("MED ") +  v21 + " (*.med)", SMESH::MED_V2_1 );
350         aFilterMap.insert( QString("MED ") +  v22 + " (*.med)", SMESH::MED_V2_2 );
351       }
352       break;
353     case 124:
354     case 121:
355       aFilter = QObject::tr("DAT files (*.dat)");
356       break;
357     case 126:
358     case 123:
359       {
360         if (aMesh->NbPyramids()) {
361           int aRet = SUIT_MessageBox::warning
362             (SMESHGUI::desktop(),
363              QObject::tr("SMESH_WRN_WARNING"),
364              QObject::tr("SMESH_EXPORT_UNV").arg(aMeshName),
365              QObject::tr("SMESH_BUT_YES"),
366              QObject::tr("SMESH_BUT_NO"), 0, 1);
367           if (aRet != 0)
368             return;
369         }
370         aFilter = QObject::tr("IDEAS files (*.unv)");
371       }
372       break;
373     case 140:
374     case 141:
375       {
376         // export STL
377         /*
378           there must be check on others mesh elements not equal triangles
379         */
380         if (aMesh->NbTriangles() < 1) {
381           SUIT_MessageBox::warning
382             (SMESHGUI::desktop(),
383              QObject::tr("SMESH_WRN_WARNING"),
384              QObject::tr("SMESH_EXPORT_STL1").arg(aMeshName));
385           return;
386         }
387         if (!(aMesh->NbElements() - aMesh->NbTriangles())) {
388           int aRet = SUIT_MessageBox::warning
389             (SMESHGUI::desktop(),
390              QObject::tr("SMESH_WRN_WARNING"),
391              QObject::tr("SMESH_EXPORT_STL2").arg(aMeshName),
392              QObject::tr("SMESH_BUT_YES"),
393              QObject::tr("SMESH_BUT_NO"), 0, 1);
394           if (aRet != 0)
395             return;
396         }
397
398         aFilterMapSTL.insert( QObject::tr("STL ASCII (*.stl)"), 1 ); // 1 - ASCII mode
399         aFilterMapSTL.insert( QObject::tr("STL Binary (*.stl)"), 0 ); // 0 - Binary mode
400       }
401       break;
402     default:
403       return;
404     }
405
406     QString aFilename;
407     SMESH::MED_VERSION aFormat;
408     // Init the parameter with the default value
409     bool aIsASCII_STL = true;
410     bool toCreateGroups = false;
411     SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
412     if ( resMgr )
413       toCreateGroups = resMgr->booleanValue( "SMESH", "auto_groups", false );
414     bool toOverwrite = true;
415
416     QString anInitialPath = "";
417     if ( SUIT_FileDlg::getLastVisitedPath().isEmpty() )
418       anInitialPath = QDir::currentPath();
419
420     if ( theCommandID != 122 && theCommandID != 125 && theCommandID != 140 && theCommandID != 141) {
421       if ( anInitialPath.isEmpty() ) anInitialPath = SUIT_FileDlg::getLastVisitedPath();
422       aFilename = SUIT_FileDlg::getFileName(SMESHGUI::desktop(), anInitialPath + QString("/") + aMeshName,
423                                             aFilter, aTitle, false);
424     }
425     else if(theCommandID == 140 || theCommandID == 141) { // Export to STL
426       QStringList filters;
427       QMap<QString, int>::const_iterator it = aFilterMapSTL.begin();
428       for ( ; it != aFilterMapSTL.end(); ++it )
429         filters.push_back( it.key() );
430
431       SUIT_FileDlg* fd = new SUIT_FileDlg( SMESHGUI::desktop(), false, true, true );
432       fd->setWindowTitle( aTitle );
433       fd->setNameFilters( filters );
434       fd->selectNameFilter( QObject::tr("STL ASCII (*.stl)") );
435       if ( !anInitialPath.isEmpty() )
436         fd->setDirectory( anInitialPath );
437       fd->selectFile(aMeshName);
438       bool is_ok = false;
439       while (!is_ok) {
440         if ( fd->exec() )
441           aFilename = fd->selectedFile();
442         aIsASCII_STL = (aFilterMapSTL[fd->selectedNameFilter()]) == 1 ? true: false;
443         is_ok = true;
444       }
445       delete fd;
446     }
447     else { // Export to MED
448       QStringList filters;
449       QString aDefaultFilter;
450       QMap<QString, SMESH::MED_VERSION>::const_iterator it = aFilterMap.begin();
451       for ( ; it != aFilterMap.end(); ++it ) {
452         filters.push_back( it.key() );
453         if (it.value() == SMESH::MED_V2_2)
454           aDefaultFilter = it.key();
455       }
456
457       //SUIT_FileDlg* fd = new SUIT_FileDlg( SMESHGUI::desktop(), false, true, true );
458       SalomeApp_CheckFileDlg* fd = new SalomeApp_CheckFileDlg
459         ( SMESHGUI::desktop(), false, QObject::tr("SMESH_AUTO_GROUPS"), true, true );
460       fd->setWindowTitle( aTitle );
461       fd->setNameFilters( filters );
462       //fd->setSelectedNameFilter( QObject::tr("MED 2.2 (*.med)") );
463       fd->selectNameFilter(aDefaultFilter);
464       fd->SetChecked(toCreateGroups);
465       if ( !anInitialPath.isEmpty() )
466         fd->setDirectory( anInitialPath );
467       fd->selectFile(aMeshName);
468
469       SMESHGUI_FileValidator* fv = new SMESHGUI_FileValidator( fd );
470       fd->setValidator( fv );
471
472       bool is_ok = false;
473       while (!is_ok) {
474         if ( fd->exec() )
475           aFilename = fd->selectedFile();
476         else {
477           aFilename = QString::null;
478           break;
479         }
480         aFormat = aFilterMap[fd->selectedNameFilter()];
481         toOverwrite = fv->isOverwrite();
482         is_ok = true;
483         if ( !aFilename.isEmpty() ) {
484           for( aMeshIter = aMeshList.begin(); aMeshIter != aMeshList.end(); aMeshIter++ ) {
485             SMESH::SMESH_Mesh_var aMeshItem = (*aMeshIter).first;
486             if( (aMeshItem->NbPolygons()>0 || aMeshItem->NbPolyhedrons()>0)
487                 && aFormat==SMESH::MED_V2_1) {
488               int aRet = SUIT_MessageBox::warning(SMESHGUI::desktop(),
489                                                   QObject::tr("SMESH_WRN_WARNING"),
490                                                   QObject::tr("SMESH_EXPORT_MED_V2_1").arg((*aMeshIter).second),
491                                                   QObject::tr("SMESH_BUT_YES"),
492                                                   QObject::tr("SMESH_BUT_NO"), 0, 1);
493               if (aRet != 0) {
494                 is_ok = false;
495                 break;
496               }
497             }
498           }
499           if( !toOverwrite ) {
500             SMESH::MED_VERSION aVersion = SMESH::MED_V2_1;
501             bool isVersionOk = SMESHGUI::GetSMESHGen()->GetMEDVersion( aFilename.toLatin1().constData(), aVersion );
502             if( !isVersionOk || aVersion != aFormat ) {
503               int aRet = SUIT_MessageBox::warning(SMESHGUI::desktop(),
504                                                   QObject::tr("SMESH_WRN_WARNING"),
505                                                   QObject::tr("SMESH_EXPORT_MED_VERSION_COLLISION").arg(aFilename),
506                                                   QObject::tr("SMESH_BUT_YES"),
507                                                   QObject::tr("SMESH_BUT_NO"), 0, 1);
508               if (aRet == 0)
509                 toOverwrite = true;
510               else
511                 is_ok = false;
512             }
513
514             QStringList aMeshNamesCollisionList;
515             SMESH::string_array_var aMeshNames = SMESHGUI::GetSMESHGen()->GetMeshNames( aFilename.toLatin1().constData() );
516             for( int i = 0, n = aMeshNames->length(); i < n; i++ ) {
517               QString anExistingMeshName( aMeshNames[ i ] );
518               for( aMeshIter = aMeshList.begin(); aMeshIter != aMeshList.end(); aMeshIter++ ) {
519                 QString anExportMeshName = (*aMeshIter).second;
520                 if( anExportMeshName == anExistingMeshName ) {
521                   aMeshNamesCollisionList.append( anExportMeshName );
522                   break;
523                 }
524               }
525             }
526
527             if( !aMeshNamesCollisionList.isEmpty() ) {
528               QString aMeshNamesCollisionString = aMeshNamesCollisionList.join( ", " );
529               int aRet = SUIT_MessageBox::warning(SMESHGUI::desktop(),
530                                                   QObject::tr("SMESH_WRN_WARNING"),
531                                                   QObject::tr("SMESH_EXPORT_MED_MESH_NAMES_COLLISION").arg(aMeshNamesCollisionString),
532                                                   QObject::tr("SMESH_BUT_YES"),
533                                                   QObject::tr("SMESH_BUT_NO"),
534                                                   QObject::tr("SMESH_BUT_CANCEL"), 0, 2);
535               if (aRet == 0)
536                 toOverwrite = true;
537               else if (aRet == 2)
538                 is_ok = false;
539             }
540           }
541         }
542       }
543       toCreateGroups = fd->IsChecked();
544       delete fd;
545     }
546     if ( !aFilename.isEmpty() ) {
547       // Check whether the file already exists and delete it if yes
548       QFile aFile( aFilename );
549       if ( aFile.exists() && toOverwrite )
550         aFile.remove();
551       SUIT_OverrideCursor wc;
552
553       try {
554         bool Renumber = false;
555         // PAL 14172  : Check of we have to renumber or not from the preferences before export
556         if (resMgr)
557           Renumber= resMgr->booleanValue("SMESH","renumbering");
558         if (Renumber){
559           SMESH::SMESH_MeshEditor_var aMeshEditor = aMesh->GetMeshEditor();
560           aMeshEditor->RenumberNodes();
561           aMeshEditor->RenumberElements();
562           if ( SMESHGUI::automaticUpdate() )
563             SMESH::UpdateView();
564         }
565         switch ( theCommandID ) {
566         case 125:
567         case 122: {
568             int aMeshIndex = 0;
569             for( aMeshIter = aMeshList.begin(); aMeshIter != aMeshList.end(); aMeshIter++, aMeshIndex++ ) {
570               SMESH::SMESH_Mesh_var aMeshItem = (*aMeshIter).first;
571               if( !aMeshItem->_is_nil() )
572                 aMeshItem->ExportToMEDX( aFilename.toLatin1().data(), toCreateGroups, aFormat, toOverwrite && aMeshIndex == 0 );
573             }
574           }
575           break;
576         case 124:
577         case 121:
578           aMesh->ExportDAT( aFilename.toLatin1().data() );
579           break;
580         case 126:
581         case 123:
582           aMesh->ExportUNV( aFilename.toLatin1().data() );
583           break;
584         case 140:
585         case 141:
586           aMesh->ExportSTL( aFilename.toLatin1().data(), aIsASCII_STL );
587           break;
588         default:
589           break;
590         }
591       }
592       catch (const SALOME::SALOME_Exception& S_ex){
593         wc.suspend();
594         SUIT_MessageBox::warning(SMESHGUI::desktop(),
595                                  QObject::tr("SMESH_WRN_WARNING"),
596                                  QObject::tr("SMESH_EXPORT_FAILED"));
597         wc.resume();
598       }
599     }
600   }
601
602   inline void InverseEntityMode(unsigned int& theOutputMode,
603                                 unsigned int theMode)
604   {
605     bool anIsNotPresent = ~theOutputMode & theMode;
606     if(anIsNotPresent)
607       theOutputMode |= theMode;
608     else
609       theOutputMode &= ~theMode;
610   }
611
612   void SetDisplayEntity(int theCommandID){
613     LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
614     SALOME_ListIO selected;
615     if( aSel )
616       aSel->selectedObjects( selected );
617
618     if(selected.Extent() >= 1){
619       SALOME_ListIteratorOfListIO It( selected );
620       for( ; It.More(); It.Next()){
621         Handle(SALOME_InteractiveObject) IObject = It.Value();
622         if(IObject->hasEntry()){
623           if(SMESH_Actor *anActor = SMESH::FindActorByEntry(IObject->getEntry())){
624             unsigned int aMode = anActor->GetEntityMode();
625             switch(theCommandID){
626             case 216:
627               InverseEntityMode(aMode,SMESH_Actor::e0DElements);
628               break;
629             case 217:
630               InverseEntityMode(aMode,SMESH_Actor::eEdges);
631               break;
632             case 218:
633               InverseEntityMode(aMode,SMESH_Actor::eFaces);
634               break;
635             case 219:
636               InverseEntityMode(aMode,SMESH_Actor::eVolumes);
637               break;
638             case 220:
639               aMode = SMESH_Actor::eAllEntity;
640               break;
641             }
642             if(aMode)
643               anActor->SetEntityMode(aMode);
644           }
645         }
646       }
647     }
648   }
649
650   void AutoColor(){
651     SALOME_ListIO selected;
652     SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
653     if( !app )
654       return;
655
656     LightApp_SelectionMgr* aSel = app->selectionMgr();
657     SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
658     if( !aSel || !appStudy )
659       return;
660
661     aSel->selectedObjects( selected );
662     if( selected.IsEmpty() )
663       return;
664
665     Handle(SALOME_InteractiveObject) anIObject = selected.First();
666
667     _PTR(Study) aStudy = appStudy->studyDS();
668     _PTR(SObject) aMainSObject( aStudy->FindObjectID( anIObject->getEntry() ) );
669     SMESH::SMESH_Mesh_var aMainObject = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(anIObject);
670     if( aMainObject->_is_nil() )
671       return;
672
673     aMainObject->SetAutoColor( true );
674
675     QList<SALOMEDS::Color> aReservedColors;
676
677     SMESH::ListOfGroups aListOfGroups = *aMainObject->GetGroups();
678     for( int i = 0, n = aListOfGroups.length(); i < n; i++ )
679     {
680       SMESH::SMESH_GroupBase_var aGroupObject = aListOfGroups[i];
681       SALOMEDS::Color aCurrentColor = aGroupObject->GetColor();
682
683       SALOMEDS::Color aColor = SMESHGUI::getUniqueColor( aReservedColors );
684       aGroupObject->SetColor( aColor );
685       aReservedColors.append( aColor );
686
687       _PTR(SObject) aGroupSObject = SMESH::FindSObject(aGroupObject);
688       if (aGroupSObject) {
689         if(SMESH_Actor *anActor = SMESH::FindActorByEntry(aGroupSObject->GetID().c_str())) {
690           if( aGroupObject->GetType() == SMESH::NODE )
691             anActor->SetNodeColor( aColor.R, aColor.G, aColor.B );
692           else if( aGroupObject->GetType() == SMESH::EDGE )
693             anActor->SetEdgeColor( aColor.R, aColor.G, aColor.B );
694           else if( aGroupObject->GetType() == SMESH::ELEM0D )
695             anActor->Set0DColor( aColor.R, aColor.G, aColor.B );
696           else
697             anActor->SetSufaceColor( aColor.R, aColor.G, aColor.B );
698         }
699       }
700     }
701
702     SMESH::RepaintCurrentView();
703   }
704
705   void DisableAutoColor(){
706     LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
707     SALOME_ListIO selected;
708     if( aSel )
709       aSel->selectedObjects( selected );
710
711     if(selected.Extent()){
712       Handle(SALOME_InteractiveObject) anIObject = selected.First();
713       SMESH::SMESH_Mesh_var aMesh = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(anIObject);
714       if ( !aMesh->_is_nil() ) {
715         aMesh->SetAutoColor( false );
716       }
717     }
718   }
719
720   void SetDisplayMode(int theCommandID, SMESHGUI_StudyId2MarkerMap& theMarkerMap){
721     SALOME_ListIO selected;
722     SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
723     if( !app )
724       return;
725
726     LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
727     SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
728     if( !aSel || !appStudy )
729       return;
730
731     _PTR(Study) aStudy = appStudy->studyDS();
732
733     aSel->selectedObjects( selected );
734
735     if(selected.Extent() >= 1){
736       switch(theCommandID){
737       case 1134:{
738         SMESHGUI::GetSMESHGUI()->EmitSignalDeactivateDialog();
739         (new SMESHGUI_ClippingDlg( SMESHGUI::GetSMESHGUI() ))->show();
740         return;
741       }
742       case 1133:{
743         SMESHGUI::GetSMESHGUI()->EmitSignalDeactivateDialog();
744         (new SMESHGUI_TransparencyDlg( SMESHGUI::GetSMESHGUI() ))->show();
745         return;
746       }}
747       SALOME_ListIteratorOfListIO It( selected );
748       for( ; It.More(); It.Next()){
749         Handle(SALOME_InteractiveObject) IObject = It.Value();
750         if(IObject->hasEntry()){
751           if(SMESH_Actor *anActor = SMESH::FindActorByEntry(IObject->getEntry())){
752             switch(theCommandID){
753             case 211:
754               anActor->SetRepresentation(SMESH_Actor::eEdge);
755               break;
756             case 212:
757               anActor->SetRepresentation(SMESH_Actor::eSurface);
758               break;
759             case 213:
760               if(anActor->IsShrunk())
761                 anActor->UnShrink();
762               else
763                 anActor->SetShrink();
764               break;
765             case 215:
766               anActor->SetRepresentation(SMESH_Actor::ePoint);
767               break;
768             case 231:
769               if(anActor->GetQuadratic2DRepresentation() != SMESH_Actor::eLines)
770                 anActor->SetQuadratic2DRepresentation(SMESH_Actor::eLines);
771               break;
772             case 232:
773               if(anActor->GetQuadratic2DRepresentation() != SMESH_Actor::eArcs)
774                 anActor->SetQuadratic2DRepresentation(SMESH_Actor::eArcs);
775               break;
776             case 1132:{
777               vtkFloatingPointType color[3];
778               anActor->GetSufaceColor(color[0], color[1], color[2]);
779               int c0 = int (color[0] * 255);
780               int c1 = int (color[1] * 255);
781               int c2 = int (color[2] * 255);
782               QColor c(c0, c1, c2);
783
784               vtkFloatingPointType edgecolor[3];
785               anActor->GetEdgeColor(edgecolor[0], edgecolor[1], edgecolor[2]);
786               c0 = int (edgecolor[0] * 255);
787               c1 = int (edgecolor[1] * 255);
788               c2 = int (edgecolor[2] * 255);
789               QColor e(c0, c1, c2);
790
791               vtkFloatingPointType backfacecolor[3];
792               anActor->GetBackSufaceColor(backfacecolor[0], backfacecolor[1], backfacecolor[2]);
793               c0 = int (backfacecolor[0] * 255);
794               c1 = int (backfacecolor[1] * 255);
795               c2 = int (backfacecolor[2] * 255);
796               QColor b(c0, c1, c2);
797
798               vtkFloatingPointType nodecolor[3];
799               anActor->GetNodeColor(nodecolor[0], nodecolor[1], nodecolor[2]);
800               c0 = int (nodecolor[0] * 255);
801               c1 = int (nodecolor[1] * 255);
802               c2 = int (nodecolor[2] * 255);
803               QColor n(c0, c1, c2);
804
805               vtkFloatingPointType color0D[3];
806               anActor->Get0DColor(color0D[0], color0D[1], color0D[2]);
807               c0 = int (color0D[0] * 255);
808               c1 = int (color0D[1] * 255);
809               c2 = int (color0D[2] * 255);
810               QColor c0D(c0, c1, c2);
811
812               int size0D = (int)anActor->Get0DSize();
813               if(size0D == 0)
814                 size0D = 1;
815               int Edgewidth = (int)anActor->GetLineWidth();
816               if(Edgewidth == 0)
817                 Edgewidth = 1;
818               vtkFloatingPointType Shrink = anActor->GetShrinkFactor();
819
820               vtkFloatingPointType faces_orientation_color[3];
821               anActor->GetFacesOrientationColor(faces_orientation_color);
822               c0 = int (faces_orientation_color[0] * 255);
823               c1 = int (faces_orientation_color[1] * 255);
824               c2 = int (faces_orientation_color[2] * 255);
825               QColor o(c0, c1, c2);
826
827               vtkFloatingPointType faces_orientation_scale = anActor->GetFacesOrientationScale();
828               bool faces_orientation_3dvectors = anActor->GetFacesOrientation3DVectors();
829
830               SMESHGUI_Preferences_ColorDlg *aDlg =
831                 new SMESHGUI_Preferences_ColorDlg( SMESHGUI::GetSMESHGUI() );
832               aDlg->SetColor(1, c);
833               aDlg->SetColor(2, e);
834               aDlg->SetColor(3, n);
835               aDlg->SetColor(4, b);
836               aDlg->SetColor(5, c0D);
837               aDlg->SetColor(6, o);
838               aDlg->SetIntValue(1, Edgewidth);
839               aDlg->SetIntValue(2, int(Shrink*100.));
840               aDlg->SetIntValue(3, size0D);
841               aDlg->SetDoubleValue(1, faces_orientation_scale);
842               aDlg->SetBooleanValue(1, faces_orientation_3dvectors);
843
844               aDlg->setCustomMarkerMap( theMarkerMap[ aStudy->StudyId() ] );
845
846               VTK::MarkerType aMarkerTypeCurrent = anActor->GetMarkerType();
847               VTK::MarkerScale aMarkerScaleCurrent = anActor->GetMarkerScale();
848               int aMarkerTextureCurrent = anActor->GetMarkerTexture();
849               if( aMarkerTypeCurrent != VTK::MT_USER )
850                 aDlg->setStandardMarker( aMarkerTypeCurrent, aMarkerScaleCurrent );
851               else
852                 aDlg->setCustomMarker( aMarkerTextureCurrent );
853
854               if(aDlg->exec()){
855                 QColor color = aDlg->GetColor(1);
856                 QColor edgecolor = aDlg->GetColor(2);
857                 QColor nodecolor = aDlg->GetColor(3);
858                 QColor backfacecolor = aDlg->GetColor(4);
859                 QColor color0D = aDlg->GetColor(5);
860                 QColor faces_orientation_color = aDlg->GetColor(6);
861                 /* actor color and backface color */
862                 anActor->SetSufaceColor(vtkFloatingPointType (color.red()) / 255.,
863                                         vtkFloatingPointType (color.green()) / 255.,
864                                         vtkFloatingPointType (color.blue()) / 255.);
865                 anActor->SetBackSufaceColor(vtkFloatingPointType (backfacecolor.red()) / 255.,
866                                             vtkFloatingPointType (backfacecolor.green()) / 255.,
867                                             vtkFloatingPointType (backfacecolor.blue()) / 255.);
868
869                 /* edge color */
870                 anActor->SetEdgeColor(vtkFloatingPointType (edgecolor.red()) / 255.,
871                                       vtkFloatingPointType (edgecolor.green()) / 255.,
872                                       vtkFloatingPointType (edgecolor.blue()) / 255.);
873
874                 /* Shrink factor and size edges */
875                 anActor->SetShrinkFactor(aDlg->GetIntValue(2) / 100.);
876                 anActor->SetLineWidth(aDlg->GetIntValue(1));
877
878                 /* Nodes color and size */
879                 anActor->SetNodeColor(vtkFloatingPointType (nodecolor.red()) / 255.,
880                                       vtkFloatingPointType (nodecolor.green()) / 255.,
881                                       vtkFloatingPointType (nodecolor.blue()) / 255.);
882
883                 /* 0D elements */
884                 anActor->Set0DColor(vtkFloatingPointType (color0D.red()) / 255.,
885                                     vtkFloatingPointType (color0D.green()) / 255.,
886                                     vtkFloatingPointType (color0D.blue()) / 255.);
887                 anActor->Set0DSize(aDlg->GetIntValue(3));
888
889                 /* Faces orientation */
890                 vtkFloatingPointType c[3] = {vtkFloatingPointType(faces_orientation_color.redF()),
891                                              vtkFloatingPointType(faces_orientation_color.greenF()),
892                                              vtkFloatingPointType(faces_orientation_color.blueF())};
893                 anActor->SetFacesOrientationColor(c);
894                 anActor->SetFacesOrientationScale(aDlg->GetDoubleValue(1));
895                 anActor->SetFacesOrientation3DVectors(aDlg->GetBooleanValue(1));
896
897                 /* Point marker */
898                 theMarkerMap[ aStudy->StudyId() ] = aDlg->getCustomMarkerMap();
899
900                 VTK::MarkerType aMarkerTypeNew = aDlg->getMarkerType();
901                 VTK::MarkerScale aMarkerScaleNew = aDlg->getStandardMarkerScale();
902                 int aMarkerTextureNew = aDlg->getCustomMarkerID();
903                 if( aMarkerTypeNew != VTK::MT_USER )
904                   anActor->SetMarkerStd( aMarkerTypeNew, aMarkerScaleNew );
905                 else {
906                   const VTK::MarkerMap& aMarkerMap = theMarkerMap[ aStudy->StudyId() ];
907                   VTK::MarkerMap::const_iterator anIter = aMarkerMap.find( aMarkerTextureNew );
908                   if( anIter != aMarkerMap.end() )
909                     anActor->SetMarkerTexture( aMarkerTextureNew, anIter->second.second );
910                 }
911
912                 SMESH::SMESH_GroupBase_var aGroupObject = SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IObject);
913                 if( !aGroupObject->_is_nil() )
914                 {
915                   SMESH::ElementType anElementType = aGroupObject->GetType();
916                   QColor aColor;
917                   switch( anElementType )
918                   {
919                     case SMESH::NODE: aColor = nodecolor; break;
920                     case SMESH::EDGE: aColor = edgecolor; break;
921                     default: aColor = color; break;
922                   }
923
924                   SALOMEDS::Color aGroupColor;
925                   aGroupColor.R = (float)aColor.red() / 255.0;
926                   aGroupColor.G = (float)aColor.green() / 255.0;
927                   aGroupColor.B = (float)aColor.blue() / 255.0;
928                   aGroupObject->SetColor( aGroupColor );
929                 }
930
931                 delete aDlg;
932               }
933               break;
934             }}
935           }
936         }
937       }
938       SMESH::RepaintCurrentView();
939     }
940   }
941
942   void Control( int theCommandID )
943   {
944     LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
945     SALOME_ListIO selected;
946     if( aSel )
947       aSel->selectedObjects( selected );
948
949     if( !selected.IsEmpty() ){
950       Handle(SALOME_InteractiveObject) anIO = selected.First();
951       if(!anIO.IsNull()){
952         QString aTitle;
953         SMESH_Actor::eControl aControl = SMESH_Actor::eNone;
954         if(SMESH_Actor *anActor = SMESH::FindActorByEntry(anIO->getEntry())){
955           switch ( theCommandID ){
956           case 6001:
957             aTitle = QObject::tr( "LENGTH_EDGES" );
958             aControl = SMESH_Actor::eLength;
959             break;
960           case 6018:
961             aTitle = QObject::tr( "LENGTH2D_EDGES" );
962             aControl = SMESH_Actor::eLength2D;
963             break;
964           case 6002:
965             aTitle = QObject::tr( "FREE_EDGES" );
966             aControl = SMESH_Actor::eFreeEdges;
967             break;
968           case 6003:
969             aTitle = QObject::tr( "FREE_BORDERS" );
970             aControl = SMESH_Actor::eFreeBorders;
971             break;
972           case 6004:
973             aTitle = QObject::tr( "MULTI_BORDERS" );
974             aControl = SMESH_Actor::eMultiConnection;
975             break;
976           case 6005:
977             aTitle = QObject::tr( "FREE_NODES" );
978             aControl = SMESH_Actor::eFreeNodes;
979             break;
980           case 6019:
981             aTitle = QObject::tr( "MULTI2D_BORDERS" );
982             aControl = SMESH_Actor::eMultiConnection2D;
983             break;
984           case 6011:
985             aTitle = QObject::tr( "AREA_ELEMENTS" );
986             aControl = SMESH_Actor::eArea;
987             break;
988           case 6012:
989             aTitle = QObject::tr( "TAPER_ELEMENTS" );
990             aControl = SMESH_Actor::eTaper;
991             break;
992           case 6013:
993             aTitle = QObject::tr( "ASPECTRATIO_ELEMENTS" );
994             aControl = SMESH_Actor::eAspectRatio;
995             break;
996           case 6017:
997             aTitle = QObject::tr( "ASPECTRATIO_3D_ELEMENTS" );
998             aControl = SMESH_Actor::eAspectRatio3D;
999             break;
1000           case 6014:
1001             aTitle = QObject::tr( "MINIMUMANGLE_ELEMENTS" );
1002             aControl = SMESH_Actor::eMinimumAngle;
1003             break;
1004           case 6015:
1005             aTitle = QObject::tr( "WARP_ELEMENTS" );
1006             aControl = SMESH_Actor::eWarping;
1007             break;
1008           case 6016:
1009             aTitle = QObject::tr( "SKEW_ELEMENTS" );
1010             aControl = SMESH_Actor::eSkew;
1011             break;
1012           case 6009:
1013             aTitle = QObject::tr( "SMESH_VOLUME" );
1014             aControl = SMESH_Actor::eVolume3D;
1015             break;
1016           case 6021:
1017             aTitle = QObject::tr( "FREE_FACES" );
1018             aControl = SMESH_Actor::eFreeFaces;
1019             break;
1020           }
1021           anActor->SetControlMode(aControl);
1022           anActor->GetScalarBarActor()->SetTitle(aTitle.toLatin1().data());
1023           SMESH::RepaintCurrentView();
1024         }
1025       }
1026     }
1027   }
1028
1029
1030   bool CheckOIType(const Handle(SALOME_InteractiveObject) & theIO,
1031                    MeshObjectType                           theType,
1032                    const QString                            theInTypeName,
1033                    QString &                                theOutTypeName)
1034   {
1035     SMESH_TypeFilter aTypeFilter( theType );
1036     QString entry;
1037     if( !theIO.IsNull() )
1038     {
1039       entry = theIO->getEntry();
1040       LightApp_DataOwner owner( entry );
1041       if ( aTypeFilter.isOk( &owner )) {
1042         theOutTypeName = theInTypeName;
1043         return true;
1044       }
1045     }
1046     return false;
1047   }
1048
1049
1050   QString CheckTypeObject(const Handle(SALOME_InteractiveObject) & theIO)
1051   {
1052     _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
1053     _PTR(SObject) aSObj = aStudy->FindObjectID(theIO->getEntry());
1054     if (aSObj) {
1055       _PTR(SComponent) aSComp = aSObj->GetFatherComponent();
1056       CORBA::String_var anID = aSComp->GetID().c_str();
1057       if (!strcmp(anID.in(),theIO->getEntry()))
1058         return "Component";
1059     }
1060
1061     QString aTypeName;
1062     if (
1063         CheckOIType ( theIO, HYPOTHESIS,    "Hypothesis", aTypeName ) ||
1064         CheckOIType ( theIO, ALGORITHM,     "Algorithm",  aTypeName ) ||
1065         CheckOIType ( theIO, MESH,          "Mesh",       aTypeName ) ||
1066         CheckOIType ( theIO, SUBMESH,       "SubMesh",    aTypeName ) ||
1067         CheckOIType ( theIO, GROUP,         "Group",      aTypeName )
1068         )
1069       return aTypeName;
1070
1071     return "NoType";
1072   }
1073
1074
1075   QString CheckHomogeneousSelection()
1076   {
1077     //SUIT_Study* aStudy = SMESH::GetActiveStudy();
1078     LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1079     SALOME_ListIO selected;
1080     if( aSel )
1081       aSel->selectedObjects( selected );
1082
1083     QString RefType = CheckTypeObject(selected.First());
1084     SALOME_ListIteratorOfListIO It(selected);
1085     for ( ; It.More(); It.Next())
1086       {
1087         Handle(SALOME_InteractiveObject) IObject = It.Value();
1088         QString Type = CheckTypeObject(IObject);
1089         if (Type.compare(RefType) != 0)
1090           return "Heterogeneous Selection";
1091       }
1092
1093     return RefType;
1094   }
1095
1096
1097   void SMESHGUI::OnEditDelete()
1098   {
1099     // VSR 17/11/04: check if all objects selected belong to SMESH component --> start
1100     LightApp_SelectionMgr* aSel = SMESHGUI::selectionMgr();
1101     SALOME_ListIO selected; aSel->selectedObjects( selected, QString::null, false );
1102
1103     _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
1104     _PTR(StudyBuilder) aStudyBuilder = aStudy->NewBuilder();
1105     _PTR(GenericAttribute) anAttr;
1106     _PTR(AttributeIOR) anIOR;
1107
1108     int objectCount = 0;
1109     QString aNameList;
1110     QString aParentComponent = QString::null;
1111     Handle(SALOME_InteractiveObject) anIO;
1112     for( SALOME_ListIteratorOfListIO anIt( selected ); anIt.More(); anIt.Next() )
1113     {
1114       anIO = anIt.Value();
1115       QString cur = anIO->getComponentDataType();
1116       _PTR(SObject) aSO = aStudy->FindObjectID(anIO->getEntry());
1117       if (aSO) {
1118         // check if object is reference
1119         _PTR(SObject) aRefSObj;
1120         aNameList.append("\n    - ");
1121         if ( aSO->ReferencedObject( aRefSObj ) ) {
1122           QString aRefName = QString::fromStdString ( aRefSObj->GetName() );
1123           aNameList.append( aRefName );
1124           cur = QString::fromStdString ( aRefSObj->GetFatherComponent()->ComponentDataType() );
1125         }
1126         else
1127           aNameList.append(anIO->getName());
1128         objectCount++;
1129       }
1130
1131       if( aParentComponent.isNull() )
1132         aParentComponent = cur;
1133       else if( !aParentComponent.isEmpty() && aParentComponent!=cur )
1134         aParentComponent = "";
1135     }
1136
1137     if ( objectCount == 0 )
1138       return; // No Valid Objects Selected
1139
1140     if ( aParentComponent != SMESHGUI::GetSMESHGUI()->name() )  {
1141       SUIT_MessageBox::warning( SMESHGUI::desktop(),
1142                                 QObject::tr("ERR_ERROR"),
1143                                 QObject::tr("NON_SMESH_OBJECTS_SELECTED").arg( SMESHGUI::GetSMESHGUI()->moduleName() ) );
1144       return;
1145     }
1146     // VSR 17/11/04: check if all objects selected belong to SMESH component <-- finish
1147     if (SUIT_MessageBox::warning
1148         (SMESHGUI::desktop(),
1149          QObject::tr("SMESH_WRN_WARNING"),
1150          QObject::tr("SMESH_REALLY_DELETE").arg( objectCount ).arg( aNameList ),
1151          SUIT_MessageBox::Yes | SUIT_MessageBox::No,
1152          SUIT_MessageBox::Yes) != SUIT_MessageBox::Yes)
1153       return;
1154
1155     SalomeApp_Application* anApp = dynamic_cast<SalomeApp_Application*>( SUIT_Session::session()->activeApplication() );
1156     SUIT_ViewManager* vm = anApp->activeViewManager();
1157     int nbSf = vm->getViewsCount();
1158
1159     SALOME_ListIteratorOfListIO It(selected);
1160
1161     aStudyBuilder->NewCommand();  // There is a transaction
1162     for( ; It.More(); It.Next()){ // loop on selected IO's
1163       Handle(SALOME_InteractiveObject) IObject = It.Value();
1164       if(IObject->hasEntry()) {
1165         _PTR(SObject) aSO = aStudy->FindObjectID(IObject->getEntry());
1166
1167         // disable removal of "SMESH" component object
1168         if(aSO->FindAttribute(anAttr, "AttributeIOR")){
1169           anIOR = anAttr;
1170           if ( engineIOR() == anIOR->Value().c_str() )
1171             continue;
1172         }
1173         //Check the referenced object
1174         _PTR(SObject) aRefSObject;
1175         if ( aSO && aSO->ReferencedObject( aRefSObject ) )
1176           aSO = aRefSObject; // Delete main Object instead of reference
1177
1178         // put the whole hierarchy of sub-objects of the selected SO into a list and
1179         // then treat them all starting from the deepest objects (at list back)
1180
1181         std::list< _PTR(SObject) > listSO;
1182         listSO.push_back( aSO );
1183         std::list< _PTR(SObject) >::iterator itSO = listSO.begin();
1184         for ( ; itSO != listSO.end(); ++itSO ) {
1185           _PTR(ChildIterator) it = aStudy->NewChildIterator( *itSO );
1186           for (it->InitEx(false); it->More(); it->Next())
1187             listSO.push_back( it->Value() );
1188         }
1189
1190         // treat SO's in the list starting from the back
1191
1192         std::list< _PTR(SObject) >::reverse_iterator ritSO = listSO.rbegin();
1193         for ( ; ritSO != listSO.rend(); ++ritSO ) {
1194           _PTR(SObject) SO = *ritSO;
1195           if ( !SO ) continue;
1196           std::string anEntry = SO->GetID();
1197
1198           /** Erase graphical object **/
1199           if(SO->FindAttribute(anAttr, "AttributeIOR")){
1200             QVector<SUIT_ViewWindow*> aViews = vm->getViews();
1201             for(int i = 0; i < nbSf; i++){
1202               SUIT_ViewWindow *sf = aViews[i];
1203               if(SMESH_Actor* anActor = SMESH::FindActorByEntry(sf,anEntry.c_str())){
1204                 SMESH::RemoveActor(sf,anActor);
1205               }
1206             }
1207           }
1208
1209           /** Remove an object from data structures **/
1210           SMESH::SMESH_GroupBase_var aGroup = SMESH::SMESH_GroupBase::_narrow( SMESH::SObjectToObject( SO ));
1211           SMESH::SMESH_subMesh_var   aSubMesh = SMESH::SMESH_subMesh::_narrow( SMESH::SObjectToObject( SO ));
1212           if ( !aGroup->_is_nil() ) {                          // DELETE GROUP
1213             SMESH::SMESH_Mesh_var aMesh = aGroup->GetMesh();
1214             aMesh->RemoveGroup( aGroup );
1215           }
1216           else if ( !aSubMesh->_is_nil() ) {                   // DELETE SUBMESH
1217             SMESH::SMESH_Mesh_var aMesh = aSubMesh->GetFather();
1218             aMesh->RemoveSubMesh( aSubMesh );
1219
1220             _PTR(SObject) aMeshSO = SMESH::FindSObject(aMesh);
1221             if (aMeshSO)
1222               SMESH::ModifiedMesh(aMeshSO, false, aMesh->NbNodes()==0);
1223           }
1224           else {
1225             IObject = new SALOME_InteractiveObject
1226               ( anEntry.c_str(), engineIOR().toLatin1().data(), SO->GetName().c_str() );
1227             QString objType = CheckTypeObject(IObject);
1228             if ( objType == "Hypothesis" || objType == "Algorithm" ) {// DELETE HYPOTHESIS
1229               SMESH::RemoveHypothesisOrAlgorithmOnMesh(IObject);
1230               aStudyBuilder->RemoveObjectWithChildren( SO );
1231             }
1232             else {// default action: remove SObject from the study
1233               // san - it's no use opening a transaction here until UNDO/REDO is provided in SMESH
1234               //SUIT_Operation *op = new SALOMEGUI_ImportOperation(myActiveStudy);
1235               //op->start();
1236               aStudyBuilder->RemoveObjectWithChildren( SO );
1237               //op->finish();
1238             }
1239           }
1240         } /* listSO back loop */
1241       } /* IObject->hasEntry() */
1242     } /* more/next */
1243     aStudyBuilder->CommitCommand();
1244
1245     /* Clear any previous selection */
1246     SALOME_ListIO l1;
1247     aSel->setSelectedObjects( l1 );
1248
1249     SMESHGUI::GetSMESHGUI()->updateObjBrowser();
1250   }
1251 //}
1252
1253 extern "C" {
1254   SMESHGUI_EXPORT CAM_Module* createModule()
1255   {
1256     return new SMESHGUI();
1257   }
1258 }
1259
1260 SMESH::SMESH_Gen_var SMESHGUI::myComponentSMESH = SMESH::SMESH_Gen::_nil();
1261
1262 //=============================================================================
1263 /*!
1264  *
1265  */
1266 //=============================================================================
1267 SMESHGUI::SMESHGUI() :
1268 SalomeApp_Module( "SMESH" ),
1269 LightApp_Module( "SMESH" )
1270 {
1271   if ( CORBA::is_nil( myComponentSMESH ) )
1272   {
1273     CORBA::Boolean anIsEmbeddedMode;
1274     myComponentSMESH = SMESH_Client::GetSMESHGen(getApp()->orb(),anIsEmbeddedMode);
1275     MESSAGE("-------------------------------> anIsEmbeddedMode=" << anIsEmbeddedMode);
1276
1277     //  0019923: EDF 765 SMESH : default values of hypothesis
1278     SUIT_ResourceMgr* aResourceMgr = SMESH::GetResourceMgr(this);
1279     int nbSeg = aResourceMgr->integerValue( "SMESH", "segmentation", 10 );
1280     myComponentSMESH->SetBoundaryBoxSegmentation( nbSeg );
1281     nbSeg = aResourceMgr->integerValue( "SMESH", "nb_segments_per_edge", 15 );
1282     myComponentSMESH->SetDefaultNbSegments( nbSeg );
1283   }
1284
1285   myActiveDialogBox = 0;
1286   myFilterLibraryDlg = 0;
1287   myState = -1;
1288   myDisplayer = 0;
1289
1290   SMESH::GetFilterManager();
1291   SMESH::GetPattern();
1292
1293   /* load resources for all available meshers */
1294   SMESH::InitAvailableHypotheses();
1295 }
1296
1297 //=============================================================================
1298 /*!
1299  *
1300  */
1301 //=============================================================================
1302 SMESHGUI::~SMESHGUI()
1303 {
1304   SMESH::GetFilterManager()->Destroy();
1305   SMESH::GetFilterManager() = SMESH::FilterManager::_nil();
1306 }
1307
1308 //=============================================================================
1309 /*!
1310  *
1311  */
1312 //=============================================================================
1313 LightApp_SelectionMgr* SMESHGUI::selectionMgr()
1314 {
1315   SalomeApp_Application* anApp = dynamic_cast<SalomeApp_Application*>( SUIT_Session::session()->activeApplication() );
1316   if( anApp )
1317     return dynamic_cast<LightApp_SelectionMgr*>( anApp->selectionMgr() );
1318   else
1319     return 0;
1320 }
1321
1322 bool SMESHGUI::automaticUpdate()
1323 {
1324   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
1325   if ( !resMgr )
1326     return false;
1327
1328   return resMgr->booleanValue( "SMESH", "auto_update", false );
1329 }
1330
1331 //=============================================================================
1332 /*!
1333  *
1334  */
1335 //=============================================================================
1336 SUIT_ResourceMgr* SMESHGUI::resourceMgr()
1337 {
1338   return dynamic_cast<SUIT_ResourceMgr*>( SUIT_Session::session()->resourceMgr() );
1339 }
1340
1341 //=============================================================================
1342 /*!
1343  *
1344  */
1345 //=============================================================================
1346 SMESHGUI* SMESHGUI::GetSMESHGUI()
1347 {
1348   SMESHGUI* smeshMod = 0;
1349   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>(SUIT_Session::session()->activeApplication());
1350   if ( app )
1351   {
1352     CAM_Module* module = app->module( "Mesh" );
1353     smeshMod = dynamic_cast<SMESHGUI*>( module );
1354   }
1355
1356   if ( smeshMod && smeshMod->application() && smeshMod->application()->activeStudy() )
1357   {
1358     SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( smeshMod->application()->activeStudy() );
1359     if ( study )
1360     {
1361       _PTR(Study) aStudy = study->studyDS();
1362       if ( aStudy )
1363         GetSMESHGen()->SetCurrentStudy( _CAST(Study,aStudy)->GetStudy() );
1364     }
1365   }
1366
1367   return smeshMod;
1368 }
1369
1370 extern "C"
1371 {
1372   Standard_EXPORT SMESHGUI* GetComponentGUI()
1373   {
1374     return SMESHGUI::GetSMESHGUI();
1375   }
1376 }
1377
1378 //=============================================================================
1379 /*!
1380  *
1381  */
1382 //=============================================================================
1383 void SMESHGUI::SetState(int aState)
1384 {
1385   myState = aState;
1386 }
1387
1388 //=============================================================================
1389 /*!
1390  *
1391  */
1392 //=============================================================================
1393 void SMESHGUI::ResetState()
1394 {
1395   myState = -1;
1396 }
1397
1398 //=============================================================================
1399 /*!
1400  *
1401  */
1402 //=============================================================================
1403 void SMESHGUI::EmitSignalDeactivateDialog()
1404 {
1405   emit SignalDeactivateActiveDialog();
1406 }
1407
1408 //=============================================================================
1409 /*!
1410  *
1411  */
1412 //=============================================================================
1413 void SMESHGUI::EmitSignalStudyFrameChanged()
1414 {
1415   emit SignalStudyFrameChanged();
1416 }
1417
1418 //=============================================================================
1419 /*!
1420  *
1421  */
1422 //=============================================================================
1423 void SMESHGUI::EmitSignalCloseAllDialogs()
1424 {
1425   emit SignalCloseAllDialogs();
1426 }
1427
1428 //=============================================================================
1429 /*!
1430  *
1431  */
1432 //=============================================================================
1433 void SMESHGUI::EmitSignalVisibilityChanged()
1434 {
1435   emit SignalVisibilityChanged();
1436 }
1437
1438 //=============================================================================
1439 /*!
1440  *
1441  */
1442 //=============================================================================
1443 QDialog *SMESHGUI::GetActiveDialogBox()
1444 {
1445   return myActiveDialogBox;
1446 }
1447
1448 //=============================================================================
1449 /*!
1450  *
1451  */
1452 //=============================================================================
1453 void SMESHGUI::SetActiveDialogBox(QDialog * aDlg)
1454 {
1455   myActiveDialogBox = (QDialog *) aDlg;
1456   return;
1457 }
1458
1459 //=============================================================================
1460 /*!
1461  *
1462  */
1463 //=============================================================================
1464 SUIT_Desktop* SMESHGUI::desktop()
1465 {
1466   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( SUIT_Session::session()->activeApplication() );
1467   if( app )
1468     return app->desktop();
1469   else
1470     return 0;
1471 }
1472
1473 //=============================================================================
1474 /*!
1475  *
1476  */
1477 //=============================================================================
1478 SalomeApp_Study* SMESHGUI::activeStudy()
1479 {
1480   SUIT_Application* app = SUIT_Session::session()->activeApplication();
1481   if( app )
1482     return dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
1483   else
1484     return NULL;
1485 }
1486
1487 //=============================================================================
1488 /*!
1489  *
1490  */
1491 //=============================================================================
1492 void SMESHGUI::Modified( bool theIsUpdateActions )
1493 {
1494   if( SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( SUIT_Session::session()->activeApplication() ) ) {
1495     if( SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() ) ) {
1496       appStudy->Modified();
1497       if( theIsUpdateActions )
1498         app->updateActions();
1499     }
1500   }
1501 }
1502
1503 //=============================================================================
1504 /*!
1505  *
1506  */
1507 //=============================================================================
1508 bool SMESHGUI::DefineDlgPosition(QWidget * aDlg, int &x, int &y)
1509 {
1510   /* Here the position is on the bottom right corner - 10 */
1511   // aDlg->resize(QSize().expandedTo(aDlg->minimumSizeHint()));
1512   aDlg->adjustSize();
1513   SUIT_Desktop *PP = desktop();
1514   x = abs(PP->x() + PP->size().width() - aDlg->size().width() - 10);
1515   y = abs(PP->y() + PP->size().height() - aDlg->size().height() - 10);
1516   return true;
1517 }
1518
1519 //=============================================================================
1520 /*!
1521  *
1522  */
1523 //=============================================================================
1524 static int isStudyLocked(_PTR(Study) theStudy){
1525   return theStudy->GetProperties()->IsLocked();
1526 }
1527
1528 static bool checkLock(_PTR(Study) theStudy) {
1529   if (isStudyLocked(theStudy)) {
1530     SUIT_MessageBox::warning( SMESHGUI::desktop(),
1531                               QObject::tr("WRN_WARNING"),
1532                               QObject::tr("WRN_STUDY_LOCKED") );
1533     return true;
1534   }
1535   return false;
1536 }
1537
1538 //=======================================================================
1539 //function : CheckActiveStudyLocked
1540 //purpose  :
1541 //=======================================================================
1542
1543 bool SMESHGUI::isActiveStudyLocked()
1544 {
1545   _PTR(Study) aStudy = activeStudy()->studyDS();
1546   return checkLock( aStudy );
1547 }
1548
1549 //=============================================================================
1550 /*!
1551  *
1552  */
1553 //=============================================================================
1554 bool SMESHGUI::OnGUIEvent( int theCommandID )
1555 {
1556   SalomeApp_Application* anApp = dynamic_cast<SalomeApp_Application*>( application() );
1557   if( !anApp )
1558     return false;
1559
1560   _PTR(Study) aStudy = SMESH::GetActiveStudyDocument(); //Document OCAF de l'etude active
1561   SUIT_ResourceMgr* mgr = resourceMgr();
1562   if( !mgr )
1563     return false;
1564
1565   if (CORBA::is_nil(GetSMESHGen()->GetCurrentStudy())) {
1566     GetSMESHGen()->SetCurrentStudy(_CAST(Study,aStudy)->GetStudy());
1567   }
1568
1569   SUIT_ViewWindow* view = application()->desktop()->activeWindow();
1570   SVTK_ViewWindow* vtkwnd = dynamic_cast<SVTK_ViewWindow*>( view );
1571
1572   //QAction* act = action( theCommandID );
1573
1574   switch (theCommandID) {
1575   case 33:                                      // DELETE
1576     if(checkLock(aStudy)) break;
1577     OnEditDelete();
1578     break;
1579
1580   case 113:                                     // IMPORT
1581   case 112:
1582   case 111:
1583     {
1584       if(checkLock(aStudy)) break;
1585       ::ImportMeshesFromFile(GetSMESHGen(),theCommandID);
1586       break;
1587     }
1588
1589   case 150:    //MED FILE INFORMATION
1590     {
1591       SALOME_ListIO selected;
1592       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1593       if( aSel )
1594         aSel->selectedObjects( selected );
1595       if( selected.Extent() )
1596       {
1597         Handle(SALOME_InteractiveObject) anIObject = selected.First();
1598         SMESH::SMESH_Mesh_var aMesh = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(anIObject);
1599         if ( !aMesh->_is_nil() )
1600         {
1601           SMESHGUI_FileInfoDlg dlg( desktop(), aMesh->GetMEDFileInfo() );
1602           dlg.exec();
1603         }
1604       }
1605       break;
1606     }
1607
1608   case 122:                                     // EXPORT MED
1609   case 121:
1610   case 123:
1611   case 124:
1612   case 125:
1613   case 126:
1614   case 140:
1615   case 141:
1616     {
1617       ::ExportMeshToFile(theCommandID);
1618       break;
1619     }
1620
1621   case 200:                                     // SCALAR BAR
1622     {
1623       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1624       SALOME_ListIO selected;
1625       if( aSel )
1626         aSel->selectedObjects( selected );
1627
1628       if( selected.Extent() ) {
1629         Handle(SALOME_InteractiveObject) anIO = selected.First();
1630         if( anIO->hasEntry() ) {
1631           if( SMESH_Actor* anActor = SMESH::FindActorByEntry( anIO->getEntry() ) ) {
1632             anActor->SetControlMode( SMESH_Actor::eNone );
1633           }
1634         }
1635       }
1636       break;
1637     }
1638   case 201:
1639     {
1640       SMESHGUI_Preferences_ScalarBarDlg::ScalarBarProperties( this );
1641       break;
1642     }
1643
1644     // Auto-color
1645   case 1136:
1646     ::AutoColor();
1647   break;
1648
1649   case 1137:
1650     ::DisableAutoColor();
1651   break;
1652
1653   case 1134: // Clipping
1654   case 1133: // Tranparency
1655   case 1132: // Colors / Size
1656
1657     // Display Mode
1658   case 215: // Nodes
1659   case 213: // Nodes
1660   case 212: // Nodes
1661   case 211: // Nodes
1662     ::SetDisplayMode(theCommandID, myMarkerMap);
1663   break;
1664
1665   //2D quadratic representation
1666   case 231:
1667   case 232:
1668     ::SetDisplayMode(theCommandID, myMarkerMap);
1669   break;
1670   
1671   // Display Entity
1672   case 216: // 0D elements
1673   case 217: // Edges
1674   case 218: // Faces
1675   case 219: // Volumes
1676   case 220: // All Entity
1677     ::SetDisplayEntity(theCommandID);
1678   break;
1679
1680   case 221: // Orientation of faces
1681     {
1682       LightApp_SelectionMgr* mgr = selectionMgr();
1683       SALOME_ListIO selected; mgr->selectedObjects( selected );
1684
1685       SALOME_ListIteratorOfListIO it(selected);
1686       for( ; it.More(); it.Next()) {
1687         Handle(SALOME_InteractiveObject) anIObject = it.Value();
1688         if(anIObject->hasEntry()) {
1689           if(SMESH_Actor *anActor = SMESH::FindActorByEntry(anIObject->getEntry())){
1690             anActor->SetFacesOriented( !anActor->GetFacesOriented() );
1691           }
1692         }
1693       }
1694       break;
1695     }
1696
1697   case 214:                                     // UPDATE
1698     {
1699       if(checkLock(aStudy)) break;
1700       try {
1701 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
1702         OCC_CATCH_SIGNALS;
1703 #endif
1704         SMESH::UpdateView();
1705       }
1706       catch (std::bad_alloc) { // PAL16774 (Crash after display of many groups)
1707         SMESH::OnVisuException();
1708       }
1709       catch (...) { // PAL16774 (Crash after display of many groups)
1710         SMESH::OnVisuException();
1711       }
1712
1713       SALOME_ListIO l;
1714       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1715       aSel->selectedObjects( l );
1716       aSel->setSelectedObjects( l );
1717       break;
1718     }
1719
1720   case 300:                                     // ERASE
1721   case 301:                                     // DISPLAY
1722   case 302:                                     // DISPLAY ONLY
1723     {
1724       SMESH::EDisplaing anAction;
1725       switch (theCommandID) {
1726       case 300: anAction = SMESH::eErase; break;
1727       case 301: anAction = SMESH::eDisplay; break;
1728       case 302: anAction = SMESH::eDisplayOnly; break;
1729       }
1730
1731       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1732       SALOME_ListIO sel_objects, to_process;
1733       if (aSel)
1734         aSel->selectedObjects( sel_objects );
1735
1736       if( theCommandID==302 )
1737       {
1738         MESSAGE("anAction = SMESH::eDisplayOnly");
1739         startOperation( myEraseAll );
1740       }
1741
1742       extractContainers( sel_objects, to_process );
1743
1744       try {
1745 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
1746         OCC_CATCH_SIGNALS;
1747 #endif
1748         if (vtkwnd) {
1749           SALOME_ListIteratorOfListIO It( to_process );
1750           for ( ; It.More(); It.Next()) {
1751                 MESSAGE("---");
1752             Handle(SALOME_InteractiveObject) IOS = It.Value();
1753             if (IOS->hasEntry()) {
1754                 MESSAGE("---");
1755               if (!SMESH::UpdateView(anAction, IOS->getEntry())) {
1756                 SMESHGUI::GetSMESHGUI()->EmitSignalVisibilityChanged();
1757                 break; // PAL16774 (Crash after display of many groups)
1758               }
1759               if (anAction == SMESH::eDisplayOnly)
1760               {
1761                 MESSAGE("anAction = SMESH::eDisplayOnly");
1762                 anAction = SMESH::eDisplay;
1763               }
1764             }
1765           }
1766         }
1767
1768         // PAL13338 + PAL15161 -->
1769         if ( ( theCommandID==301 || theCommandID==302 ) && !checkLock(aStudy)) {
1770                 MESSAGE("anAction = SMESH::eDisplayOnly");
1771           SMESH::UpdateView();
1772           SMESHGUI::GetSMESHGUI()->EmitSignalVisibilityChanged();
1773         }
1774         // PAL13338 + PAL15161 <--
1775       }
1776       catch (...) { // PAL16774 (Crash after display of many groups)
1777         SMESH::OnVisuException();
1778       }
1779
1780       if (anAction == SMESH::eErase) {
1781         MESSAGE("anAction == SMESH::eErase");
1782         SALOME_ListIO l1;
1783         aSel->setSelectedObjects( l1 );
1784       }
1785       else
1786         aSel->setSelectedObjects( to_process );
1787       
1788       break;
1789     }
1790
1791   case 4000:                                    // NODES
1792     {
1793       if(checkLock(aStudy)) break;
1794
1795       if ( vtkwnd ) {
1796         EmitSignalDeactivateDialog();
1797
1798         ( new SMESHGUI_NodesDlg( this ) )->show();
1799       }
1800       else {
1801         SUIT_MessageBox::warning(desktop(),
1802                                  tr("SMESH_WRN_WARNING"),
1803                                  tr("SMESH_WRN_VIEWER_VTK"));
1804       }
1805       break;
1806     }
1807
1808   case 2151:  // FILTER
1809   {
1810     if ( vtkwnd )
1811     {
1812       EmitSignalDeactivateDialog();
1813       ( new SMESHGUI_FilterDlg( this, SMESH::EDGE ) )->show();
1814     }
1815     break;
1816   }
1817
1818   case 406:                                     // MOVE NODE
1819     {
1820       if ( !vtkwnd )
1821       {
1822         SUIT_MessageBox::warning( desktop(), tr( "SMESH_WRN_WARNING" ),
1823                                   tr( "NOT_A_VTK_VIEWER" ) );
1824         break;
1825       }
1826
1827       if(checkLock(aStudy)) break;
1828       ( new SMESHGUI_MoveNodesDlg( this ) )->show();
1829       break;
1830     }
1831
1832   case 701:                                     // COMPUTE MESH
1833   case 711:                                     // PRECOMPUTE MESH
1834   case 712:                                     // EVALUATE MESH
1835   case 713:                                     // MESH ORDER
1836     {
1837       if (checkLock(aStudy)) break;
1838       startOperation( theCommandID );
1839     }
1840     break;
1841
1842   case 702: // Create mesh
1843   case 703: // Create sub-mesh
1844   case 704: // Edit mesh/sub-mesh
1845     startOperation( theCommandID );
1846     break;
1847   case 710: // Build compound mesh
1848     {
1849       if (checkLock(aStudy)) break;
1850       EmitSignalDeactivateDialog();
1851       ( new SMESHGUI_BuildCompoundDlg( this ) )->show();
1852     }
1853     break;
1854
1855   case 407: // DIAGONAL INVERSION
1856   case 408: // Delete diagonal
1857     {
1858       if ( !vtkwnd )
1859       {
1860         SUIT_MessageBox::warning( desktop(), tr( "SMESH_WRN_WARNING" ),
1861                                   tr( "NOT_A_VTK_VIEWER" ) );
1862         break;
1863       }
1864
1865       if ( checkLock( aStudy ) )
1866         break;
1867
1868       /*Standard_Boolean aRes;
1869       SMESH::SMESH_Mesh_var aMesh = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IObject);
1870       if ( aMesh->_is_nil() )
1871       {
1872         SUIT_MessageBox::warning(GetDesktop(), tr( "SMESH_WRN_WARNING" ),
1873           tr( "SMESH_BAD_SELECTION" ) );
1874         break;
1875       }
1876       */
1877       EmitSignalDeactivateDialog();
1878       if ( theCommandID == 407 )
1879         ( new SMESHGUI_TrianglesInversionDlg( this ) )->show();
1880       else
1881         ( new SMESHGUI_UnionOfTwoTrianglesDlg( this ) )->show();
1882       break;
1883     }
1884   case 409: // Change orientation
1885   case 410: // Union of triangles
1886   case 411: // Cutting of quadrangles
1887   case 419: // Splitting volumes into tetrahedra
1888     {
1889       if ( !vtkwnd )
1890       {
1891         SUIT_MessageBox::warning( desktop(), tr( "SMESH_WRN_WARNING" ),
1892                                   tr( "NOT_A_VTK_VIEWER" ) );
1893         break;
1894       }
1895
1896       if ( checkLock( aStudy ) )
1897         break;
1898
1899       EmitSignalDeactivateDialog();
1900       SMESHGUI_MultiEditDlg* aDlg = NULL;
1901       if ( theCommandID == 409 )
1902         aDlg = new SMESHGUI_ChangeOrientationDlg(this);
1903       else if ( theCommandID == 410 )
1904         aDlg = new SMESHGUI_UnionOfTrianglesDlg(this);
1905       else if ( theCommandID == 419 )
1906         aDlg = new SMESHGUI_CuttingIntoTetraDlg(this);
1907       else
1908         aDlg = new SMESHGUI_CuttingOfQuadsDlg(this);
1909
1910       aDlg->show();
1911       break;
1912     }
1913   case 412: // Smoothing
1914     {
1915       if(checkLock(aStudy)) break;
1916       if( vtkwnd ) {
1917         EmitSignalDeactivateDialog();
1918         ( new SMESHGUI_SmoothingDlg( this ) )->show();
1919       }
1920       else {
1921         SUIT_MessageBox::warning(desktop(),
1922                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
1923       }
1924       break;
1925     }
1926   case 413: // Extrusion
1927     {
1928       if (checkLock(aStudy)) break;
1929       if (vtkwnd) {
1930         EmitSignalDeactivateDialog();
1931         ( new SMESHGUI_ExtrusionDlg ( this ) )->show();
1932       } else {
1933         SUIT_MessageBox::warning(desktop(),
1934                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
1935       }
1936       break;
1937     }
1938   case 414: // Revolution
1939     {
1940       if(checkLock(aStudy)) break;
1941       if( vtkwnd ) {
1942         EmitSignalDeactivateDialog();
1943         ( new SMESHGUI_RevolutionDlg( this ) )->show();
1944       }
1945       else {
1946         SUIT_MessageBox::warning(desktop(),
1947                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
1948       }
1949       break;
1950     }
1951   case 415: // Pattern mapping
1952     {
1953       if ( checkLock( aStudy ) )
1954         break;
1955       if ( vtkwnd )
1956       {
1957         EmitSignalDeactivateDialog();
1958         ( new SMESHGUI_MeshPatternDlg( this ) )->show();
1959       }
1960       else {
1961         SUIT_MessageBox::warning(desktop(),
1962                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
1963       }
1964       break;
1965     }
1966   case 416: // Extrusion along a path
1967     {
1968       if (checkLock(aStudy)) break;
1969       if (vtkwnd) {
1970         EmitSignalDeactivateDialog();
1971         ( new SMESHGUI_ExtrusionAlongPathDlg( this ) )->show();
1972       } else {
1973         SUIT_MessageBox::warning(desktop(),
1974                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
1975       }
1976       break;
1977     }
1978   case 417: // Convert mesh to quadratic
1979     {
1980     startOperation( 417 );
1981       /*      if (checkLock(aStudy)) break;
1982       if (vtkwnd) {
1983         EmitSignalDeactivateDialog();
1984         new SMESHGUI_ConvToQuadDlg();
1985       } else {
1986         SUIT_MessageBox::warning(desktop(),
1987                                tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
1988                                }*/
1989       break;
1990     }
1991   case 418: // create 2D mesh from 3D
1992     {
1993       startOperation( 418 );
1994       break;
1995     }
1996   case 806:                                     // CREATE GEO GROUP
1997     {
1998       startOperation( 806 );
1999       break;
2000     }
2001   case 801:                                     // CREATE GROUP
2002     {
2003       if ( !vtkwnd )
2004       {
2005         SUIT_MessageBox::warning( desktop(), tr( "SMESH_WRN_WARNING" ),
2006                                   tr( "NOT_A_VTK_VIEWER" ) );
2007         break;
2008       }
2009
2010       if(checkLock(aStudy)) break;
2011       EmitSignalDeactivateDialog();
2012       SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_nil();
2013
2014       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
2015       SALOME_ListIO selected;
2016       if( aSel )
2017         aSel->selectedObjects( selected );
2018
2019       int nbSel = selected.Extent();
2020       if (nbSel == 1) {
2021         // check if mesh is selected
2022         aMesh = SMESH::GetMeshByIO( selected.First() );
2023       }
2024       SMESHGUI_GroupDlg *aDlg = new SMESHGUI_GroupDlg( this, aMesh);
2025       aDlg->show();
2026       break;
2027     }
2028
2029   case 802:                                     // CONSTRUCT GROUP
2030     {
2031       if ( !vtkwnd )
2032       {
2033         SUIT_MessageBox::warning( desktop(), tr( "SMESH_WRN_WARNING" ),
2034                                   tr( "NOT_A_VTK_VIEWER" ) );
2035         break;
2036       }
2037
2038       if(checkLock(aStudy)) break;
2039       EmitSignalDeactivateDialog();
2040
2041       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
2042       SALOME_ListIO selected;
2043       if( aSel )
2044         aSel->selectedObjects( selected );
2045
2046       int nbSel = selected.Extent();
2047       if (nbSel == 1) {
2048         // check if submesh is selected
2049         Handle(SALOME_InteractiveObject) IObject = selected.First();
2050         if (IObject->hasEntry()) {
2051           _PTR(SObject) aSObj = aStudy->FindObjectID(IObject->getEntry());
2052           if( aSObj ) {
2053             SMESH::SMESH_subMesh_var aSubMesh = SMESH::SMESH_subMesh::_narrow( SMESH::SObjectToObject( aSObj ) );
2054             if (!aSubMesh->_is_nil()) {
2055               try {
2056                 SMESH::SMESH_Mesh_var aMesh = aSubMesh->GetFather();
2057                 // get submesh elements list by types
2058                 SMESH::long_array_var aNodes = aSubMesh->GetElementsByType(SMESH::NODE);
2059                 SMESH::long_array_var aEdges = aSubMesh->GetElementsByType(SMESH::EDGE);
2060                 SMESH::long_array_var aFaces = aSubMesh->GetElementsByType(SMESH::FACE);
2061                 SMESH::long_array_var aVolumes = aSubMesh->GetElementsByType(SMESH::VOLUME);
2062                 // create group for each type o elements
2063                 QString aName = IObject->getName();
2064                 if (aNodes->length() > 0) {
2065                   SMESH::SMESH_Group_var aGroup = SMESH::AddGroup(aMesh, SMESH::NODE, aName + "_Nodes");
2066                   aGroup->Add(aNodes.inout());
2067                 }
2068                 if (aEdges->length() > 0) {
2069                   SMESH::SMESH_Group_var aGroup = SMESH::AddGroup(aMesh, SMESH::EDGE, aName + "_Edges");
2070                   aGroup->Add(aEdges.inout());
2071                 }
2072                 if (aFaces->length() > 0) {
2073                   SMESH::SMESH_Group_var aGroup = SMESH::AddGroup(aMesh, SMESH::FACE, aName + "_Faces");
2074                   aGroup->Add(aFaces.inout());
2075                 }
2076                 if (aVolumes->length() > 0) {
2077                   SMESH::SMESH_Group_var aGroup = SMESH::AddGroup(aMesh, SMESH::VOLUME, aName + "_Volumes");
2078                   aGroup->Add(aVolumes.inout());
2079                 }
2080                 updateObjBrowser();
2081
2082               }
2083               catch(const SALOME::SALOME_Exception & S_ex){
2084                 SalomeApp_Tools::QtCatchCorbaException(S_ex);
2085               }
2086             }
2087           }
2088         }
2089       }
2090       else if(nbSel==0) {
2091         SUIT_MessageBox::warning(desktop(),
2092                                  tr("SMESH_WRN_WARNING"),
2093                                  tr("SMESH_WRN_NO_AVAILABLE_DATA"));
2094       }
2095       break;
2096     }
2097
2098   case 803:                                     // EDIT GROUP
2099     {
2100       if ( !vtkwnd )
2101       {
2102         SUIT_MessageBox::warning( desktop(), tr( "SMESH_WRN_WARNING" ),
2103                                   tr( "NOT_A_VTK_VIEWER" ) );
2104         break;
2105       }
2106
2107       if(checkLock(aStudy)) break;
2108       EmitSignalDeactivateDialog();
2109
2110       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
2111       SALOME_ListIO selected;
2112       if( aSel )
2113         aSel->selectedObjects( selected );
2114
2115       SALOME_ListIteratorOfListIO It (selected);
2116       int nbSelectedGroups = 0;
2117       for ( ; It.More(); It.Next() )
2118       {
2119         SMESH::SMESH_GroupBase_var aGroup =
2120           SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(It.Value());
2121         if (!aGroup->_is_nil()) {
2122           nbSelectedGroups++;
2123           SMESHGUI_GroupDlg *aDlg = new SMESHGUI_GroupDlg( this, aGroup);
2124           aDlg->show();
2125         }
2126       }
2127       if (nbSelectedGroups == 0)
2128         {
2129           SMESHGUI_GroupDlg *aDlg = new SMESHGUI_GroupDlg( this, SMESH::SMESH_GroupBase::_nil());
2130           aDlg->show();
2131         }
2132       break;
2133     }
2134
2135   case 804:                                     // Add elements to group
2136     {
2137       if(checkLock(aStudy)) break;
2138       if (myState == 800) {
2139         SMESHGUI_GroupDlg *aDlg = (SMESHGUI_GroupDlg*) myActiveDialogBox;
2140         if (aDlg) aDlg->onAdd();
2141       }
2142       break;
2143     }
2144
2145   case 805:                                     // Remove elements from group
2146     {
2147       if(checkLock(aStudy)) break;
2148       if (myState == 800) {
2149         SMESHGUI_GroupDlg *aDlg = (SMESHGUI_GroupDlg*) myActiveDialogBox;
2150         if (aDlg) aDlg->onRemove();
2151       }
2152       break;
2153     }
2154
2155   case 815:                                     // Edit GEOM GROUP as standalone
2156     {
2157       if ( !vtkwnd )
2158       {
2159         SUIT_MessageBox::warning( desktop(), tr( "SMESH_WRN_WARNING" ),
2160                                   tr( "NOT_A_VTK_VIEWER" ) );
2161         break;
2162       }
2163
2164       if(checkLock(aStudy)) break;
2165       EmitSignalDeactivateDialog();
2166
2167       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
2168       SALOME_ListIO selected;
2169       if( aSel )
2170         aSel->selectedObjects( selected );
2171
2172       SALOME_ListIteratorOfListIO It (selected);
2173       for ( ; It.More(); It.Next() )
2174       {
2175         SMESH::SMESH_GroupOnGeom_var aGroup =
2176           SMESH::IObjectToInterface<SMESH::SMESH_GroupOnGeom>(It.Value());
2177         if (!aGroup->_is_nil()) {
2178           SMESHGUI_GroupDlg *aDlg = new SMESHGUI_GroupDlg( this, aGroup, true );
2179           aDlg->show();
2180         }
2181       }
2182       break;
2183     }
2184
2185     case 810: // Union Groups
2186     case 811: // Intersect groups
2187     case 812: // Cut groups
2188     {
2189       if ( !vtkwnd )
2190       {
2191         SUIT_MessageBox::warning( desktop(), tr( "SMESH_WRN_WARNING" ),
2192                                   tr( "NOT_A_VTK_VIEWER" ) );
2193         break;
2194       }
2195
2196       if ( checkLock( aStudy ) )
2197         break;
2198
2199       EmitSignalDeactivateDialog();
2200
2201       SMESHGUI_GroupOpDlg* aDlg = 0;
2202       if ( theCommandID == 810 )
2203         aDlg = new SMESHGUI_UnionGroupsDlg( this );
2204       else if ( theCommandID == 811 )
2205         aDlg = new SMESHGUI_IntersectGroupsDlg( this );
2206       else
2207         aDlg = new SMESHGUI_CutGroupsDlg( this );
2208
2209       aDlg->show();
2210
2211       break;
2212     }
2213
2214     case 814: // Create groups of entities from existing groups of superior dimensions
2215     {
2216       if ( checkLock( aStudy ) )
2217         break;
2218
2219       EmitSignalDeactivateDialog();
2220       SMESHGUI_GroupOpDlg* aDlg = new SMESHGUI_DimGroupDlg( this );
2221       aDlg->show();
2222
2223       break;
2224     }
2225
2226     case 813: // Delete groups with their contents
2227     {
2228       if ( !vtkwnd )
2229       {
2230         SUIT_MessageBox::warning( desktop(), tr( "SMESH_WRN_WARNING" ),
2231                                   tr( "NOT_A_VTK_VIEWER" ) );
2232         break;
2233       }
2234
2235       if ( checkLock( aStudy ) )
2236         break;
2237
2238       EmitSignalDeactivateDialog();
2239
2240       ( new SMESHGUI_DeleteGroupDlg( this ) )->show();
2241       break;
2242     }
2243
2244   case 900:                                     // MESH INFOS
2245     {
2246       EmitSignalDeactivateDialog();
2247       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
2248       SALOME_ListIO selected;
2249       if( aSel )
2250         aSel->selectedObjects( selected );
2251
2252       if ( selected.Extent() > 1 ) { // a dlg for each IO
2253         SALOME_ListIO IOs;
2254         SALOME_ListIteratorOfListIO It (selected);
2255         for ( ; It.More(); It.Next() ) {
2256           IOs.Clear(); IOs.Append( It.Value() );
2257           aSel->setSelectedObjects( IOs );
2258           ( new SMESHGUI_MeshInfosDlg( this ) )->show();
2259         }
2260         // restore selection
2261         aSel->setSelectedObjects( selected );
2262       }
2263       else
2264         ( new SMESHGUI_MeshInfosDlg( this ) )->show();
2265       break;
2266     }
2267
2268   case 902:                                     // STANDARD MESH INFOS
2269     {
2270       EmitSignalDeactivateDialog();
2271       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
2272       SALOME_ListIO selected;
2273       if( aSel )
2274         aSel->selectedObjects( selected );
2275
2276       if ( selected.Extent() > 1 ) { // a dlg for each IO
2277         SALOME_ListIO IOs;
2278         SALOME_ListIteratorOfListIO It (selected);
2279         for ( ; It.More(); It.Next() ) {
2280           IOs.Clear();
2281           IOs.Append( It.Value() );
2282           aSel->setSelectedObjects( IOs );
2283           ( new SMESHGUI_StandardMeshInfosDlg( this ) )->show();
2284         }
2285         // restore selection
2286         aSel->setSelectedObjects( selected );
2287       }
2288       else
2289         ( new SMESHGUI_StandardMeshInfosDlg( this ) )->show();
2290       break;
2291     }
2292
2293   case 903:                                     // WHAT IS
2294     {
2295       EmitSignalDeactivateDialog();
2296       ( new SMESHGUI_WhatIsDlg( this ) )->show();
2297       break;
2298     }
2299
2300   case 904:                                     // FIND ELEM
2301     {
2302       startOperation( theCommandID );
2303       break;
2304     }
2305
2306   case 1100:                                    // EDIT HYPOTHESIS
2307     {
2308       if(checkLock(aStudy)) break;
2309
2310       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
2311       SALOME_ListIO selected;
2312       if( aSel )
2313         aSel->selectedObjects( selected );
2314
2315       int nbSel = selected.Extent();
2316
2317       if (nbSel == 1) {
2318         Handle(SALOME_InteractiveObject) anIObject = selected.First();
2319         SMESH::SMESH_Hypothesis_var aHypothesis = SMESH::IObjectToInterface<SMESH::SMESH_Hypothesis>(anIObject);
2320
2321         /* Look for all mesh objects that have this hypothesis affected in order to flag as ModifiedMesh */
2322         /* At end below '...->updateObjBrowser(true)' will change icon of mesh objects                   */
2323         /* Warning : however by internal mechanism all subMeshes icons are changed !                     */
2324         if ( !aHypothesis->_is_nil() )
2325         {
2326           // BUG 0020378
2327           //SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(aHypothesis->GetName());
2328           SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(aHypothesis->GetName());
2329           if (aCreator) {
2330             aCreator->edit( aHypothesis.in(), anIObject->getName(), desktop(), this, SLOT( onHypothesisEdit( int ) ) );
2331           }
2332           else
2333           {
2334             // report error
2335           }
2336         }
2337       }
2338       break;
2339     }
2340
2341   case 1101:                                    // RENAME
2342     {
2343       if ( checkLock( aStudy ) )
2344         break;
2345
2346       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
2347       SALOME_ListIO selected;
2348       if( aSel )
2349         aSel->selectedObjects( selected );
2350
2351       bool isAny = false; // is there any appropriate object selected
2352
2353       SALOME_ListIteratorOfListIO It( selected );
2354       for ( ; It.More(); It.Next() )
2355       {
2356         Handle(SALOME_InteractiveObject) IObject = It.Value();
2357         _PTR(SObject) obj = aStudy->FindObjectID( IObject->getEntry() );
2358         _PTR(GenericAttribute) anAttr;
2359         _PTR(AttributeName) aName;
2360         if ( obj )
2361         {
2362           if ( obj->FindAttribute(anAttr, "AttributeName") )
2363           {
2364             aName = anAttr;
2365             QString newName = QString(aName->Value().c_str());
2366
2367             // check type to prevent renaming of inappropriate objects
2368             int aType = SMESHGUI_Selection::type(IObject->getEntry(), aStudy);
2369             if (aType == MESH || aType == GROUP ||
2370                 aType == SUBMESH || aType == SUBMESH_COMPOUND ||
2371                 aType == SUBMESH_SOLID || aType == SUBMESH_FACE ||
2372                 aType == SUBMESH_EDGE || aType == SUBMESH_VERTEX ||
2373                 aType == HYPOTHESIS || aType == ALGORITHM)
2374             {
2375               isAny = true;
2376               newName = LightApp_NameDlg::getName(desktop(), newName);
2377               if ( !newName.isEmpty() )
2378               {
2379                 SMESHGUI::GetSMESHGen()->SetName(obj->GetIOR().c_str(), newName.toLatin1().data());
2380
2381                 // update name of group object and its actor
2382                 SMESH::SMESH_GroupBase_var aGroupObject = SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IObject);
2383                 if( !aGroupObject->_is_nil() )
2384                 {
2385                   aGroupObject->SetName( newName.toLatin1().data() );
2386                   if ( SMESH_Actor *anActor = SMESH::FindActorByEntry( IObject->getEntry() ) )
2387                     anActor->setName( newName.toLatin1().data() );
2388                 }
2389
2390                 updateObjBrowser();
2391               }
2392             }
2393           }
2394         }
2395       } // for
2396
2397       if (!isAny) {
2398         SUIT_MessageBox::warning(desktop(),
2399                                  QObject::tr("SMESH_WRN_WARNING"),
2400                                  QObject::tr("SMESH_WRN_NO_APPROPRIATE_SELECTION"));
2401       }
2402       break;
2403     }
2404
2405   case 1102:                                    // REMOVE HYPOTHESIS / ALGORITHMS
2406     {
2407       if(checkLock(aStudy)) break;
2408       SUIT_OverrideCursor wc;
2409
2410       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
2411       SALOME_ListIO selected;
2412       if( aSel )
2413         aSel->selectedObjects( selected, QString::null, false );
2414
2415       SALOME_ListIteratorOfListIO It(selected);
2416       for (int i = 0; It.More(); It.Next(), i++) {
2417         Handle(SALOME_InteractiveObject) IObject = It.Value();
2418         SMESH::RemoveHypothesisOrAlgorithmOnMesh(IObject);
2419       }
2420       SALOME_ListIO l1;
2421       aSel->setSelectedObjects( l1 );
2422       updateObjBrowser();
2423       break;
2424     }
2425
2426   case 4009:                                    // ELEM0D
2427   case 4010:                                    // GEOM::EDGE
2428   case 4021:                                    // TRIANGLE
2429   case 4022:                                    // QUAD
2430   case 4023:                                    // POLYGON
2431   case 4031:                                    // TETRA
2432   case 4032:                                    // HEXA
2433     {
2434       if(checkLock(aStudy)) break;
2435       if ( vtkwnd ) {
2436         EmitSignalDeactivateDialog();
2437         SMDSAbs_ElementType type    = SMDSAbs_Edge;
2438         int                 nbNodes = 2;
2439         switch (theCommandID) {
2440         case 4009:                                      // ELEM0D
2441           type = SMDSAbs_0DElement; nbNodes = 1; break;
2442         case 4021:                                      // TRIANGLE
2443           type = SMDSAbs_Face; nbNodes = 3; break;
2444         case 4022:                                      // QUAD
2445           type = SMDSAbs_Face; nbNodes = 4; break;
2446         case 4031:                                      // TETRA
2447           type = SMDSAbs_Volume; nbNodes = 4; break;
2448         case 4023:                                      // POLYGON
2449           type = SMDSAbs_Face; nbNodes = 5; break;     // 5 - identificator for POLYGON
2450         case 4032:                                      // HEXA
2451           type = SMDSAbs_Volume; nbNodes = 8; break;
2452         case 4033:                                      // POLYHEDRE
2453           type = SMDSAbs_Volume; nbNodes = 9; break; // 9 - identificator for POLYHEDRE
2454         default:;
2455         }
2456         ( new SMESHGUI_AddMeshElementDlg( this, type, nbNodes ) )->show();
2457       }
2458       else {
2459         SUIT_MessageBox::warning(desktop(),
2460                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2461       }
2462       break;
2463     }
2464   case 4033:                                    // POLYHEDRON
2465     {
2466       if(checkLock(aStudy)) break;
2467       if ( vtkwnd ) {
2468         EmitSignalDeactivateDialog();
2469         ( new SMESHGUI_CreatePolyhedralVolumeDlg( this ) )->show();
2470       }
2471       else {
2472         SUIT_MessageBox::warning(SMESHGUI::desktop(),
2473                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2474       }
2475       break;
2476     }
2477   case 4034:     // QUADRATIC EDGE
2478   case 4035:     // QUADRATIC TRIANGLE
2479   case 4036:     // QUADRATIC QUADRANGLE
2480   case 4037:     // QUADRATIC TETRAHEDRON
2481   case 4038:     // QUADRATIC PYRAMID
2482   case 4039:     // QUADRATIC PENTAHEDRON
2483   case 4040:     // QUADRATIC HEXAHEDRON
2484     {
2485       if(checkLock(aStudy)) break;
2486       if ( vtkwnd ) {
2487         EmitSignalDeactivateDialog();
2488         int type;
2489
2490         switch (theCommandID) {
2491         case 4034:
2492           type = QUAD_EDGE; break;
2493         case 4035:
2494           type = QUAD_TRIANGLE; break;
2495         case 4036:
2496           type = QUAD_QUADRANGLE; break;
2497         case 4037:
2498           type = QUAD_TETRAHEDRON; break;
2499         case 4038:
2500           type = QUAD_PYRAMID; break;
2501         case 4039:
2502           type = QUAD_PENTAHEDRON; break;
2503         case 4040:
2504           type = QUAD_HEXAHEDRON;
2505           break;
2506         default:;
2507         }
2508          ( new SMESHGUI_AddQuadraticElementDlg( this, type ) )->show();
2509       }
2510       else {
2511         SUIT_MessageBox::warning(SMESHGUI::desktop(),
2512                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2513       }
2514       break;
2515     }
2516   case 4041:                                    // REMOVES NODES
2517     {
2518       if(checkLock(aStudy)) break;
2519       if ( vtkwnd ) {
2520         EmitSignalDeactivateDialog();
2521         ( new SMESHGUI_RemoveNodesDlg( this ) )->show();
2522       }
2523       else {
2524         SUIT_MessageBox::warning(SMESHGUI::desktop(),
2525                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2526       }
2527       break;
2528     }
2529   case 4042:                                    // REMOVES ELEMENTS
2530     {
2531       if(checkLock(aStudy)) break;
2532       if( vtkwnd ) {
2533         EmitSignalDeactivateDialog();
2534         ( new SMESHGUI_RemoveElementsDlg( this ) )->show();
2535       }
2536       else
2537         {
2538           SUIT_MessageBox::warning(SMESHGUI::desktop(),
2539                                    tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2540         }
2541       break;
2542     }
2543   case 4043: {                                // CLEAR_MESH
2544
2545     if(checkLock(aStudy)) break;
2546
2547     SALOME_ListIO selected;
2548     if( LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr() )
2549       aSel->selectedObjects( selected );
2550
2551     SUIT_OverrideCursor wc;
2552     SALOME_ListIteratorOfListIO It (selected);
2553     for ( ; It.More(); It.Next() )
2554     {
2555       Handle(SALOME_InteractiveObject) IOS = It.Value();
2556       SMESH::SMESH_Mesh_var aMesh =
2557         SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IOS);
2558       if ( aMesh->_is_nil()) continue;
2559       try {
2560         SMESH::UpdateView(SMESH::eErase, IOS->getEntry());
2561         aMesh->Clear();
2562         _PTR(SObject) aMeshSObj = SMESH::FindSObject(aMesh);
2563         SMESH::ModifiedMesh( aMeshSObj, false, true);
2564         // hide groups and submeshes
2565         _PTR(ChildIterator) anIter =
2566           SMESH::GetActiveStudyDocument()->NewChildIterator( aMeshSObj );
2567         for ( anIter->InitEx(true); anIter->More(); anIter->Next() )
2568         {
2569           _PTR(SObject) so = anIter->Value();
2570           SMESH::UpdateView(SMESH::eErase, so->GetID().c_str());
2571         }
2572       }
2573       catch (const SALOME::SALOME_Exception& S_ex){
2574         wc.suspend();
2575         SalomeApp_Tools::QtCatchCorbaException(S_ex);
2576         wc.resume();
2577       }
2578     }
2579     SMESH::UpdateView();
2580     updateObjBrowser();
2581     break;
2582   }
2583   case 4051:                                    // RENUMBERING NODES
2584     {
2585       if(checkLock(aStudy)) break;
2586       if( vtkwnd ) {
2587         EmitSignalDeactivateDialog();
2588         ( new SMESHGUI_RenumberingDlg( this, 0 ) )->show();
2589       }
2590       else
2591         {
2592           SUIT_MessageBox::warning(SMESHGUI::desktop(),
2593                                    tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2594         }
2595       break;
2596     }
2597   case 4052:                                    // RENUMBERING ELEMENTS
2598     {
2599       if(checkLock(aStudy)) break;
2600       if ( vtkwnd ) {
2601         EmitSignalDeactivateDialog();
2602         ( new SMESHGUI_RenumberingDlg( this, 1 ) )->show();
2603       }
2604       else
2605         {
2606           SUIT_MessageBox::warning(SMESHGUI::desktop(),
2607                                    tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2608         }
2609       break;
2610     }
2611   case 4061:                                   // TRANSLATION
2612     {
2613       if(checkLock(aStudy)) break;
2614       if ( vtkwnd ) {
2615         EmitSignalDeactivateDialog();
2616         ( new SMESHGUI_TranslationDlg( this ) )->show();
2617       }
2618       else {
2619         SUIT_MessageBox::warning(SMESHGUI::desktop(),
2620                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2621       }
2622       break;
2623     }
2624   case 4062:                                   // ROTATION
2625     {
2626       if(checkLock(aStudy)) break;
2627       if( vtkwnd ) {
2628         EmitSignalDeactivateDialog();
2629         ( new SMESHGUI_RotationDlg( this ) )->show();
2630       }
2631       else {
2632         SUIT_MessageBox::warning(SMESHGUI::desktop(),
2633                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2634       }
2635       break;
2636     }
2637   case 4063:                                   // SYMMETRY
2638     {
2639       if(checkLock(aStudy)) break;
2640       if(vtkwnd) {
2641         EmitSignalDeactivateDialog();
2642         ( new SMESHGUI_SymmetryDlg( this ) )->show();
2643       }
2644       else {
2645         SUIT_MessageBox::warning(SMESHGUI::desktop(),
2646                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2647       }
2648       break;
2649     }
2650   case 4064:                                   // SEWING
2651     {
2652       if(checkLock(aStudy)) break;
2653       if(vtkwnd) {
2654         EmitSignalDeactivateDialog();
2655         ( new SMESHGUI_SewingDlg( this ) )->show();
2656       }
2657       else {
2658         SUIT_MessageBox::warning(SMESHGUI::desktop(),
2659                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2660       }
2661       break;
2662     }
2663   case 4065:                                   // MERGE NODES
2664     {
2665       if(checkLock(aStudy)) break;
2666       if(vtkwnd) {
2667         EmitSignalDeactivateDialog();
2668         ( new SMESHGUI_EditMeshDlg( this, 0 ) )->show();
2669       }
2670       else {
2671         SUIT_MessageBox::warning(SMESHGUI::desktop(),
2672                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2673       }
2674       break;
2675     }
2676   case 4066:                                   // MERGE EQUAL ELEMENTS
2677     {
2678       if (checkLock(aStudy)) break;
2679       if (vtkwnd) {
2680         EmitSignalDeactivateDialog();
2681         ( new SMESHGUI_EditMeshDlg( this, 1 ) )->show();
2682       } else {
2683         SUIT_MessageBox::warning(SMESHGUI::desktop(),
2684                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2685       }
2686       break;
2687     }
2688
2689   case 4067: // MAKE MESH PASS THROUGH POINT
2690     startOperation( 4067 );
2691     break;
2692
2693   case 4068: // SCALE
2694     {
2695       if(checkLock(aStudy)) break;
2696       if ( vtkwnd ) {
2697         EmitSignalDeactivateDialog();
2698         ( new SMESHGUI_ScaleDlg( this ) )->show();
2699       }
2700       else {
2701         SUIT_MessageBox::warning(SMESHGUI::desktop(),
2702                                  tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"));
2703       }
2704       break;
2705     }
2706
2707   case 5105: // Library of selection filters
2708   {
2709     static QList<int> aTypes;
2710     if ( aTypes.isEmpty() )
2711     {
2712       aTypes.append( SMESH::NODE );
2713       aTypes.append( SMESH::EDGE );
2714       aTypes.append( SMESH::FACE );
2715       aTypes.append( SMESH::VOLUME );
2716     }
2717     if (!myFilterLibraryDlg)
2718       myFilterLibraryDlg = new SMESHGUI_FilterLibraryDlg( this, SMESH::GetDesktop( this ), aTypes, SMESHGUI_FilterLibraryDlg::EDIT );
2719     else if (myFilterLibraryDlg->isHidden())
2720       myFilterLibraryDlg->Init( aTypes, SMESHGUI_FilterLibraryDlg::EDIT );
2721     myFilterLibraryDlg->raise();
2722   }
2723   break;
2724
2725   case 6017:                                    // CONTROLS
2726   case 6016:
2727   case 6015:
2728   case 6014:
2729   case 6013:
2730   case 6012:
2731   case 6011:
2732   case 6001:
2733   case 6018:
2734   case 6019:
2735   case 6002:
2736   case 6003:
2737   case 6004:
2738   case 6005:
2739   case 6009:
2740   case 6021:
2741     if ( vtkwnd ) {
2742
2743       LightApp_SelectionMgr* mgr = selectionMgr();
2744       SALOME_ListIO selected; mgr->selectedObjects( selected );
2745
2746       if ( selected.Extent() == 1 && selected.First()->hasEntry() ) {
2747         _PTR(SObject) SO = aStudy->FindObjectID( selected.First()->getEntry() );
2748         if ( SO ) {
2749           CORBA::Object_var aObject = SMESH::SObjectToObject( SO );
2750           SMESH::SMESH_Mesh_var      aMesh    = SMESH::SMESH_Mesh::_narrow( aObject );
2751           SMESH::SMESH_subMesh_var   aSubMesh = SMESH::SMESH_subMesh::_narrow( aObject );
2752           SMESH::SMESH_GroupBase_var aGroup   = SMESH::SMESH_GroupBase::_narrow( aObject );
2753           if ( !aMesh->_is_nil() || !aSubMesh->_is_nil() || !aGroup->_is_nil() ) {
2754             ::Control( theCommandID );
2755             break;
2756           }
2757         }
2758       }
2759       SUIT_MessageBox::warning(desktop(),
2760                                tr( "SMESH_WRN_WARNING" ),
2761                                tr( "SMESH_BAD_SELECTION" ) );
2762       break;
2763     }
2764     else {
2765       SUIT_MessageBox::warning(desktop(),
2766                                tr( "SMESH_WRN_WARNING" ),
2767                                tr( "NOT_A_VTK_VIEWER" ) );
2768     }
2769     break;
2770   case 9010:
2771     {
2772       LightApp_SelectionMgr* mgr = selectionMgr();
2773       SALOME_ListIO selected; mgr->selectedObjects( selected );
2774
2775       SALOME_ListIteratorOfListIO it(selected);
2776       for( ; it.More(); it.Next()) {
2777         Handle(SALOME_InteractiveObject) anIObject = it.Value();
2778         if(anIObject->hasEntry()) {
2779           if(SMESH_Actor *anActor = SMESH::FindActorByEntry(anIObject->getEntry())){
2780             anActor->SetPointsLabeled( !anActor->GetPointsLabeled() );
2781           }
2782         }
2783       }
2784       break;
2785     }
2786   case 9011:
2787     {
2788       LightApp_SelectionMgr* mgr = selectionMgr();
2789       SALOME_ListIO selected; mgr->selectedObjects( selected );
2790
2791       if (selected.Extent() == 1)       {
2792         Handle(SALOME_InteractiveObject) anIObject = selected.First();
2793         if(anIObject->hasEntry())
2794           if(SMESH_Actor *anActor = SMESH::FindActorByEntry(anIObject->getEntry())){
2795             anActor->SetCellsLabeled( !anActor->GetCellsLabeled() );
2796           }
2797       }
2798       break;
2799     }
2800   }
2801
2802   anApp->updateActions(); //SRN: To update a Save button in the toolbar
2803   //updateObjBrowser();
2804   return true;
2805 }
2806
2807 //=============================================================================
2808 /*!
2809  *
2810  */
2811 //=============================================================================
2812 bool SMESHGUI::OnMousePress( QMouseEvent * pe, SUIT_ViewWindow * wnd )
2813 {
2814   return false;
2815 }
2816
2817 //=============================================================================
2818 /*!
2819  *
2820  */
2821 //=============================================================================
2822 bool SMESHGUI::OnMouseMove( QMouseEvent * pe, SUIT_ViewWindow * wnd )
2823 {
2824   return true;
2825 }
2826
2827 //=============================================================================
2828 /*!
2829  *
2830  */
2831 //=============================================================================
2832 bool SMESHGUI::OnKeyPress( QKeyEvent * pe, SUIT_ViewWindow * wnd )
2833 {
2834   return true;
2835 }
2836
2837 //=============================================================================
2838 /*! Method:  BuildPresentation(const Handle(SALOME_InteractiveObject)& theIO)
2839  *  Purpose: ensures that the actor for the given <theIO> exists in the active VTK view
2840  */
2841 //=============================================================================
2842 void SMESHGUI::BuildPresentation( const Handle(SALOME_InteractiveObject) & theIO,
2843                                   SUIT_ViewWindow* wnd )
2844 {
2845   if(theIO->hasEntry()){
2846     //SUIT_ViewWindow* wnd = SMESH::GetActiveWindow();
2847     SMESH::UpdateView(wnd,SMESH::eDisplay,theIO->getEntry());
2848   }
2849 }
2850
2851 //=======================================================================
2852 // function : createSMESHAction
2853 // purpose  :
2854 //=======================================================================
2855 void SMESHGUI::createSMESHAction( const int id, const QString& po_id, const QString& icon_id, const int key, const bool toggle  )
2856 {
2857   QIcon icon;
2858   QWidget* parent = application()->desktop();
2859   SUIT_ResourceMgr* resMgr = resourceMgr();
2860   QPixmap pix;
2861   if ( !icon_id.isEmpty() )
2862     pix = resMgr->loadPixmap( "SMESH", tr( icon_id.toLatin1().data() ) );
2863   else
2864     pix = resMgr->loadPixmap( "SMESH", tr( QString( "ICO_%1" ).arg( po_id ).toLatin1().data() ), false );
2865   if ( !pix.isNull() )
2866     icon = QIcon( pix );
2867
2868   QString tooltip    = tr( QString( "TOP_%1" ).arg( po_id ).toLatin1().data() ),
2869           menu       = tr( QString( "MEN_%1" ).arg( po_id ).toLatin1().data() ),
2870           status_bar = tr( QString( "STB_%1" ).arg( po_id ).toLatin1().data() );
2871
2872   createAction( id, tooltip, icon, menu, status_bar, key, parent, toggle, this, SLOT( OnGUIEvent() )  );
2873 }
2874
2875 //=======================================================================
2876 // function : createPopupItem
2877 // purpose  :
2878 //=======================================================================
2879 void SMESHGUI::createPopupItem( const int id,
2880                                 const QString& clients,
2881                                 const QString& types,
2882                                 const QString& theRule,
2883                                 const int pId )
2884 {
2885   int parentId = pId;
2886   if( pId!=-1 )
2887     parentId = popupMgr()->actionId( action( pId ) );
2888
2889   if( !popupMgr()->contains( popupMgr()->actionId( action( id ) ) ) )
2890     popupMgr()->insert( action( id ), parentId, 0 );
2891
2892   QString lc = "$";        // VSR : instead of QtxPopupSelection::defEquality();
2893   QString dc = "selcount"; // VSR : insetad of QtxPopupSelection::defSelCountParam()
2894   QString rule = "(%1) and (%2) and (%3)";
2895   rule = rule.arg( QString( "%1>0" ).arg( dc ) );
2896   if( clients.isEmpty() )
2897     rule = rule.arg( QString( "true" ) );
2898   else
2899     rule = rule.arg( QString( "%1client in {%2}" ).arg( lc ).arg( clients ) );
2900   rule = rule.arg( QString( "%1type in {%2}" ).arg( lc ).arg( types ) );
2901   rule += theRule;
2902
2903   bool cont = myRules.contains( id );
2904   if( cont )
2905     rule = QString( "%1 or (%2)" ).arg( myRules[ id ] ).arg( rule );
2906
2907   popupMgr()->setRule( action( id ), rule, QtxPopupMgr::VisibleRule );
2908   myRules[ id ] = QString( cont ? "%1" : "(%1)" ).arg( rule );
2909 }
2910
2911 //=======================================================================
2912 // function : initialize
2913 // purpose  :
2914 //=======================================================================
2915 void SMESHGUI::initialize( CAM_Application* app )
2916 {
2917   SalomeApp_Module::initialize( app );
2918
2919 //   SUIT_ResourceMgr* mgr = app->resourceMgr();
2920 //   if ( mgr )
2921   /* Automatic Update flag */
2922 //     myAutomaticUpdate = mgr->booleanValue( "SMESH", "AutomaticUpdate", myAutomaticUpdate );
2923
2924   // ----- create actions --------------
2925
2926   createSMESHAction(  111, "DAT", "", (Qt::CTRL+Qt::Key_B) );
2927   createSMESHAction(  112, "UNV", "", (Qt::CTRL+Qt::Key_U) );
2928   createSMESHAction(  113, "MED", "", (Qt::CTRL+Qt::Key_M) );
2929   createSMESHAction(  114, "NUM" );
2930   createSMESHAction(  121, "DAT" );
2931   createSMESHAction(  122, "MED" );
2932   createSMESHAction(  123, "UNV" );
2933   createSMESHAction(  140, "STL" );
2934   createSMESHAction(  124, "EXPORT_DAT" );
2935   createSMESHAction(  125, "EXPORT_MED" );
2936   createSMESHAction(  126, "EXPORT_UNV" );
2937   createSMESHAction(  141, "EXPORT_STL" );
2938   createSMESHAction(  150, "FILE_INFO" );
2939   createSMESHAction(   33, "DELETE",          "ICON_DELETE", Qt::Key_Delete );
2940   createSMESHAction( 5105, "SEL_FILTER_LIB" );
2941   createSMESHAction(  701, "COMPUTE",         "ICON_COMPUTE" );
2942   createSMESHAction(  702, "CREATE_MESH",     "ICON_DLG_INIT_MESH" );
2943   createSMESHAction(  703, "CREATE_SUBMESH",  "ICON_DLG_ADD_SUBMESH" );
2944   createSMESHAction(  704, "EDIT_MESHSUBMESH","ICON_DLG_EDIT_MESH" );
2945   createSMESHAction(  710, "BUILD_COMPOUND",  "ICON_BUILD_COMPOUND" );
2946   createSMESHAction(  711, "PRECOMPUTE",      "ICON_PRECOMPUTE" );
2947   createSMESHAction(  712, "EVALUATE",        "ICON_COMPUTE" );
2948   createSMESHAction(  713, "MESH_ORDER",      "ICON_COMPUTE" );
2949   createSMESHAction(  806, "CREATE_GEO_GROUP","ICON_CREATE_GEO_GROUP" );
2950   createSMESHAction(  801, "CREATE_GROUP",    "ICON_CREATE_GROUP" );
2951   createSMESHAction(  802, "CONSTRUCT_GROUP", "ICON_CONSTRUCT_GROUP" );
2952   createSMESHAction(  803, "EDIT_GROUP",      "ICON_EDIT_GROUP" );
2953   createSMESHAction(  815, "EDIT_GEOMGROUP_AS_GROUP", "ICON_EDIT_GROUP" );
2954   createSMESHAction(  804, "ADD" );
2955   createSMESHAction(  805, "REMOVE" );
2956   createSMESHAction(  810, "UN_GROUP",        "ICON_UNION" );
2957   createSMESHAction(  811, "INT_GROUP",       "ICON_INTERSECT" );
2958   createSMESHAction(  812, "CUT_GROUP",       "ICON_CUT" );
2959   createSMESHAction(  814, "UNDERLYING_ELEMS","ICON_UNDERLYING_ELEMS" );
2960   createSMESHAction(  813, "DEL_GROUP",       "ICON_DEL_GROUP" );
2961   createSMESHAction(  900, "ADV_INFO",        "ICON_ADV_INFO" );
2962   createSMESHAction(  902, "STD_INFO",        "ICON_STD_INFO" );
2963   createSMESHAction(  903, "WHAT_IS",         "ICON_WHAT_IS" );
2964   createSMESHAction(  904, "FIND_ELEM",       "ICON_FIND_ELEM" );
2965   createSMESHAction( 6001, "LENGTH",          "ICON_LENGTH",        0, true );
2966   createSMESHAction( 6002, "FREE_EDGE",       "ICON_FREE_EDGE",     0, true );
2967   createSMESHAction( 6021, "FREE_FACES",      "ICON_FREE_FACES",    0, true );
2968   createSMESHAction( 6003, "FREE_BORDER",     "ICON_FREE_EDGE_2D",  0, true );
2969   createSMESHAction( 6004, "CONNECTION",      "ICON_CONNECTION",    0, true );
2970   createSMESHAction( 6005, "FREE_NODE",       "ICON_FREE_NODE",     0, true );
2971   createSMESHAction( 6011, "AREA",            "ICON_AREA",          0, true );
2972   createSMESHAction( 6012, "TAPER",           "ICON_TAPER",         0, true );
2973   createSMESHAction( 6013, "ASPECT",          "ICON_ASPECT",        0, true );
2974   createSMESHAction( 6014, "MIN_ANG",         "ICON_ANGLE",         0, true );
2975   createSMESHAction( 6015, "WARP",            "ICON_WARP",          0, true );
2976   createSMESHAction( 6016, "SKEW",            "ICON_SKEW",          0, true );
2977   createSMESHAction( 6017, "ASPECT_3D",       "ICON_ASPECT_3D",     0, true );
2978   createSMESHAction( 6018, "LENGTH_2D",       "ICON_LENGTH_2D",     0, true );
2979   createSMESHAction( 6019, "CONNECTION_2D",   "ICON_CONNECTION_2D", 0, true );
2980   createSMESHAction( 6009, "VOLUME_3D",       "ICON_VOLUME_3D",     0, true );
2981   createSMESHAction( 4000, "NODE",            "ICON_DLG_NODE" );
2982   createSMESHAction( 4009, "ELEM0D",          "ICON_DLG_ELEM0D" );
2983   createSMESHAction( 4010, "EDGE",            "ICON_DLG_EDGE" );
2984   createSMESHAction( 4021, "TRIANGLE",        "ICON_DLG_TRIANGLE" );
2985   createSMESHAction( 4022, "QUAD",            "ICON_DLG_QUADRANGLE" );
2986   createSMESHAction( 4023, "POLYGON",         "ICON_DLG_POLYGON" );
2987   createSMESHAction( 4031, "TETRA",           "ICON_DLG_TETRAS" );
2988   createSMESHAction( 4032, "HEXA",            "ICON_DLG_HEXAS" );
2989   createSMESHAction( 4041, "REMOVE_NODES",    "ICON_DLG_REM_NODE" );
2990   createSMESHAction( 4042, "REMOVE_ELEMENTS", "ICON_DLG_REM_ELEMENT" );
2991   createSMESHAction( 4043, "CLEAR_MESH"    ,  "ICON_CLEAR_MESH" );
2992   createSMESHAction( 4051, "RENUM_NODES",     "ICON_DLG_RENUMBERING_NODES" );
2993   createSMESHAction( 4052, "RENUM_ELEMENTS",  "ICON_DLG_RENUMBERING_ELEMENTS" );
2994   createSMESHAction( 4061, "TRANS",           "ICON_SMESH_TRANSLATION_VECTOR" );
2995   createSMESHAction( 4062, "ROT",             "ICON_DLG_MESH_ROTATION" );
2996   createSMESHAction( 4063, "SYM",             "ICON_SMESH_SYMMETRY_PLANE" );
2997   createSMESHAction( 4064, "SEW",             "ICON_SMESH_SEWING_FREEBORDERS" );
2998   createSMESHAction( 4065, "MERGE",           "ICON_SMESH_MERGE_NODES" );
2999   createSMESHAction( 4066, "MERGE_ELEMENTS",  "ICON_DLG_MERGE_ELEMENTS" );
3000   createSMESHAction( 4067, "MESH_THROU_POINT","ICON_DLG_MESH_THROU_POINT" );
3001   createSMESHAction( 4068, "SCALE",           "ICON_DLG_MESH_SCALE" );
3002   createSMESHAction(  406, "MOVE",            "ICON_DLG_MOVE_NODE" );
3003   createSMESHAction(  407, "INV",             "ICON_DLG_MESH_DIAGONAL" );
3004   createSMESHAction(  408, "UNION2",          "ICON_UNION2TRI" );
3005   createSMESHAction(  409, "ORIENT",          "ICON_DLG_MESH_ORIENTATION" );
3006   createSMESHAction(  410, "UNION",           "ICON_UNIONTRI" );
3007   createSMESHAction(  411, "CUT",             "ICON_CUTQUAD" );
3008   createSMESHAction(  412, "SMOOTH",          "ICON_DLG_SMOOTHING" );
3009   createSMESHAction(  413, "EXTRUSION",       "ICON_EXTRUSION" );
3010   createSMESHAction(  414, "REVOLUTION",      "ICON_REVOLUTION" );
3011   createSMESHAction(  415, "MAP",             "ICON_MAP" );
3012   createSMESHAction(  416, "EXTRUSION_ALONG", "ICON_EXTRUSION_ALONG" );
3013   createSMESHAction(  417, "CONV_TO_QUAD",    "ICON_CONV_TO_QUAD" );
3014   createSMESHAction(  418, "2D_FROM_3D",      "ICON_2D_FROM_3D" );
3015   createSMESHAction(  419, "SPLIT_TO_TETRA",  "ICON_SPLIT_TO_TETRA" );
3016   createSMESHAction(  200, "RESET" );
3017   createSMESHAction(  201, "SCALAR_BAR_PROP" );
3018   createSMESHAction(  211, "WIRE",           "ICON_WIRE", 0, true );
3019   createSMESHAction(  212, "SHADE",          "ICON_SHADE", 0, true );
3020   createSMESHAction(  213, "SHRINK",         "ICON_SHRINK", 0, true );
3021   createSMESHAction(  214, "UPDATE",         "ICON_UPDATE" );
3022   createSMESHAction(  215, "NODES",          "ICON_POINTS", 0, true );
3023   createSMESHAction(  216, "ELEMS0D",        "ICON_DLG_ELEM0D", 0, true );
3024   createSMESHAction(  217, "EDGES",          "ICON_DLG_EDGE", 0, true );
3025   createSMESHAction(  218, "FACES",          "ICON_DLG_TRIANGLE", 0, true );
3026   createSMESHAction(  219, "VOLUMES",        "ICON_DLG_TETRAS", 0, true );
3027   createSMESHAction(  220, "ALL" );
3028   createSMESHAction(  221, "FACE_ORIENTATION", "", 0, true );
3029
3030   createSMESHAction(  231, "LINE_REPRESENTATION", "", 0, true );
3031   createSMESHAction(  232, "ARC_REPRESENTATION", "", 0, true );
3032
3033   createSMESHAction( 1100, "EDIT_HYPO" );
3034   createSMESHAction( 1101, "RENAME", "", Qt::Key_F2 );
3035   createSMESHAction( 1102, "UNASSIGN" );
3036   createSMESHAction( 9010, "NUM_NODES", "", 0, true );
3037   createSMESHAction( 9011, "NUM_ELEMENTS", "", 0, true );
3038   createSMESHAction( 1131, "DISPMODE" );
3039   createSMESHAction( 1132, "COLORS" );
3040   createSMESHAction( 1133, "TRANSP" );
3041   createSMESHAction( 1134, "CLIP" );
3042   createSMESHAction( 1135, "DISP_ENT" );
3043   createSMESHAction( 1136, "AUTO_COLOR" );
3044   createSMESHAction( 1137, "DISABLE_AUTO_COLOR" );
3045   createSMESHAction( 2000, "CTRL" );
3046
3047   createSMESHAction( 300, "ERASE" );
3048   createSMESHAction( 301, "DISPLAY" );
3049   createSMESHAction( 302, "DISPLAY_ONLY" );
3050   createSMESHAction( 4033, "POLYHEDRON", "ICON_DLG_POLYHEDRON" );
3051   createSMESHAction( 4034, "QUADRATIC_EDGE", "ICON_DLG_QUADRATIC_EDGE" );
3052   createSMESHAction( 4035, "QUADRATIC_TRIANGLE", "ICON_DLG_QUADRATIC_TRIANGLE" );
3053   createSMESHAction( 4036, "QUADRATIC_QUADRANGLE", "ICON_DLG_QUADRATIC_QUADRANGLE" );
3054   createSMESHAction( 4037, "QUADRATIC_TETRAHEDRON", "ICON_DLG_QUADRATIC_TETRAHEDRON" );
3055   createSMESHAction( 4038, "QUADRATIC_PYRAMID", "ICON_DLG_QUADRATIC_PYRAMID" );
3056   createSMESHAction( 4039, "QUADRATIC_PENTAHEDRON", "ICON_DLG_QUADRATIC_PENTAHEDRON" );
3057   createSMESHAction( 4040, "QUADRATIC_HEXAHEDRON", "ICON_DLG_QUADRATIC_HEXAHEDRON" );
3058
3059   // ----- create menu --------------
3060   int fileId   = createMenu( tr( "MEN_FILE" ),   -1,  1 ),
3061       editId   = createMenu( tr( "MEN_EDIT" ),   -1,  3 ),
3062       toolsId  = createMenu( tr( "MEN_TOOLS" ),  -1,  5, 50 ),
3063       meshId   = createMenu( tr( "MEN_MESH" ),   -1, 70, 10 ),
3064       ctrlId   = createMenu( tr( "MEN_CTRL" ),   -1, 60, 10 ),
3065       modifyId = createMenu( tr( "MEN_MODIFY" ), -1, 40, 10 ),
3066       viewId   = createMenu( tr( "MEN_VIEW" ),   -1,  2 );
3067
3068   createMenu( separator(), fileId );
3069
3070   int importId = createMenu( tr( "MEN_IMPORT" ), fileId, -1, 10 ),
3071       exportId = createMenu( tr( "MEN_EXPORT" ), fileId, -1, 10 ),
3072       addId    = createMenu( tr( "MEN_ADD" ),    modifyId, 402 ),
3073       removeId = createMenu( tr( "MEN_REMOVE" ), modifyId, 403 ),
3074       renumId  = createMenu( tr( "MEN_RENUM" ),  modifyId, 404 ),
3075       transfId = createMenu( tr( "MEN_TRANSF" ), modifyId, 405 );
3076
3077   createMenu( 111, importId, -1 );
3078   createMenu( 112, importId, -1 );
3079   createMenu( 113, importId, -1 );
3080
3081   createMenu( 121, exportId, -1 );
3082   createMenu( 122, exportId, -1 );
3083   createMenu( 123, exportId, -1 );
3084   createMenu( 140, exportId, -1 ); // export to stl STL
3085
3086   createMenu( separator(), fileId, 10 );
3087
3088   createMenu( 33, editId, -1 );
3089
3090   createMenu( 5105, toolsId, -1 );
3091
3092   createMenu( 702, meshId, -1 ); // "Mesh" menu
3093   createMenu( 703, meshId, -1 );
3094   createMenu( 704, meshId, -1 );
3095   createMenu( 710, meshId, -1 );
3096   createMenu( separator(), meshId, -1 );
3097   createMenu( 701, meshId, -1 );
3098   createMenu( 711, meshId, -1 );
3099   createMenu( 712, meshId, -1 );
3100   createMenu( 713, meshId, -1 );
3101   createMenu( separator(), meshId, -1 );
3102   createMenu( 801, meshId, -1 );
3103   createMenu( 806, meshId, -1 );
3104   createMenu( 802, meshId, -1 );
3105   createMenu( 803, meshId, -1 );
3106   createMenu( 815, meshId, -1 );
3107   createMenu( separator(), meshId, -1 );
3108   createMenu( 810, meshId, -1 );
3109   createMenu( 811, meshId, -1 );
3110   createMenu( 812, meshId, -1 );
3111   createMenu( separator(), meshId, -1 );
3112   createMenu( 814, meshId, -1 );
3113   createMenu( separator(), meshId, -1 );
3114   createMenu( 813, meshId, -1 );
3115   createMenu( separator(), meshId, -1 );
3116   createMenu( 900, meshId, -1 );
3117   createMenu( 902, meshId, -1 );
3118   createMenu( 903, meshId, -1 );
3119   createMenu( 904, meshId, -1 );
3120   createMenu( separator(), meshId, -1 );
3121
3122   createMenu( 6003, ctrlId, -1 );
3123   createMenu( 6001, ctrlId, -1 );
3124   createMenu( 6004, ctrlId, -1 );
3125   createMenu( separator(), ctrlId, -1 );
3126   createMenu( 6005, ctrlId, -1 );
3127   createMenu( 6002, ctrlId, -1 );
3128   createMenu( 6018, ctrlId, -1 );
3129   createMenu( 6019, ctrlId, -1 );
3130   createMenu( 6011, ctrlId, -1 );
3131   createMenu( 6012, ctrlId, -1 );
3132   createMenu( 6013, ctrlId, -1 );
3133   createMenu( 6014, ctrlId, -1 );
3134   createMenu( 6015, ctrlId, -1 );
3135   createMenu( 6016, ctrlId, -1 );
3136   createMenu( separator(), ctrlId, -1 );
3137   createMenu( 6017, ctrlId, -1 );
3138   createMenu( 6009, ctrlId, -1 );
3139   createMenu( 6021, ctrlId, -1 );
3140   createMenu( separator(), ctrlId, -1 );
3141
3142   createMenu( 4000, addId, -1 );
3143   createMenu( 4009, addId, -1 );
3144   createMenu( 4010, addId, -1 );
3145   createMenu( 4021, addId, -1 );
3146   createMenu( 4022, addId, -1 );
3147   createMenu( 4023, addId, -1 );
3148   createMenu( 4031, addId, -1 );
3149   createMenu( 4032, addId, -1 );
3150   createMenu( 4033, addId, -1 );
3151   createMenu( separator(), addId, -1 );
3152   createMenu( 4034, addId, -1 );
3153   createMenu( 4035, addId, -1 );
3154   createMenu( 4036, addId, -1 );
3155   createMenu( 4037, addId, -1 );
3156   createMenu( 4038, addId, -1 );
3157   createMenu( 4039, addId, -1 );
3158   createMenu( 4040, addId, -1 );
3159
3160   createMenu( 4041, removeId, -1 );
3161   createMenu( 4042, removeId, -1 );
3162   createMenu( 4043, removeId, -1 );
3163
3164   createMenu( 4051, renumId, -1 );
3165   createMenu( 4052, renumId, -1 );
3166
3167   createMenu( 4061, transfId, -1 );
3168   createMenu( 4062, transfId, -1 );
3169   createMenu( 4063, transfId, -1 );
3170   createMenu( 4064, transfId, -1 );
3171   createMenu( 4065, transfId, -1 );
3172   createMenu( 4066, transfId, -1 );
3173   createMenu( 4068, transfId, -1 );
3174
3175   createMenu( 406, modifyId, -1 );
3176   createMenu( 4067,modifyId, -1 );
3177   createMenu( 407, modifyId, -1 );
3178   createMenu( 408, modifyId, -1 );
3179   createMenu( 409, modifyId, -1 );
3180   createMenu( 410, modifyId, -1 );
3181   createMenu( 411, modifyId, -1 );
3182   createMenu( 419, modifyId, -1 );
3183   createMenu( 412, modifyId, -1 );
3184   createMenu( 413, modifyId, -1 );
3185   createMenu( 416, modifyId, -1 );
3186   createMenu( 414, modifyId, -1 );
3187   createMenu( 415, modifyId, -1 );
3188   createMenu( 417, modifyId, -1 );
3189   createMenu( 418, modifyId, -1 );
3190
3191   createMenu( 214, viewId, -1 );
3192
3193   // ----- create toolbars --------------
3194   int meshTb     = createTool( tr( "TB_MESH" ) ),
3195       ctrlTb     = createTool( tr( "TB_CTRL" ) ),
3196       addRemTb   = createTool( tr( "TB_ADD_REMOVE" ) ),
3197       modifyTb   = createTool( tr( "TB_MODIFY" ) ),
3198       dispModeTb = createTool( tr( "TB_DISP_MODE" ) );
3199
3200   createTool( 702, meshTb );
3201   createTool( 703, meshTb );
3202   createTool( 704, meshTb );
3203   createTool( 710, meshTb );
3204   createTool( separator(), meshTb );
3205   createTool( 701, meshTb );
3206   createTool( 711, meshTb );
3207   createTool( 712, meshTb );
3208   createTool( 713, meshTb );
3209   createTool( separator(), meshTb );
3210   createTool( 801, meshTb );
3211   createTool( 806, meshTb );
3212   createTool( 802, meshTb );
3213   createTool( 803, meshTb );
3214   //createTool( 815, meshTb );
3215   createTool( separator(), meshTb );
3216   createTool( 900, meshTb );
3217   createTool( 902, meshTb );
3218   createTool( 903, meshTb );
3219   createTool( 904, meshTb );
3220   createTool( separator(), meshTb );
3221
3222   createTool( 6001, ctrlTb );
3223   createTool( 6003, ctrlTb );
3224   createTool( 6004, ctrlTb );
3225   createTool( separator(), ctrlTb );
3226   createTool( 6005, ctrlTb );
3227   createTool( 6002, ctrlTb );
3228   createTool( 6018, ctrlTb );
3229   createTool( 6019, ctrlTb );
3230   createTool( 6011, ctrlTb );
3231   createTool( 6012, ctrlTb );
3232   createTool( 6013, ctrlTb );
3233   createTool( 6014, ctrlTb );
3234   createTool( 6015, ctrlTb );
3235   createTool( 6016, ctrlTb );
3236   createTool( separator(), ctrlTb );
3237   createTool( 6017, ctrlTb );
3238   createTool( 6009, ctrlTb );
3239   createTool( 6021, ctrlTb );
3240   createTool( separator(), ctrlTb );
3241
3242   createTool( 4000, addRemTb );
3243   createTool( 4009, addRemTb );
3244   createTool( 4010, addRemTb );
3245   createTool( 4021, addRemTb );
3246   createTool( 4022, addRemTb );
3247   createTool( 4023, addRemTb );
3248   createTool( 4031, addRemTb );
3249   createTool( 4032, addRemTb );
3250   createTool( 4033, addRemTb );
3251   createTool( separator(), addRemTb );
3252   createTool( 4034, addRemTb );
3253   createTool( 4035, addRemTb );
3254   createTool( 4036, addRemTb );
3255   createTool( 4037, addRemTb );
3256   createTool( 4038, addRemTb );
3257   createTool( 4039, addRemTb );
3258   createTool( 4040, addRemTb );
3259   createTool( separator(), addRemTb );
3260   createTool( 4041, addRemTb );
3261   createTool( 4042, addRemTb );
3262   createTool( 4043, addRemTb );
3263   createTool( separator(), addRemTb );
3264   createTool( 4051, addRemTb );
3265   createTool( 4052, addRemTb );
3266   createTool( separator(), addRemTb );
3267   createTool( 4061, addRemTb );
3268   createTool( 4062, addRemTb );
3269   createTool( 4063, addRemTb );
3270   createTool( 4064, addRemTb );
3271   createTool( 4065, addRemTb );
3272   createTool( 4066, addRemTb );
3273   createTool( 4068, addRemTb );
3274   createTool( separator(), addRemTb );
3275
3276   createTool( 406, modifyTb );
3277   createTool( 4067,modifyTb );
3278   createTool( 407, modifyTb );
3279   createTool( 408, modifyTb );
3280   createTool( 409, modifyTb );
3281   createTool( 410, modifyTb );
3282   createTool( 411, modifyTb );
3283   createTool( 419, modifyTb );
3284   createTool( 412, modifyTb );
3285   createTool( 413, modifyTb );
3286   createTool( 416, modifyTb );
3287   createTool( 414, modifyTb );
3288   createTool( 415, modifyTb );
3289   createTool( 417, modifyTb );
3290   createTool( 418, modifyTb );
3291
3292   createTool( 214, dispModeTb );
3293
3294   QString lc = "$";        // VSR : instead of QtxPopupSelection::defEquality();
3295   QString dc = "selcount"; // VSR : instead of QtxPopupSelection::defSelCountParam()
3296
3297   myRules.clear();
3298   QString OB = "'ObjectBrowser'",
3299           View = "'" + SVTK_Viewer::Type() + "'",
3300           pat = "'%1'",
3301           mesh    = pat.arg( SMESHGUI_Selection::typeName( MESH ) ),
3302           group   = pat.arg( SMESHGUI_Selection::typeName( GROUP ) ),
3303           hypo    = pat.arg( SMESHGUI_Selection::typeName( HYPOTHESIS ) ),
3304           algo    = pat.arg( SMESHGUI_Selection::typeName( ALGORITHM ) ),
3305           elems   = QString( "'%1' '%2' '%3' '%4' '%5' '%6'" ).
3306                        arg( SMESHGUI_Selection::typeName( SUBMESH_VERTEX ) ).
3307                        arg( SMESHGUI_Selection::typeName( SUBMESH_EDGE ) ).
3308                        arg( SMESHGUI_Selection::typeName( SUBMESH_FACE ) ).
3309                        arg( SMESHGUI_Selection::typeName( SUBMESH_SOLID ) ).
3310                        arg( SMESHGUI_Selection::typeName( SUBMESH_COMPOUND ) ).
3311                        arg( SMESHGUI_Selection::typeName( SUBMESH ) ),
3312           subMesh = elems,
3313           mesh_group = mesh + " " + subMesh + " " + group,
3314           hyp_alg = hypo + " " + algo;
3315
3316   // popup for object browser
3317   QString
3318     isInvisible("not( isVisible )"),
3319     isEmpty("numberOfNodes = 0"),
3320     isNotEmpty("numberOfNodes <> 0"),
3321
3322     // has nodes, edges, etc in VISIBLE! actor
3323     hasNodes("(numberOfNodes > 0 )"),//&& isVisible)"),
3324     hasElems("(count( elemTypes ) > 0)"),
3325     hasDifferentElems("(count( elemTypes ) > 1)"),
3326     hasElems0d("({'Elem0d'} in elemTypes)"),
3327     hasEdges("({'Edge'} in elemTypes)"),
3328     hasFaces("({'Face'} in elemTypes)"),
3329     hasVolumes("({'Volume'} in elemTypes)");
3330
3331   createPopupItem( 150, OB, mesh, "&& selcount=1 && isImported" );      // FILE INFORMATION
3332   createPopupItem( 703, OB, mesh, "&& isComputable");      // CREATE_SUBMESH
3333   //createPopupItem( 703, OB, subMesh, "&& isComputable" );  // CREATE_SUBMESH
3334   createPopupItem( 704, OB, mesh, "&& isComputable");      // EDIT_MESHSUBMESH
3335   createPopupItem( 704, OB, subMesh, "&& isComputable" );  // EDIT_MESHSUBMESH
3336   createPopupItem( 803, OB, group );                       // EDIT_GROUP
3337   createPopupItem( 815, OB, group, "&& groupType = 'GroupOnGeom'" ); // EDIT_GROUP
3338
3339   popupMgr()->insert( separator(), -1, 0 );
3340   createPopupItem( 701, OB, mesh, "&& isComputable" );     // COMPUTE
3341   createPopupItem( 711, OB, mesh, "&& isComputable && isPreComputable" ); // PRECOMPUTE
3342   createPopupItem( 712, OB, mesh, "&& isComputable" );     // EVALUATE
3343   createPopupItem( 713, OB, mesh, "&& isComputable" );     // MESH ORDER
3344   createPopupItem( 214, OB, mesh_group );                  // UPDATE
3345   createPopupItem( 900, OB, mesh_group );                  // ADV_INFO
3346   createPopupItem( 902, OB, mesh );                        // STD_INFO
3347   createPopupItem( 903, OB, mesh_group );                  // WHAT_IS
3348   createPopupItem( 904, OB, mesh_group );                  // FIND_ELEM
3349   popupMgr()->insert( separator(), -1, 0 );
3350   createPopupItem( 801, OB, mesh );                        // CREATE_GROUP
3351   createPopupItem( 806, OB, mesh );                        // CREATE_GEO_GROUP
3352   createPopupItem( 802, OB, subMesh );                     // CONSTRUCT_GROUP
3353   popupMgr()->insert( separator(), -1, 0 );
3354   createPopupItem( 1100, OB, hypo);                        // EDIT HYPOTHESIS
3355   createPopupItem( 1102, OB, hyp_alg ); // REMOVE HYPOTHESIS / ALGORITHMS
3356   createPopupItem( 1101, OB, mesh_group + " " + hyp_alg ); // RENAME
3357   popupMgr()->insert( separator(), -1, 0 );
3358   createPopupItem( 4043, OB, mesh );                       // CLEAR_MESH
3359   popupMgr()->insert( separator(), -1, 0 );
3360   createPopupItem( 417, OB, mesh/*, "&& " + hasElems*/);       // convert to quadratic
3361   createPopupItem( 418, OB, mesh/*, "&& " + hasVolumes*/);     // create 2D mesh on 3D
3362   popupMgr()->insert( separator(), -1, 0 );
3363
3364   QString only_one_non_empty = QString( " && %1=1 && numberOfNodes>0" ).arg( dc );
3365   QString multiple_non_empty = QString( " && %1>0 && numberOfNodes>0" ).arg( dc );
3366
3367   createPopupItem( 125, OB, mesh, multiple_non_empty );   // EXPORT_MED
3368   createPopupItem( 126, OB, mesh, only_one_non_empty );   // EXPORT_UNV
3369   createPopupItem( 141, OB, mesh, only_one_non_empty );   // EXPORT_STL
3370   //createPopupItem( 33, OB, subMesh + " " + group );       // DELETE
3371   createPopupItem(  33, OB, mesh_group + " " + hyp_alg ); // DELETE
3372   popupMgr()->insert( separator(), -1, 0 );
3373
3374   // popup for viewer
3375   createPopupItem( 803, View, group ); // EDIT_GROUP
3376   createPopupItem( 804, View, elems ); // ADD
3377   createPopupItem( 805, View, elems ); // REMOVE
3378
3379   popupMgr()->insert( separator(), -1, 0 );
3380   createPopupItem( 214, View, mesh_group ); // UPDATE
3381   createPopupItem( 900, View, mesh_group ); // ADV_INFO
3382   createPopupItem( 902, View, mesh );       // STD_INFO
3383   createPopupItem( 903, View, mesh_group ); // WHAT_IS
3384   createPopupItem( 904, View, mesh_group ); // FIND_ELEM
3385   popupMgr()->insert( separator(), -1, 0 );
3386
3387   createPopupItem( 1136, OB + " " + View, mesh, "&& (not isAutoColor)" ); // AUTO_COLOR
3388   createPopupItem( 1137, OB + " " + View, mesh, "&& isAutoColor" );       // DISABLE_AUTO_COLOR
3389   popupMgr()->insert( separator(), -1, 0 );
3390
3391   int anId;
3392   QString aClient = QString( "%1client in {%2}" ).arg( lc ).arg( "'VTKViewer'" );
3393   QString aType = QString( "%1type in {%2}" ).arg( lc );
3394   aType = aType.arg( mesh_group );
3395   QString aMeshInVTK = aClient + "&&" + aType;
3396
3397   aClient = "($client in {'VTKViewer' 'ObjectBrowser'})";
3398   QString anActiveVTK = QString("activeView = '%1'").arg(SVTK_Viewer::Type());
3399   QString aSelCount = QString( "%1 > 0" ).arg( dc );
3400
3401   //-------------------------------------------------
3402   // Numbering
3403   //-------------------------------------------------
3404   anId = popupMgr()->insert( tr( "MEN_NUM" ), -1, -1 );
3405
3406   popupMgr()->insert( action( 9010 ), anId, -1 );
3407   popupMgr()->setRule( action( 9010 ), aMeshInVTK + "&& isVisible &&" + hasNodes, QtxPopupMgr::VisibleRule );
3408   popupMgr()->setRule( action( 9010 ), "{'Point'} in labeledTypes", QtxPopupMgr::ToggleRule );
3409
3410   popupMgr()->insert( action( 9011 ), anId, -1 );
3411   popupMgr()->setRule( action( 9011 ), aMeshInVTK + "&& isVisible &&" + hasElems, QtxPopupMgr::VisibleRule );
3412   popupMgr()->setRule( action( 9011 ), "{'Cell'} in labeledTypes", QtxPopupMgr::ToggleRule );
3413
3414   popupMgr()->insert( separator(), -1, -1 );
3415
3416   //-------------------------------------------------
3417   // Display Mode
3418   //-------------------------------------------------
3419   anId = popupMgr()->insert( tr( "MEN_DISPMODE" ), -1, -1 );
3420
3421   popupMgr()->insert( action( 211 ), anId, -1 ); // WIRE
3422   popupMgr()->setRule( action( 211 ), aMeshInVTK + "&&" + hasElems, QtxPopupMgr::VisibleRule );
3423   popupMgr()->setRule( action( 211 ), "displayMode = 'eEdge'", QtxPopupMgr::ToggleRule );
3424
3425   popupMgr()->insert( action( 212 ), anId, -1 ); // SHADE
3426   popupMgr()->setRule( action( 212 ),aMeshInVTK+ "&& (" + hasFaces + "||" + hasVolumes + ")", QtxPopupMgr::VisibleRule);
3427   popupMgr()->setRule( action( 212 ), "displayMode = 'eSurface'", QtxPopupMgr::ToggleRule );
3428
3429   popupMgr()->insert( action( 215 ), anId, -1 ); // POINTS
3430   popupMgr()->setRule( action( 215 ), aMeshInVTK + "&&" + hasNodes, QtxPopupMgr::VisibleRule );
3431   popupMgr()->setRule( action( 215 ), "displayMode = 'ePoint'", QtxPopupMgr::ToggleRule );
3432
3433   popupMgr()->insert( separator(), anId, -1 );
3434
3435   popupMgr()->insert( action( 213 ), anId, -1 ); // SHRINK
3436   popupMgr()->setRule( action( 213 ), aMeshInVTK + "&& shrinkMode <> 'IsNotShrinkable' && displayMode <> 'ePoint'", QtxPopupMgr::VisibleRule);
3437   popupMgr()->setRule( action( 213 ), "shrinkMode = 'IsShrunk'", QtxPopupMgr::ToggleRule );
3438
3439   //-------------------------------------------------
3440   // Display Entity
3441   //-------------------------------------------------
3442   QString aDiffElemsInVTK = aMeshInVTK + "&&" + hasDifferentElems;
3443
3444   anId = popupMgr()->insert( tr( "MEN_DISP_ENT" ), -1, -1 );
3445
3446   popupMgr()->insert( action(216), anId, -1 ); // ELEMS 0D
3447   popupMgr()->setRule(action(216), aDiffElemsInVTK + "&& isVisible &&" + hasElems0d, QtxPopupMgr::VisibleRule);
3448   popupMgr()->setRule(action(216), "{'Elem0d'} in entityMode", QtxPopupMgr::ToggleRule);
3449
3450   popupMgr()->insert( action( 217 ), anId, -1 ); // EDGES
3451   popupMgr()->setRule( action( 217 ), aDiffElemsInVTK + "&& isVisible &&" + hasEdges, QtxPopupMgr::VisibleRule );
3452   popupMgr()->setRule( action( 217 ), "{'Edge'} in entityMode", QtxPopupMgr::ToggleRule );
3453
3454   popupMgr()->insert( action( 218 ), anId, -1 ); // FACES
3455   popupMgr()->setRule( action( 218 ), aDiffElemsInVTK + "&& isVisible &&" + hasFaces, QtxPopupMgr::VisibleRule );
3456   popupMgr()->setRule( action( 218 ), "{'Face'} in entityMode", QtxPopupMgr::ToggleRule );
3457
3458   popupMgr()->insert( action( 219 ), anId, -1 ); // VOLUMES
3459   popupMgr()->setRule( action( 219 ), aDiffElemsInVTK + "&& isVisible &&" + hasVolumes, QtxPopupMgr::VisibleRule );
3460   popupMgr()->setRule( action( 219 ), "{'Volume'} in entityMode", QtxPopupMgr::ToggleRule );
3461
3462   popupMgr()->insert( separator(), anId, -1 );
3463
3464   popupMgr()->insert( action( 220 ), anId, -1 ); // ALL
3465   popupMgr()->setRule( action( 220 ), aDiffElemsInVTK + "&& isVisible && not( elemTypes in entityMode )", QtxPopupMgr::VisibleRule );
3466
3467
3468   //-------------------------------------------------
3469   // Representation of the 2D Quadratic elements
3470   //-------------------------------------------------  
3471   anId = popupMgr()->insert( tr( "MEN_QUADRATIC_REPRESENT" ), -1, -1 );
3472   popupMgr()->insert( action( 231 ), anId, -1 ); // LINE REPRESENTATION
3473   popupMgr()->setRule( action( 231 ), aMeshInVTK + "and isVisible",QtxPopupMgr::VisibleRule );
3474   popupMgr()->setRule( action( 231 ), "quadratic2DMode = 'eLines'", QtxPopupMgr::ToggleRule );
3475   
3476   popupMgr()->insert( action( 232 ), anId, -1 ); // ARC REPRESENTATION
3477   popupMgr()->setRule( action( 232 ), aMeshInVTK + "and isVisible", QtxPopupMgr::VisibleRule );
3478   popupMgr()->setRule( action( 232 ), "quadratic2DMode = 'eArcs'", QtxPopupMgr::ToggleRule );
3479
3480   //-------------------------------------------------
3481   // Orientation of faces
3482   //-------------------------------------------------
3483   popupMgr()->insert( action( 221 ), -1, -1 );
3484   popupMgr()->setRule( action( 221 ), aMeshInVTK + "&& isVisible", QtxPopupMgr::VisibleRule);
3485   popupMgr()->setRule( action( 221 ), "facesOrientationMode = 'IsOriented'", QtxPopupMgr::ToggleRule );
3486
3487   //-------------------------------------------------
3488   // Color / Size
3489   //-------------------------------------------------
3490   popupMgr()->insert( action( 1132 ), -1, -1 );
3491   popupMgr()->setRule( action( 1132 ), aMeshInVTK + "&& isVisible", QtxPopupMgr::VisibleRule );
3492
3493   //-------------------------------------------------
3494   // Transparency
3495   //-------------------------------------------------
3496   popupMgr()->insert( action( 1133 ), -1, -1 );
3497   popupMgr()->setRule( action( 1133 ), aMeshInVTK + "&& isVisible", QtxPopupMgr::VisibleRule );
3498
3499   //-------------------------------------------------
3500   // Clipping
3501   //-------------------------------------------------
3502   popupMgr()->insert( action( 1134 ), -1, -1 );
3503   popupMgr()->setRule( action( 1134 ), aMeshInVTK + "&& selcount=1 && isVisible", QtxPopupMgr::VisibleRule );
3504
3505   popupMgr()->insert( separator(), -1, -1 );
3506
3507   //-------------------------------------------------
3508   // Controls
3509   //-------------------------------------------------
3510   QString
3511     aMeshInVtkHasNodes = aMeshInVTK + "&&" + hasNodes,
3512     aMeshInVtkHasEdges = aMeshInVTK + "&&" + hasEdges,
3513     aMeshInVtkHasFaces = aMeshInVTK + "&&" + hasFaces,
3514     aMeshInVtkHasVolumes = aMeshInVTK + "&&" + hasVolumes;
3515
3516   anId = popupMgr()->insert( tr( "MEN_CTRL" ), -1, -1 );
3517   
3518   popupMgr()->insert( action( 200 ), anId, -1 ); // RESET
3519   popupMgr()->setRule( action( 200 ), aMeshInVTK + "&& controlMode <> 'eNone'", QtxPopupMgr::VisibleRule );
3520
3521   popupMgr()->insert( separator(), anId, -1 );
3522
3523   popupMgr()->insert( action( 6003 ), anId, -1 ); // FREE_BORDER
3524   popupMgr()->setRule( action( 6003 ), aMeshInVtkHasEdges, QtxPopupMgr::VisibleRule );
3525   popupMgr()->setRule( action( 6003 ), "controlMode = 'eFreeBorders'", QtxPopupMgr::ToggleRule );
3526
3527   popupMgr()->insert( action( 6001 ), anId, -1 ); // LENGTH
3528   popupMgr()->setRule( action( 6001 ), aMeshInVtkHasEdges, QtxPopupMgr::VisibleRule );
3529   popupMgr()->setRule( action( 6001 ), "controlMode = 'eLength'", QtxPopupMgr::ToggleRule );
3530
3531   popupMgr()->insert( action( 6004 ), anId, -1 ); // CONNECTION
3532   popupMgr()->setRule( action( 6004 ), aMeshInVtkHasEdges, QtxPopupMgr::VisibleRule );
3533   popupMgr()->setRule( action( 6004 ), "controlMode = 'eMultiConnection'", QtxPopupMgr::ToggleRule );
3534
3535   popupMgr()->insert( separator(), anId, -1 );
3536
3537   popupMgr()->insert( action( 6005 ), anId, -1 ); // FREE_NODE
3538   popupMgr()->setRule( action( 6005 ), aMeshInVtkHasNodes, QtxPopupMgr::VisibleRule );
3539   popupMgr()->setRule( action( 6005 ), "controlMode = 'eFreeNodes'", QtxPopupMgr::ToggleRule );
3540
3541   popupMgr()->insert( action( 6002 ), anId, -1 ); // FREE_EDGE
3542   popupMgr()->setRule( action( 6002 ), aMeshInVtkHasEdges, QtxPopupMgr::VisibleRule );
3543   popupMgr()->setRule( action( 6002 ), "controlMode = 'eFreeEdges'", QtxPopupMgr::ToggleRule );
3544
3545   popupMgr()->insert( action( 6018 ), anId, -1 ); // LENGTH_2D
3546   popupMgr()->setRule( action( 6018 ), aMeshInVtkHasFaces, QtxPopupMgr::VisibleRule );
3547   popupMgr()->setRule( action( 6018 ), "controlMode = 'eLength2D'", QtxPopupMgr::ToggleRule );
3548
3549   popupMgr()->insert( action( 6019 ), anId, -1 ); // CONNECTION_2D
3550   popupMgr()->setRule( action( 6019 ), aMeshInVtkHasFaces, QtxPopupMgr::VisibleRule );
3551   popupMgr()->setRule( action( 6019 ), "controlMode = 'eMultiConnection2D'", QtxPopupMgr::ToggleRule );
3552
3553   popupMgr()->insert( action( 6011 ), anId, -1 ); // AREA
3554   popupMgr()->setRule( action( 6011 ), aMeshInVtkHasFaces, QtxPopupMgr::VisibleRule );
3555   popupMgr()->setRule( action( 6011 ), "controlMode = 'eArea'", QtxPopupMgr::ToggleRule );
3556
3557   popupMgr()->insert( action( 6012 ), anId, -1 ); // TAPER
3558   popupMgr()->setRule( action( 6012 ), aMeshInVtkHasFaces, QtxPopupMgr::VisibleRule );
3559   popupMgr()->setRule( action( 6012 ), "controlMode = 'eTaper'", QtxPopupMgr::ToggleRule );
3560
3561   popupMgr()->insert( action( 6013 ), anId, -1 ); // ASPECT
3562   popupMgr()->setRule( action( 6013 ), aMeshInVtkHasFaces, QtxPopupMgr::VisibleRule );
3563   popupMgr()->setRule( action( 6013 ), "controlMode = 'eAspectRatio'", QtxPopupMgr::ToggleRule );
3564
3565   popupMgr()->insert( action( 6014 ), anId, -1 ); // MIN_ANG
3566   popupMgr()->setRule( action( 6014 ), aMeshInVtkHasFaces, QtxPopupMgr::VisibleRule );
3567   popupMgr()->setRule( action( 6014 ), "controlMode = 'eMinimumAngle'", QtxPopupMgr::ToggleRule );
3568
3569   popupMgr()->insert( action( 6015 ), anId, -1 ); // WARP
3570   popupMgr()->setRule( action( 6015 ), aMeshInVtkHasFaces, QtxPopupMgr::VisibleRule );
3571   popupMgr()->setRule( action( 6015 ), "controlMode = 'eWarping'", QtxPopupMgr::ToggleRule );
3572
3573   popupMgr()->insert( action( 6016 ), anId, -1 ); // SKEW
3574   popupMgr()->setRule( action( 6016 ), aMeshInVtkHasFaces, QtxPopupMgr::VisibleRule );
3575   popupMgr()->setRule( action( 6016 ), "controlMode = 'eSkew'", QtxPopupMgr::ToggleRule );
3576
3577   popupMgr()->insert( separator(), anId, -1 );
3578
3579   popupMgr()->insert( action( 6017 ), anId, -1 ); // ASPECT_3D
3580   popupMgr()->setRule( action( 6017 ), aMeshInVtkHasVolumes, QtxPopupMgr::VisibleRule );
3581   popupMgr()->setRule( action( 6017 ), "controlMode = 'eAspectRatio3D'", QtxPopupMgr::ToggleRule );
3582
3583   popupMgr()->insert ( action( 6009 ), anId, -1 ); // VOLUME_3D
3584   popupMgr()->setRule( action( 6009 ), aMeshInVtkHasVolumes, QtxPopupMgr::VisibleRule );
3585   popupMgr()->setRule( action( 6009 ), "controlMode = 'eVolume3D'", QtxPopupMgr::ToggleRule );
3586
3587   popupMgr()->insert( action( 6021 ), anId, -1 ); // FREE_FACE
3588   popupMgr()->setRule( action( 6021 ), aMeshInVtkHasFaces /*aMeshInVtkHasVolumes*/,
3589                                        QtxPopupMgr::VisibleRule );
3590   popupMgr()->setRule( action( 6021 ), "controlMode = 'eFreeFaces'", QtxPopupMgr::ToggleRule );
3591
3592   popupMgr()->insert( separator(), anId, -1 );
3593
3594   popupMgr()->insert( action( 201 ), anId, -1 ); // SCALAR_BAR_PROP
3595   popupMgr()->setRule( action( 201 ), aMeshInVTK + "&& controlMode <> 'eNone'", QtxPopupMgr::VisibleRule );
3596
3597   popupMgr()->insert( separator(), -1, -1 );
3598   
3599   //-------------------------------------------------
3600   // Display / Erase
3601   //-------------------------------------------------
3602   QString aRule = "$component={'SMESH'} and ( type='Component' or (" + aClient + " and " +
3603     aType + " and " + aSelCount + " and " + anActiveVTK + " and " + isNotEmpty + " %1 ) )";
3604   popupMgr()->insert( action( 301 ), -1, -1 ); // DISPLAY
3605   popupMgr()->setRule( action( 301 ), aRule.arg( "and (not isVisible)" ), QtxPopupMgr::VisibleRule );
3606
3607   popupMgr()->insert( action( 300 ), -1, -1 ); // ERASE
3608   popupMgr()->setRule( action( 300 ), aRule.arg( "and isVisible" ), QtxPopupMgr::VisibleRule );
3609
3610   popupMgr()->insert( action( 302 ), -1, -1 ); // DISPLAY_ONLY
3611   popupMgr()->setRule( action( 302 ), aRule.arg( "" ), QtxPopupMgr::VisibleRule );
3612
3613   popupMgr()->insert( separator(), -1, -1 );
3614
3615   connect( application(), SIGNAL( viewManagerActivated( SUIT_ViewManager* ) ),
3616            this, SLOT( onViewManagerActivated( SUIT_ViewManager* ) ) );
3617 }
3618
3619 //================================================================================
3620 /*!
3621  * \brief Return true if SMESH or GEOM objects are selected.
3622  * Is called form LightApp_Module::activateModule() which clear selection if
3623  * not isSelectionCompatible()
3624  */
3625 //================================================================================
3626
3627 bool SMESHGUI::isSelectionCompatible()
3628 {
3629   bool isCompatible = true;
3630   SALOME_ListIO selected;
3631   if ( LightApp_SelectionMgr *Sel = selectionMgr() )
3632     Sel->selectedObjects( selected );
3633
3634   SALOME_ListIteratorOfListIO It( selected );
3635   for ( ; isCompatible && It.More(); It.Next())
3636     isCompatible =
3637       ( strcmp("GEOM", It.Value()->getComponentDataType()) == 0 ) ||
3638       ( strcmp("SMESH", It.Value()->getComponentDataType()) == 0 );
3639
3640   return isCompatible;
3641 }
3642
3643
3644 bool SMESHGUI::reusableOperation( const int id )
3645 {
3646   // compute, evaluate and precompute are not reusable operations
3647   return ( id == 701 || id == 711 || id == 712 ) ? false : SalomeApp_Module::reusableOperation( id );
3648
3649
3650 bool SMESHGUI::activateModule( SUIT_Study* study )
3651 {
3652   bool res = SalomeApp_Module::activateModule( study );
3653
3654   setMenuShown( true );
3655   setToolShown( true );
3656
3657   // Reset actions accelerator keys
3658   action(111)->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_B)); // Import DAT
3659   action(112)->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_U)); // Import UNV
3660   action(113)->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_M)); // Import MED
3661
3662   action(  33)->setEnabled(true); // Delete: Key_Delete
3663   action(1101)->setEnabled(true); // Rename: Key_F2
3664
3665   //  0020210. Make SMESH_Gen update meshes at switching GEOM->SMESH
3666   GetSMESHGen()->SetCurrentStudy(SALOMEDS::Study::_nil());
3667   if ( SalomeApp_Study* s = dynamic_cast<SalomeApp_Study*>( study ))
3668     if ( _PTR(Study) aStudy = s->studyDS()) {
3669       GetSMESHGen()->SetCurrentStudy( _CAST(Study,aStudy)->GetStudy() );
3670       updateObjBrowser(); // objects can be removed
3671     }
3672
3673   return res;
3674 }
3675
3676 bool SMESHGUI::deactivateModule( SUIT_Study* study )
3677 {
3678   setMenuShown( false );
3679   setToolShown( false );
3680
3681   EmitSignalCloseAllDialogs();
3682
3683   // Unset actions accelerator keys
3684   action(111)->setShortcut(QKeySequence()); // Import DAT
3685   action(112)->setShortcut(QKeySequence()); // Import UNV
3686   action(113)->setShortcut(QKeySequence()); // Import MED
3687
3688   action(  33)->setEnabled(false); // Delete: Key_Delete
3689   action(1101)->setEnabled(false); // Rename: Key_F2
3690
3691   return SalomeApp_Module::deactivateModule( study );
3692 }
3693
3694 void SMESHGUI::studyClosed( SUIT_Study* s )
3695 {
3696   SMESH::RemoveVisuData( s->id() );
3697   SalomeApp_Module::studyClosed( s );
3698 }
3699
3700 void SMESHGUI::OnGUIEvent()
3701 {
3702   const QObject* obj = sender();
3703   if ( !obj || !obj->inherits( "QAction" ) )
3704     return;
3705   int id = actionId((QAction*)obj);
3706   if ( id != -1 )
3707     OnGUIEvent( id );
3708 }
3709
3710 SMESH::SMESH_Gen_var SMESHGUI::GetSMESHGen()
3711 {
3712   _PTR(Study) aStudy = SMESH::GetActiveStudyDocument(); //Document OCAF de l'etude active
3713   if ( CORBA::is_nil( myComponentSMESH ) )
3714     {
3715       SMESHGUI aGUI; //SRN BugID: IPAL9186: Create an instance of SMESHGUI to initialize myComponentSMESH
3716       if ( aStudy )
3717         aGUI.myComponentSMESH->SetCurrentStudy(_CAST(Study,aStudy)->GetStudy());
3718       return aGUI.myComponentSMESH;
3719     }
3720   if ( aStudy )
3721     myComponentSMESH->SetCurrentStudy(_CAST(Study,aStudy)->GetStudy());
3722   return myComponentSMESH;
3723 }
3724
3725 QString SMESHGUI::engineIOR() const
3726 {
3727   CORBA::ORB_var anORB = getApp()->orb();
3728   CORBA::String_var anIOR = anORB->object_to_string(GetSMESHGen());
3729   return QString( anIOR.in() );
3730 }
3731
3732 void SMESHGUI::contextMenuPopup( const QString& client, QMenu* menu, QString& title )
3733 {
3734   SalomeApp_Module::contextMenuPopup( client, menu, title );
3735   SALOME_ListIO lst;
3736   selectionMgr()->selectedObjects( lst );
3737   if ( ( client == "OCCViewer" || client == "VTKViewer" ) && lst.Extent() == 1 ) {
3738     Handle(SALOME_InteractiveObject) io = lst.First();
3739     SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( application()->activeStudy() );
3740     _PTR(Study) study = appStudy->studyDS();
3741     _PTR(SObject) obj = study->FindObjectID( io->getEntry() );
3742     if ( obj ) {
3743       QString aName = QString( obj->GetName().c_str() );
3744       while ( aName.at( aName.length() - 1 ) == ' ' ) // Remove extraspaces in Name of Popup
3745           aName.remove( (aName.length() - 1), 1 );
3746       title = aName;
3747     }
3748   }
3749 }
3750
3751 LightApp_Selection* SMESHGUI::createSelection() const
3752 {
3753   return new SMESHGUI_Selection();
3754 }
3755
3756 void SMESHGUI::windows( QMap<int, int>& aMap ) const
3757 {
3758   aMap.insert( SalomeApp_Application::WT_ObjectBrowser, Qt::LeftDockWidgetArea );
3759   aMap.insert( SalomeApp_Application::WT_PyConsole, Qt::BottomDockWidgetArea );
3760 }
3761
3762 void SMESHGUI::viewManagers( QStringList& list ) const
3763 {
3764   list.append( SVTK_Viewer::Type() );
3765 }
3766
3767 void SMESHGUI::onViewManagerActivated( SUIT_ViewManager* mgr )
3768 {
3769   if ( dynamic_cast<SVTK_ViewManager*>( mgr ) )
3770     SMESH::UpdateSelectionProp( this );
3771 }
3772
3773 void SMESHGUI::createPreferences()
3774 {
3775   // General tab ------------------------------------------------------------------------
3776   int genTab = addPreference( tr( "PREF_TAB_GENERAL" ) );
3777
3778   int updateGroup = addPreference( tr( "PREF_GROUP_UPDATE" ), genTab );
3779   addPreference( tr( "PREF_AUTO_UPDATE" ), updateGroup, LightApp_Preferences::Bool, "SMESH", "auto_update" );
3780
3781   int qaGroup = addPreference( tr( "PREF_GROUP_QUALITY" ), genTab );
3782   setPreferenceProperty( qaGroup, "columns", 2 );
3783   addPreference( tr( "PREF_DISPLAY_ENTITY" ), qaGroup, LightApp_Preferences::Bool, "SMESH", "display_entity" );
3784   addPreference( tr( "PREF_PRECISION_USE" ), qaGroup, LightApp_Preferences::Bool, "SMESH", "use_precision" );
3785   int prec = addPreference( tr( "PREF_PRECISION_VALUE" ), qaGroup, LightApp_Preferences::IntSpin, "SMESH", "controls_precision" );
3786   setPreferenceProperty( prec, "min", 0 );
3787   setPreferenceProperty( prec, "max", 16 );
3788
3789   int dispgroup = addPreference( tr( "PREF_DISPLAY_MODE" ), genTab );
3790   setPreferenceProperty( dispgroup, "columns", 2 );
3791   int dispmode = addPreference( tr( "PREF_DISPLAY_MODE" ), dispgroup, LightApp_Preferences::Selector, "SMESH", "display_mode" );
3792   QStringList modes;
3793   modes.append( "Wireframe" );
3794   modes.append( "Shading" );
3795   modes.append( "Nodes" );
3796   modes.append( "Shrink" );
3797   QList<QVariant> indices;
3798   indices.append( 0 );
3799   indices.append( 1 );
3800   indices.append( 2 );
3801   indices.append( 3 );
3802   setPreferenceProperty( dispmode, "strings", modes );
3803   setPreferenceProperty( dispmode, "indexes", indices );
3804
3805   int arcgroup = addPreference( tr( "QUADRATIC_REPRESENT_MODE" ), genTab );
3806   setPreferenceProperty( arcgroup, "columns", 2 );
3807   int quadraticmode = addPreference( tr( "QUADRATIC_REPRESENT_MODE" ), arcgroup, LightApp_Preferences::Selector, "SMESH", "quadratic_mode" );
3808   QStringList quadraticModes;
3809   quadraticModes.append("Lines");
3810   quadraticModes.append("Arcs");
3811   indices.clear();
3812   indices.append( 0 );
3813   indices.append( 1 );
3814   setPreferenceProperty( quadraticmode, "strings", quadraticModes );
3815   setPreferenceProperty( quadraticmode, "indexes", indices );
3816
3817   int maxAngle = addPreference( tr( "MAX_ARC_ANGLE" ), arcgroup, LightApp_Preferences::IntSpin,
3818                               "SMESH", "max_angle" );
3819   setPreferenceProperty( maxAngle, "min", 1 );
3820   setPreferenceProperty( maxAngle, "max", 90 );
3821   
3822   
3823
3824   int exportgroup = addPreference( tr( "PREF_GROUP_EXPORT" ), genTab );
3825   setPreferenceProperty( exportgroup, "columns", 2 );
3826   addPreference( tr( "PREF_AUTO_GROUPS" ), exportgroup, LightApp_Preferences::Bool, "SMESH", "auto_groups" );
3827   addPreference( tr( "PREF_RENUMBER" ), exportgroup, LightApp_Preferences::Bool, "SMESH", "renumbering" );
3828
3829   int computeGroup = addPreference( tr( "PREF_GROUP_COMPUTE" ), genTab );
3830   setPreferenceProperty( computeGroup, "columns", 2 );
3831   int notifyMode = addPreference( tr( "PREF_NOTIFY_MODE" ), computeGroup, LightApp_Preferences::Selector, "SMESH", "show_result_notification" );
3832   modes.clear();
3833   modes.append( "Never" );
3834   modes.append( "Errors only" );
3835   modes.append( "Always" );
3836   indices.clear();
3837   indices.append( 0 );
3838   indices.append( 1 );
3839   indices.append( 2 );
3840   setPreferenceProperty( notifyMode, "strings", modes );
3841   setPreferenceProperty( notifyMode, "indexes", indices );
3842
3843   int segGroup = addPreference( tr( "PREF_GROUP_SEGMENT_LENGTH" ), genTab );
3844   setPreferenceProperty( segGroup, "columns", 2 );
3845   int segLen = addPreference( tr( "PREF_SEGMENT_LENGTH" ), segGroup, LightApp_Preferences::IntSpin,
3846                               "SMESH", "segmentation" );
3847   setPreferenceProperty( segLen, "min", 1 );
3848   setPreferenceProperty( segLen, "max", 10000000 );
3849   int nbSeg = addPreference( tr( "PREF_NB_SEGMENTS" ), segGroup, LightApp_Preferences::IntSpin,
3850                              "SMESH", "nb_segments_per_edge" );
3851   setPreferenceProperty( nbSeg, "min", 1 );
3852   setPreferenceProperty( nbSeg, "max", 10000000 );
3853   
3854   // Quantities with individual precision settings
3855   int precGroup = addPreference( tr( "SMESH_PREF_GROUP_PRECISION" ), genTab );
3856   setPreferenceProperty( precGroup, "columns", 2 );
3857   
3858   const int nbQuantities = 6;
3859   int precs[nbQuantities], ii = 0;
3860   precs[ii++] = addPreference( tr( "SMESH_PREF_length_precision" ), precGroup,
3861                             LightApp_Preferences::IntSpin, "SMESH", "length_precision" );  
3862   precs[ii++] = addPreference( tr( "SMESH_PREF_angle_precision" ), precGroup,
3863                             LightApp_Preferences::IntSpin, "SMESH", "angle_precision" );
3864   precs[ii++] = addPreference( tr( "SMESH_PREF_len_tol_precision" ), precGroup,
3865                             LightApp_Preferences::IntSpin, "SMESH", "len_tol_precision" );
3866   precs[ii++] = addPreference( tr( "SMESH_PREF_parametric_precision" ), precGroup,
3867                             LightApp_Preferences::IntSpin, "SMESH", "parametric_precision" );
3868   precs[ii++] = addPreference( tr( "SMESH_PREF_area_precision" ), precGroup,
3869                             LightApp_Preferences::IntSpin, "SMESH", "area_precision" );
3870   precs[ii  ] = addPreference( tr( "SMESH_PREF_vol_precision" ), precGroup,
3871                             LightApp_Preferences::IntSpin, "SMESH", "vol_precision" );  
3872   
3873   // Set property for precision value for spinboxes
3874   for ( ii = 0; ii < nbQuantities; ii++ ){
3875     setPreferenceProperty( precs[ii], "min", -14 );
3876     setPreferenceProperty( precs[ii], "max", 14 );
3877     setPreferenceProperty( precs[ii], "precision", 2 );
3878   }   
3879
3880   // Mesh tab ------------------------------------------------------------------------
3881   int meshTab = addPreference( tr( "PREF_TAB_MESH" ) );
3882   int nodeGroup = addPreference( tr( "PREF_GROUP_NODES" ), meshTab );
3883   setPreferenceProperty( nodeGroup, "columns", 3 );
3884
3885   addPreference( tr( "PREF_COLOR" ), nodeGroup, LightApp_Preferences::Color, "SMESH", "node_color" );
3886
3887   int typeOfMarker = addPreference( tr( "PREF_TYPE_OF_MARKER" ), nodeGroup, LightApp_Preferences::Selector, "SMESH", "type_of_marker" );
3888
3889   SUIT_ResourceMgr* aResourceMgr = SMESH::GetResourceMgr(this);
3890   QList<QVariant> aMarkerTypeIndicesList;
3891   QList<QVariant> aMarkerTypeIconsList;
3892   for ( int i = VTK::MT_POINT; i < VTK::MT_USER; i++ ) {
3893     QString icoFile = QString( "ICON_VERTEX_MARKER_%1" ).arg( i );
3894     QPixmap pixmap = aResourceMgr->loadPixmap( "VTKViewer", tr( qPrintable( icoFile ) ) );
3895     aMarkerTypeIndicesList << i;
3896     aMarkerTypeIconsList << pixmap;
3897   }
3898   setPreferenceProperty( typeOfMarker, "indexes", aMarkerTypeIndicesList );
3899   setPreferenceProperty( typeOfMarker, "icons",   aMarkerTypeIconsList );
3900
3901   int markerScale = addPreference( tr( "PREF_MARKER_SCALE" ), nodeGroup, LightApp_Preferences::Selector, "SMESH", "marker_scale" );
3902
3903   QList<QVariant> aMarkerScaleIndicesList;
3904   QStringList     aMarkerScaleValuesList;
3905   for ( int i = VTK::MS_10; i <= VTK::MS_70; i++ ) {
3906     aMarkerScaleIndicesList << i;
3907     aMarkerScaleValuesList  << QString::number( (i-(int)VTK::MS_10)*0.5 + 1.0 );
3908   }
3909   setPreferenceProperty( markerScale, "strings", aMarkerScaleValuesList );
3910   setPreferenceProperty( markerScale, "indexes", aMarkerScaleIndicesList );
3911
3912   int elemGroup = addPreference( tr( "PREF_GROUP_ELEMENTS" ), meshTab );
3913   setPreferenceProperty( elemGroup, "columns", 2 );
3914
3915   addPreference( tr( "PREF_FILL"     ), elemGroup, LightApp_Preferences::Color, "SMESH", "fill_color" );
3916   addPreference( tr( "PREF_OUTLINE"  ), elemGroup, LightApp_Preferences::Color, "SMESH", "outline_color" );
3917   addPreference( tr( "PREF_BACKFACE" ), elemGroup, LightApp_Preferences::Color, "SMESH", "backface_color" );
3918   addPreference( tr( "PREF_COLOR_0D" ), elemGroup, LightApp_Preferences::Color, "SMESH", "elem0d_color" );
3919
3920   //int sp = addPreference( "", elemGroup, LightApp_Preferences::Space );
3921   //setPreferenceProperty( sp, "hstretch", 0 );
3922   //setPreferenceProperty( sp, "vstretch", 0 );
3923
3924   int size0d = addPreference(tr("PREF_SIZE_0D"), elemGroup,
3925                              LightApp_Preferences::IntSpin, "SMESH", "elem0d_size");
3926   int sp = addPreference( "", elemGroup, LightApp_Preferences::Space );
3927   int elemW  = addPreference(tr("PREF_WIDTH"), elemGroup,
3928                              LightApp_Preferences::IntSpin, "SMESH", "element_width");
3929   int shrink = addPreference(tr("PREF_SHRINK_COEFF"), elemGroup,
3930                              LightApp_Preferences::IntSpin, "SMESH", "shrink_coeff");
3931
3932   setPreferenceProperty( size0d, "min", 1 );
3933   setPreferenceProperty( size0d, "max", 10 );
3934
3935   setPreferenceProperty( sp, "hstretch", 0 );
3936   setPreferenceProperty( sp, "vstretch", 0 );
3937
3938   setPreferenceProperty( elemW, "min", 1 );
3939   setPreferenceProperty( elemW, "max", 5 );
3940
3941   setPreferenceProperty( shrink, "min", 0 );
3942   setPreferenceProperty( shrink, "max", 100 );
3943
3944   int orientGroup = addPreference( tr( "PREF_GROUP_FACES_ORIENTATION" ), meshTab );
3945   setPreferenceProperty( orientGroup, "columns", 1 );
3946
3947   addPreference( tr( "PREF_ORIENTATION_COLOR" ), orientGroup, LightApp_Preferences::Color, "SMESH", "orientation_color" );
3948   int orientScale = addPreference( tr( "PREF_ORIENTATION_SCALE" ), orientGroup, LightApp_Preferences::DblSpin, "SMESH", "orientation_scale" );
3949
3950   setPreferenceProperty( orientScale, "min", 0.05 );
3951   setPreferenceProperty( orientScale, "max", 0.5 );
3952   setPreferenceProperty( orientScale, "step", 0.05 );
3953
3954   addPreference( tr( "PREF_ORIENTATION_3D_VECTORS" ), orientGroup, LightApp_Preferences::Bool, "SMESH", "orientation_3d_vectors" );
3955
3956   // Selection tab ------------------------------------------------------------------------
3957   int selTab = addPreference( tr( "PREF_TAB_SELECTION" ) );
3958
3959   int selGroup = addPreference( tr( "PREF_GROUP_SELECTION" ), selTab );
3960   setPreferenceProperty( selGroup, "columns", 2 );
3961
3962   addPreference( tr( "PREF_OBJECT_COLOR" ), selGroup, LightApp_Preferences::Color, "SMESH", "selection_object_color" );
3963   addPreference( tr( "PREF_ELEMENT_COLOR" ), selGroup, LightApp_Preferences::Color, "SMESH", "selection_element_color" );
3964   int selW = addPreference( tr( "PREF_WIDTH" ), selGroup, LightApp_Preferences::IntSpin, "SMESH", "selection_width" );
3965
3966   setPreferenceProperty( selW, "min", 1 );
3967   setPreferenceProperty( selW, "max", 5 );
3968
3969   int preGroup = addPreference( tr( "PREF_GROUP_PRESELECTION" ), selTab );
3970   setPreferenceProperty( preGroup, "columns", 2 );
3971
3972   addPreference( tr( "PREF_HIGHLIGHT_COLOR" ), preGroup, LightApp_Preferences::Color, "SMESH", "highlight_color" );
3973   int preW = addPreference( tr( "PREF_WIDTH" ), preGroup, LightApp_Preferences::IntSpin, "SMESH", "highlight_width" );
3974
3975   setPreferenceProperty( preW, "min", 1 );
3976   setPreferenceProperty( preW, "max", 5 );
3977
3978   int precSelGroup = addPreference( tr( "PREF_GROUP_PRECISION" ), selTab );
3979   setPreferenceProperty( precSelGroup, "columns", 2 );
3980
3981   addPreference( tr( "PREF_NODES" ), precSelGroup, LightApp_Preferences::Double, "SMESH", "selection_precision_node" );
3982   addPreference( tr( "PREF_ELEMENTS" ), precSelGroup, LightApp_Preferences::Double, "SMESH", "selection_precision_element" );
3983   addPreference( tr( "PREF_OBJECTS" ), precSelGroup, LightApp_Preferences::Double, "SMESH", "selection_precision_object" );
3984
3985   // Scalar Bar tab ------------------------------------------------------------------------
3986   int sbarTab = addPreference( tr( "SMESH_SCALARBAR" ) );
3987   int fontGr = addPreference( tr( "SMESH_FONT_SCALARBAR" ), sbarTab );
3988   setPreferenceProperty( fontGr, "columns", 2 );
3989
3990   addVtkFontPref( tr( "SMESH_TITLE" ), fontGr, "scalar_bar_title_font" );
3991   addPreference( tr( "PREF_TITLE_COLOR" ), fontGr, LightApp_Preferences::Color, "SMESH", "scalar_bar_title_color" );
3992
3993   addVtkFontPref( tr( "SMESH_LABELS" ), fontGr, "scalar_bar_label_font" );
3994   addPreference( tr( "PREF_LABELS_COLOR" ), fontGr, LightApp_Preferences::Color, "SMESH", "scalar_bar_label_color" );
3995
3996   int colorsLabelsGr = addPreference( tr( "SMESH_LABELS_COLORS_SCALARBAR" ), sbarTab );
3997   setPreferenceProperty( colorsLabelsGr, "columns", 2 );
3998
3999   int numcol = addPreference( tr( "SMESH_NUMBEROFCOLORS" ), colorsLabelsGr, LightApp_Preferences::IntSpin, "SMESH", "scalar_bar_num_colors" );
4000   setPreferenceProperty( numcol, "min", 2 );
4001   setPreferenceProperty( numcol, "max", 256 );
4002
4003   int numlab = addPreference( tr( "SMESH_NUMBEROFLABELS" ), colorsLabelsGr, LightApp_Preferences::IntSpin, "SMESH", "scalar_bar_num_labels" );
4004   setPreferenceProperty( numlab, "min", 2 );
4005   setPreferenceProperty( numlab, "max", 65 );
4006
4007   int orientGr = addPreference( tr( "SMESH_ORIENTATION" ), sbarTab );
4008   setPreferenceProperty( orientGr, "columns", 2 );
4009   int orient = addPreference( tr( "SMESH_ORIENTATION" ), orientGr, LightApp_Preferences::Selector, "SMESH", "scalar_bar_orientation" );
4010   QStringList orients;
4011   orients.append( tr( "SMESH_VERTICAL" ) );
4012   orients.append( tr( "SMESH_HORIZONTAL" ) );
4013   indices.clear(); indices.append( 0 ); indices.append( 1 );
4014   setPreferenceProperty( orient, "strings", orients );
4015   setPreferenceProperty( orient, "indexes", indices );
4016
4017   int posVSizeGr = addPreference( tr( "SMESH_POSITION_SIZE_SCALARBAR" ) + " " + tr( "SMESH_VERTICAL" ), sbarTab );
4018   setPreferenceProperty( posVSizeGr, "columns", 2 );
4019   int xv = addPreference( tr( "SMESH_X_SCALARBAR" ), posVSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_vertical_x" );
4020   int yv = addPreference( tr( "SMESH_Y_SCALARBAR" ), posVSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_vertical_y" );
4021   int wv = addPreference( tr( "SMESH_WIDTH" ), posVSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_vertical_width" );
4022   int hv = addPreference( tr( "SMESH_HEIGHT" ), posVSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_vertical_height" );
4023   setPreferenceProperty( xv, "step", 0.1 );
4024   setPreferenceProperty( xv, "min", 0.0 );
4025   setPreferenceProperty( xv, "max", 1.0 );
4026   setPreferenceProperty( yv, "step", 0.1 );
4027   setPreferenceProperty( yv, "min", 0.0 );
4028   setPreferenceProperty( yv, "max", 1.0 );
4029   setPreferenceProperty( wv, "step", 0.1 );
4030   setPreferenceProperty( wv, "min", 0.0 );
4031   setPreferenceProperty( wv, "max", 1.0 );
4032   setPreferenceProperty( hv, "min", 0.0 );
4033   setPreferenceProperty( hv, "max", 1.0 );
4034   setPreferenceProperty( hv, "step", 0.1 );
4035
4036   int posHSizeGr = addPreference( tr( "SMESH_POSITION_SIZE_SCALARBAR" ) + " " + tr( "SMESH_HORIZONTAL" ), sbarTab );
4037   setPreferenceProperty( posHSizeGr, "columns", 2 );
4038   int xh = addPreference( tr( "SMESH_X_SCALARBAR" ), posHSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_horizontal_x" );
4039   int yh = addPreference( tr( "SMESH_Y_SCALARBAR" ), posHSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_horizontal_y" );
4040   int wh = addPreference( tr( "SMESH_WIDTH" ), posHSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_horizontal_width" );
4041   int hh = addPreference( tr( "SMESH_HEIGHT" ), posHSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_horizontal_height" );
4042   setPreferenceProperty( xv, "min", 0.0 );
4043   setPreferenceProperty( xv, "max", 1.0 );
4044   setPreferenceProperty( xv, "step", 0.1 );
4045   setPreferenceProperty( xh, "min", 0.0 );
4046   setPreferenceProperty( xh, "max", 1.0 );
4047   setPreferenceProperty( xh, "step", 0.1 );
4048   setPreferenceProperty( yh, "min", 0.0 );
4049   setPreferenceProperty( yh, "max", 1.0 );
4050   setPreferenceProperty( yh, "step", 0.1 );
4051   setPreferenceProperty( wh, "min", 0.0 );
4052   setPreferenceProperty( wh, "max", 1.0 );
4053   setPreferenceProperty( wh, "step", 0.1 );
4054   setPreferenceProperty( hh, "min", 0.0 );
4055   setPreferenceProperty( hh, "max", 1.0 );
4056   setPreferenceProperty( hh, "step", 0.1 );
4057 }
4058
4059 void SMESHGUI::preferencesChanged( const QString& sect, const QString& name )
4060 {
4061   if( sect=="SMESH" ) {
4062     float sbX1,sbY1,sbW,sbH;
4063     float aTol = 1.00000009999999;
4064     std::string aWarning;
4065     SUIT_ResourceMgr* aResourceMgr = SMESH::GetResourceMgr(this);
4066     if( name=="selection_object_color" || name=="selection_element_color" ||
4067         name=="selection_width" || name=="highlight_color" || name=="highlight_width" ||
4068         name=="selection_precision_node" || name=="selection_precision_element" ||
4069         name=="selection_precision_object")
4070       SMESH::UpdateSelectionProp( this );
4071     else if (name == QString("scalar_bar_vertical_x") || name == QString("scalar_bar_vertical_width")){
4072       sbX1 = aResourceMgr->doubleValue("SMESH", "scalar_bar_vertical_x", sbX1);
4073       sbW = aResourceMgr->doubleValue("SMESH", "scalar_bar_vertical_width", sbW);
4074       if(sbX1+sbW > aTol){
4075         aWarning = "Origin and Size Vertical: X+Width > 1\n";
4076         sbX1=0.01;
4077         sbW=0.08;
4078         aResourceMgr->setValue("SMESH", "scalar_bar_vertical_x", sbX1);
4079         aResourceMgr->setValue("SMESH", "scalar_bar_vertical_width", sbW);
4080       }
4081     }
4082     else if(name == QString("scalar_bar_vertical_y") || name == QString("scalar_bar_vertical_height")){
4083       sbY1 = aResourceMgr->doubleValue("SMESH", "scalar_bar_vertical_y", sbY1);
4084       sbH = aResourceMgr->doubleValue("SMESH", "scalar_bar_vertical_height",sbH);
4085       if(sbY1+sbH > aTol){
4086         aWarning = "Origin and Size Vertical: Y+Height > 1\n";
4087         aResourceMgr->setValue("SMESH", "scalar_bar_vertical_y", sbY1);
4088         aResourceMgr->setValue("SMESH", "scalar_bar_vertical_height",sbH);
4089       }
4090     }
4091     else if(name ==  QString("scalar_bar_horizontal_x") || name ==  QString("scalar_bar_horizontal_width")){
4092       sbX1 = aResourceMgr->doubleValue("SMESH", "scalar_bar_horizontal_x", sbX1);
4093       sbW = aResourceMgr->doubleValue("SMESH", "scalar_bar_horizontal_width", sbW);
4094       if(sbX1+sbW > aTol){
4095         aWarning = "Origin and Size Horizontal: X+Width > 1\n";
4096         sbX1=0.1;
4097         sbW=0.08;
4098         aResourceMgr->setValue("SMESH", "scalar_bar_horizontal_x", sbX1);
4099         aResourceMgr->setValue("SMESH", "scalar_bar_horizontal_width", sbW);
4100       }
4101     }
4102     else if(name ==  QString("scalar_bar_horizontal_y") || name ==  QString("scalar_bar_horizontal_height")){
4103       sbY1 = aResourceMgr->doubleValue("SMESH", "scalar_bar_horizontal_y", sbY1);
4104       sbH = aResourceMgr->doubleValue("SMESH", "scalar_bar_horizontal_height",sbH);
4105       if(sbY1+sbH > aTol){
4106         aWarning = "Origin and Size Horizontal: Y+Height > 1\n";
4107         sbY1=0.01;
4108         sbH=0.08;
4109         aResourceMgr->setValue("SMESH", "scalar_bar_horizontal_y", sbY1);
4110         aResourceMgr->setValue("SMESH", "scalar_bar_horizontal_height",sbH);
4111       }
4112     }
4113     else if ( name == "segmentation" ) {
4114       int nbSeg = aResourceMgr->integerValue( "SMESH", "segmentation", 10 );
4115       myComponentSMESH->SetBoundaryBoxSegmentation( nbSeg );
4116     }
4117     else if ( name == "nb_segments_per_edge" ) {
4118       int nbSeg = aResourceMgr->integerValue( "SMESH", "nb_segments_per_edge", 15 );
4119       myComponentSMESH->SetDefaultNbSegments( nbSeg );
4120     }
4121
4122     if(aWarning.size() != 0){
4123       aWarning += "The default values are applied instead.";
4124       SUIT_MessageBox::warning(SMESHGUI::desktop(),
4125                                QObject::tr("SMESH_ERR_SCALARBAR_PARAMS"),
4126                                QObject::tr(aWarning.c_str()));
4127     }
4128   }
4129 }
4130
4131 //================================================================================
4132 /*!
4133  * \brief Update something in accordance with update flags
4134   * \param theFlags - update flags
4135 *
4136 * Update viewer or/and object browser etc. in accordance with update flags ( see
4137 * LightApp_UpdateFlags enumeration ).
4138 */
4139 //================================================================================
4140 void SMESHGUI::update( const int flags )
4141 {
4142   if ( flags & UF_Viewer | flags & UF_Forced )
4143     SMESH::UpdateView();
4144   else
4145     SalomeApp_Module::update( flags );
4146 }
4147
4148 //================================================================================
4149 /*!
4150  * \brief Set default selection mode
4151 *
4152 * SLOT called when operation commited. Sets default selection mode
4153 */
4154 //================================================================================
4155 void SMESHGUI::onOperationCommited( SUIT_Operation* )
4156 {
4157   SVTK_ViewWindow* vtkWnd =
4158     dynamic_cast<SVTK_ViewWindow*>( application()->desktop()->activeWindow() );
4159   if ( vtkWnd )
4160     vtkWnd->SetSelectionMode( ActorSelection );
4161 }
4162
4163 //================================================================================
4164 /*!
4165  * \brief Set default selection mode
4166 *
4167 * SLOT called when operation aborted. Sets default selection mode
4168 */
4169 //================================================================================
4170 void SMESHGUI::onOperationAborted( SUIT_Operation* )
4171 {
4172   SVTK_ViewWindow* vtkWnd =
4173     dynamic_cast<SVTK_ViewWindow*>( application()->desktop()->activeWindow() );
4174   if ( vtkWnd )
4175     vtkWnd->SetSelectionMode( ActorSelection );
4176 }
4177
4178 //================================================================================
4179 /*!
4180  * \brief Creates operation with given identifier
4181   * \param id - identifier of operation to be started
4182   * \return Pointer on created operation or NULL if operation is not created
4183 *
4184 * Virtual method redefined from the base class creates operation with given id.
4185 * It is called called automatically from startOperation method of base class.
4186 */
4187 //================================================================================
4188 LightApp_Operation* SMESHGUI::createOperation( const int id ) const
4189 {
4190   LightApp_Operation* op = 0;
4191   // to do : create operation here
4192   switch( id )
4193   {
4194     case 417: //convert to quadratic
4195       op = new SMESHGUI_ConvToQuadOp();
4196     break;
4197     case 418: // create 2D mesh as boundary on 3D
4198       op = new SMESHGUI_Make2DFrom3DOp();
4199     break;
4200     case 701: // Compute mesh
4201       op = new SMESHGUI_ComputeOp();
4202     break;
4203     case 702: // Create mesh
4204       op = new SMESHGUI_MeshOp( true, true );
4205     break;
4206     case 703: // Create sub-mesh
4207       op = new SMESHGUI_MeshOp( true, false );
4208     break;
4209     case 704: // Edit mesh/sub-mesh
4210       op = new SMESHGUI_MeshOp( false );
4211     break;
4212     case 711: // Precompute mesh
4213       op = new SMESHGUI_PrecomputeOp();
4214     break;
4215     case 712: // Evaluate mesh
4216       op = new SMESHGUI_EvaluateOp();
4217     break;
4218     case 713: // Evaluate mesh
4219       op = new SMESHGUI_MeshOrderOp();
4220     break;
4221     case 806: // Create group on geom
4222       op = new SMESHGUI_GroupOnShapeOp();
4223       break;
4224     case 904: // Find element
4225       op = new SMESHGUI_FindElemByPointOp();
4226       break;
4227     case 4067: // make mesh pass through point
4228       op = new SMESHGUI_MakeNodeAtPointOp();
4229       break;
4230     default:
4231     break;
4232   }
4233
4234   if( !op )
4235     op = SalomeApp_Module::createOperation( id );
4236   return op;
4237 }
4238
4239 //================================================================================
4240 /*!
4241  * \brief Stops current operations and starts a given one
4242   * \param id - The id of the operation to start
4243  */
4244 //================================================================================
4245
4246 void SMESHGUI::switchToOperation(int id)
4247 {
4248   if ( _PTR(Study) aStudy = SMESH::GetActiveStudyDocument() )
4249     activeStudy()->abortAllOperations();
4250   startOperation( id );
4251 }
4252
4253 LightApp_Displayer* SMESHGUI::displayer()
4254 {
4255   if( !myDisplayer )
4256     myDisplayer = new SMESHGUI_Displayer( getApp() );
4257   return myDisplayer;
4258 }
4259
4260 SALOMEDS::Color SMESHGUI::getUniqueColor( const QList<SALOMEDS::Color>& theReservedColors )
4261 {
4262   int aHue = -1;
4263   int aTolerance = 64;
4264   int anIterations = 0;
4265   int aPeriod = 5;
4266
4267   while( 1 )
4268   {
4269     anIterations++;
4270     if( anIterations % aPeriod == 0 )
4271     {
4272       aTolerance /= 2;
4273       if( aTolerance < 1 )
4274         break;
4275     }
4276     //cout << "Iteration N" << anIterations << " (tolerance=" << aTolerance << ")"<< endl;
4277
4278     aHue = (int)( 360.0 * rand() / RAND_MAX );
4279     //cout << "Hue = " << aHue << endl;
4280
4281     //cout << "Auto colors : ";
4282     bool ok = true;
4283     QList<SALOMEDS::Color>::const_iterator it = theReservedColors.constBegin();
4284     QList<SALOMEDS::Color>::const_iterator itEnd = theReservedColors.constEnd();
4285     for( ; it != itEnd; ++it )
4286     {
4287       SALOMEDS::Color anAutoColor = *it;
4288       QColor aQColor( (int)( anAutoColor.R * 255.0 ), (int)( anAutoColor.G * 255.0 ), (int)( anAutoColor.B * 255.0 ) );
4289
4290       int h, s, v;
4291       aQColor.getHsv( &h, &s, &v );
4292       //cout << h << " ";
4293       if( abs( h - aHue ) < aTolerance )
4294       {
4295         ok = false;
4296         //cout << "break (diff = " << abs( h - aHue ) << ")";
4297         break;
4298       }
4299     }
4300     //cout << endl;
4301
4302     if( ok )
4303       break;
4304   }
4305
4306   //cout << "Hue of the returned color = " << aHue << endl;
4307   QColor aColor;
4308   aColor.setHsv( aHue, 255, 255 );
4309
4310   SALOMEDS::Color aSColor;
4311   aSColor.R = (double)aColor.red() / 255.0;
4312   aSColor.G = (double)aColor.green() / 255.0;
4313   aSColor.B = (double)aColor.blue() / 255.0;
4314
4315   return aSColor;
4316 }
4317
4318 const char gSeparator = '_'; // character used to separate parameter names
4319 const char gDigitsSep = ':'; // character used to separate numeric parameter values (color = r:g:b)
4320 const char gPathSep   = '|'; // character used to separate paths
4321
4322 /*!
4323  * \brief Store visual parameters
4324  *
4325  * This method is called just before the study document is saved.
4326  * Store visual parameters in AttributeParameter attribue(s)
4327  */
4328 void SMESHGUI::storeVisualParameters (int savePoint)
4329 {
4330   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(application()->activeStudy());
4331   if (!appStudy || !appStudy->studyDS())
4332     return;
4333   _PTR(Study) studyDS = appStudy->studyDS();
4334
4335   // componentName is used for encoding of entries when storing them in IParameters
4336   std::string componentName = myComponentSMESH->ComponentDataType();
4337   //_PTR(SComponent) aSComponent = studyDS->FindComponent("SMESH");
4338   //if (!aSComponent) return;
4339
4340   // IParameters
4341   _PTR(AttributeParameter) ap = studyDS->GetModuleParameters("Interface Applicative",
4342                                                              componentName.c_str(),
4343                                                              savePoint);
4344   _PTR(IParameters) ip = ClientFactory::getIParameters(ap);
4345
4346   // store map of custom markers
4347   const VTK::MarkerMap& aMarkerMap = myMarkerMap[ studyDS->StudyId() ];
4348   if( !aMarkerMap.empty() )
4349   {
4350     VTK::MarkerMap::const_iterator anIter = aMarkerMap.begin();
4351     for( ; anIter != aMarkerMap.end(); anIter++ )
4352     {
4353       int anId = anIter->first;
4354       VTK::MarkerData aMarkerData = anIter->second;
4355       std::string aMarkerFileName = aMarkerData.first;
4356       VTK::MarkerTexture aMarkerTexture = aMarkerData.second;
4357       if( aMarkerTexture.size() < 3 )
4358         continue; // should contain at least width, height and the first value
4359
4360       QString aPropertyName( "texture" );
4361       aPropertyName += gSeparator;
4362       aPropertyName += QString::number( anId );
4363
4364       QString aPropertyValue = aMarkerFileName.c_str();
4365       aPropertyValue += gPathSep;
4366
4367       VTK::MarkerTexture::const_iterator aTextureIter = aMarkerTexture.begin();
4368       ushort aWidth = *aTextureIter++;
4369       ushort aHeight = *aTextureIter++;
4370       aPropertyValue += QString::number( aWidth ); aPropertyValue += gDigitsSep;
4371       aPropertyValue += QString::number( aHeight ); aPropertyValue += gDigitsSep;
4372       for( ; aTextureIter != aMarkerTexture.end(); aTextureIter++ )
4373         aPropertyValue += QString::number( *aTextureIter );
4374
4375       ip->setProperty( aPropertyName.toStdString(), aPropertyValue.toStdString() );
4376     }
4377   }
4378
4379   // viewers counters are used for storing view_numbers in IParameters
4380   int vtkViewers = 0;
4381
4382   // main cycle to store parameters of displayed objects
4383   QList<SUIT_ViewManager*> lst;
4384   QList<SUIT_ViewManager*>::Iterator it;
4385   getApp()->viewManagers(lst);
4386   for (it = lst.begin(); it != lst.end(); it++)
4387   {
4388     SUIT_ViewManager* vman = *it;
4389     QString vType = vman->getType();
4390
4391     // saving VTK actors properties
4392     if (vType == SVTK_Viewer::Type())
4393     {
4394       QVector<SUIT_ViewWindow*> views = vman->getViews();
4395       for (int i = 0, iEnd = vman->getViewsCount(); i < iEnd; i++)
4396       {
4397         if (SVTK_ViewWindow* vtkView = dynamic_cast<SVTK_ViewWindow*>(views[i]))
4398         {
4399           VTK::ActorCollectionCopy aCopy(vtkView->getRenderer()->GetActors());
4400           vtkActorCollection* allActors = aCopy.GetActors();
4401           allActors->InitTraversal();
4402           while (vtkActor* actor = allActors->GetNextActor())
4403           {
4404             if (actor->GetVisibility()) // store only visible actors
4405             {
4406               SMESH_Actor* aSmeshActor = 0;
4407               if (actor->IsA("SMESH_Actor"))
4408                 aSmeshActor = SMESH_Actor::SafeDownCast(actor);
4409               if (aSmeshActor && aSmeshActor->hasIO())
4410               {
4411                 Handle(SALOME_InteractiveObject) io = aSmeshActor->getIO();
4412                 if (io->hasEntry())
4413                 {
4414                   // entry is "encoded" = it does NOT contain component adress,
4415                   // since it is a subject to change on next component loading
4416                   std::string entry = ip->encodeEntry(io->getEntry(), componentName);
4417
4418                   std::string param, vtkParam = vType.toLatin1().data();
4419                   vtkParam += gSeparator;
4420                   vtkParam += QString::number(vtkViewers).toLatin1().data();
4421                   vtkParam += gSeparator;
4422
4423                   // Visibility
4424                   param = vtkParam + "Visibility";
4425                   ip->setParameter(entry, param, "On");
4426
4427                   // Representation
4428                   param = vtkParam + "Representation";
4429                   ip->setParameter(entry, param, QString::number
4430                                    ((int)aSmeshActor->GetRepresentation()).toLatin1().data());
4431
4432                   // IsShrunk
4433                   param = vtkParam + "IsShrunk";
4434                   ip->setParameter(entry, param, QString::number
4435                                    ((int)aSmeshActor->IsShrunk()).toLatin1().data());
4436
4437                   // Displayed entities
4438                   unsigned int aMode = aSmeshActor->GetEntityMode();
4439                   bool isE = aMode & SMESH_Actor::eEdges;
4440                   bool isF = aMode & SMESH_Actor::eFaces;
4441                   bool isV = aMode & SMESH_Actor::eVolumes;
4442
4443                   QString modeStr ("e");
4444                   modeStr += gDigitsSep; modeStr += QString::number(isE);
4445                   modeStr += gDigitsSep; modeStr += "f";
4446                   modeStr += gDigitsSep; modeStr += QString::number(isF);
4447                   modeStr += gDigitsSep; modeStr += "v";
4448                   modeStr += gDigitsSep; modeStr += QString::number(isV);
4449
4450                   param = vtkParam + "Entities";
4451                   ip->setParameter(entry, param, modeStr.toLatin1().data());
4452
4453                   // Colors (surface:edge:)
4454                   vtkFloatingPointType r, g, b;
4455
4456                   aSmeshActor->GetSufaceColor(r, g, b);
4457                   QString colorStr ("surface");
4458                   colorStr += gDigitsSep; colorStr += QString::number(r);
4459                   colorStr += gDigitsSep; colorStr += QString::number(g);
4460                   colorStr += gDigitsSep; colorStr += QString::number(b);
4461
4462                   aSmeshActor->GetBackSufaceColor(r, g, b);
4463                   colorStr += gDigitsSep; colorStr += "backsurface";
4464                   colorStr += gDigitsSep; colorStr += QString::number(r);
4465                   colorStr += gDigitsSep; colorStr += QString::number(g);
4466                   colorStr += gDigitsSep; colorStr += QString::number(b);
4467
4468                   aSmeshActor->GetEdgeColor(r, g, b);
4469                   colorStr += gDigitsSep; colorStr += "edge";
4470                   colorStr += gDigitsSep; colorStr += QString::number(r);
4471                   colorStr += gDigitsSep; colorStr += QString::number(g);
4472                   colorStr += gDigitsSep; colorStr += QString::number(b);
4473
4474                   aSmeshActor->GetNodeColor(r, g, b);
4475                   colorStr += gDigitsSep; colorStr += "node";
4476                   colorStr += gDigitsSep; colorStr += QString::number(r);
4477                   colorStr += gDigitsSep; colorStr += QString::number(g);
4478                   colorStr += gDigitsSep; colorStr += QString::number(b);
4479
4480                   param = vtkParam + "Colors";
4481                   ip->setParameter(entry, param, colorStr.toLatin1().data());
4482
4483                   // Sizes of lines and points
4484                   QString sizeStr ("line");
4485                   sizeStr += gDigitsSep; sizeStr += QString::number((int)aSmeshActor->GetLineWidth());
4486                   sizeStr += gDigitsSep; sizeStr += "shrink";
4487                   sizeStr += gDigitsSep; sizeStr += QString::number(aSmeshActor->GetShrinkFactor());
4488
4489                   param = vtkParam + "Sizes";
4490                   ip->setParameter(entry, param, sizeStr.toLatin1().data());
4491
4492                   // Point marker
4493                   QString markerStr;
4494
4495                   VTK::MarkerType aMarkerType = aSmeshActor->GetMarkerType();
4496                   if( aMarkerType == VTK::MT_USER ) {
4497                     markerStr += "custom";
4498                     markerStr += gDigitsSep;
4499                     markerStr += QString::number( aSmeshActor->GetMarkerTexture() );
4500                   }
4501                   else {
4502                     markerStr += "std";
4503                     markerStr += gDigitsSep;
4504                     markerStr += QString::number( (int)aMarkerType );
4505                     markerStr += gDigitsSep;
4506                     markerStr += QString::number( (int)aSmeshActor->GetMarkerScale() );
4507                   }
4508
4509                   param = vtkParam + "PointMarker";
4510                   ip->setParameter(entry, param, markerStr.toLatin1().data());
4511
4512                   // Opacity
4513                   param = vtkParam + "Opacity";
4514                   ip->setParameter(entry, param,
4515                                    QString::number(aSmeshActor->GetOpacity()).toLatin1().data());
4516
4517                   // Clipping
4518                   param = vtkParam + "ClippingPlane";
4519                   int nPlanes = aSmeshActor->GetNumberOfClippingPlanes();
4520                   if (!nPlanes)
4521                     ip->setParameter(entry, param, "Off");
4522                   for (int ipl = 0; ipl < nPlanes; ipl++) {
4523                     //vtkPlane* plane = aSmeshActor->GetClippingPlane(ipl);
4524                     SMESH::Orientation anOrientation;
4525                     double aDistance;
4526                     vtkFloatingPointType anAngle[2];
4527                     SMESHGUI_ClippingDlg::GetPlaneParam(aSmeshActor, ipl, anOrientation, aDistance, anAngle);
4528                     std::string planeValue = QString::number((int)anOrientation).toLatin1().data();
4529                     planeValue += gDigitsSep; planeValue += QString::number(aDistance).toLatin1().data();
4530                     planeValue += gDigitsSep; planeValue += QString::number(anAngle[0]).toLatin1().data();
4531                     planeValue += gDigitsSep; planeValue += QString::number(anAngle[1]).toLatin1().data();
4532
4533                     ip->setParameter(entry, param + QString::number(ipl+1).toLatin1().data(), planeValue);
4534                   }
4535                 } // if (io->hasEntry())
4536               } // SMESH_Actor && hasIO
4537             } // isVisible
4538           } // while.. actors traversal
4539         } // if (vtkView)
4540       } // for (views)
4541       vtkViewers++;
4542     } // if (SVTK view model)
4543   } // for (viewManagers)
4544 }
4545
4546 /*!
4547  * \brief Restore visual parameters
4548  *
4549  * This method is called after the study document is opened.
4550  * Restore visual parameters from AttributeParameter attribue(s)
4551  */
4552 void SMESHGUI::restoreVisualParameters (int savePoint)
4553 {
4554   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(application()->activeStudy());
4555   if (!appStudy || !appStudy->studyDS())
4556     return;
4557   _PTR(Study) studyDS = appStudy->studyDS();
4558
4559   // componentName is used for encoding of entries when storing them in IParameters
4560   std::string componentName = myComponentSMESH->ComponentDataType();
4561   //_PTR(SComponent) aSComponent = studyDS->FindComponent("GEOM");
4562   //if (!aSComponent) return;
4563
4564   // IParameters
4565   _PTR(AttributeParameter) ap = studyDS->GetModuleParameters("Interface Applicative",
4566                                                              componentName.c_str(),
4567                                                              savePoint);
4568   _PTR(IParameters) ip = ClientFactory::getIParameters(ap);
4569
4570   // restore map of custom markers
4571   VTK::MarkerMap& aMarkerMap = myMarkerMap[ studyDS->StudyId() ];
4572
4573   std::vector<std::string> properties = ip->getProperties();
4574   for (std::vector<std::string>::iterator propIt = properties.begin(); propIt != properties.end(); ++propIt)
4575   {
4576     std::string property = *propIt;
4577     QString aPropertyName( property.c_str() );
4578     QString aPropertyValue( ip->getProperty( property ).c_str() );
4579
4580     QStringList aPropertyNameList = aPropertyName.split( gSeparator, QString::SkipEmptyParts );
4581     if( aPropertyNameList.size() != 2 )
4582       continue;
4583
4584     int anId = 0;
4585     bool ok = false;
4586     if( aPropertyNameList[0] == "texture" )
4587       anId = aPropertyNameList[1].toInt( &ok );
4588
4589     if( !ok || anId < 1 )
4590       continue;
4591
4592     QStringList aPropertyValueList = aPropertyValue.split( gPathSep, QString::SkipEmptyParts );
4593     if( aPropertyValueList.size() != 2 )
4594       continue;
4595
4596     std::string aMarkerFileName = aPropertyValueList[0].toStdString();
4597     QString aMarkerTextureString = aPropertyValueList[1];
4598     QStringList aMarkerTextureStringList = aMarkerTextureString.split( gDigitsSep, QString::SkipEmptyParts );
4599     if( aMarkerTextureStringList.size() != 3 )
4600       continue;
4601
4602     ok = false;
4603     ushort aWidth = aMarkerTextureStringList[0].toUShort( &ok );
4604     if( !ok )
4605       continue;
4606
4607     ok = false;
4608     ushort aHeight = aMarkerTextureStringList[1].toUShort( &ok );
4609     if( !ok )
4610       continue;
4611
4612     VTK::MarkerTexture aMarkerTexture;
4613     aMarkerTexture.push_back( aWidth );
4614     aMarkerTexture.push_back( aHeight );
4615
4616     QString aMarkerTextureData = aMarkerTextureStringList[2];
4617     for( int i = 0, n = aMarkerTextureData.length(); i < n; i++ )
4618     {
4619       QChar aChar = aMarkerTextureData.at( i );
4620       if( aChar.isDigit() )
4621         aMarkerTexture.push_back( aChar.digitValue() );
4622     }
4623
4624     aMarkerMap[ anId ] = VTK::MarkerData( aMarkerFileName, aMarkerTexture );
4625   }
4626
4627   std::vector<std::string> entries = ip->getEntries();
4628
4629   for (std::vector<std::string>::iterator entIt = entries.begin(); entIt != entries.end(); ++entIt)
4630   {
4631     // entry is a normal entry - it should be "decoded" (setting base adress of component)
4632     QString entry (ip->decodeEntry(*entIt).c_str());
4633
4634     // Check that the entry corresponds to a real object in the Study
4635     // as the object may be deleted or modified after the visual state is saved.
4636     _PTR(SObject) so = studyDS->FindObjectID(entry.toLatin1().data());
4637     if (!so) continue; //Skip the not existent entry
4638
4639     std::vector<std::string> paramNames = ip->getAllParameterNames( *entIt );
4640     std::vector<std::string> paramValues = ip->getAllParameterValues( *entIt );
4641
4642     std::vector<std::string>::iterator namesIt = paramNames.begin();
4643     std::vector<std::string>::iterator valuesIt = paramValues.begin();
4644
4645     // actors are stored in a map after displaying of them for
4646     // quicker access in the future: map < viewID to actor >
4647     NCollection_DataMap<int, SMESH_Actor*> vtkActors;
4648
4649     for (; namesIt != paramNames.end(); ++namesIt, ++valuesIt)
4650     {
4651       // visual parameters are stored in strings as follows: ViewerType_ViewIndex_ParamName.
4652       // '_' is used as separator and should not be used in viewer type or parameter names.
4653       QStringList lst = QString((*namesIt).c_str()).split(gSeparator, QString::SkipEmptyParts);
4654       if (lst.size() != 3)
4655         continue;
4656
4657       QString viewerTypStr = lst[0];
4658       QString viewIndexStr = lst[1];
4659       QString paramNameStr = lst[2];
4660
4661       bool ok;
4662       int viewIndex = viewIndexStr.toUInt(&ok);
4663       if (!ok) // bad conversion of view index to integer
4664         continue;
4665
4666       // viewers
4667       if (viewerTypStr == SVTK_Viewer::Type())
4668       {
4669         SMESH_Actor* aSmeshActor = 0;
4670         if (vtkActors.IsBound(viewIndex))
4671           aSmeshActor = vtkActors.Find(viewIndex);
4672
4673         if (paramNameStr == "Visibility")
4674         {
4675           if (!aSmeshActor && displayer())
4676           {
4677             QList<SUIT_ViewManager*> lst;
4678             getApp()->viewManagers(viewerTypStr, lst);
4679
4680             // SVTK ViewManager always has 1 ViewWindow, so view index is index of view manager
4681             if (viewIndex >= 0 && viewIndex < lst.count()) {
4682               SUIT_ViewManager* vman = lst.at(viewIndex);
4683               SUIT_ViewModel* vmodel = vman->getViewModel();
4684               // SVTK view model can be casted to SALOME_View
4685               displayer()->Display(entry, true, dynamic_cast<SALOME_View*>(vmodel));
4686
4687               // store displayed actor in a temporary map for quicker
4688               // access later when restoring other parameters
4689               SVTK_ViewWindow* vtkView = (SVTK_ViewWindow*) vman->getActiveView();
4690               vtkRenderer* Renderer = vtkView->getRenderer();
4691               VTK::ActorCollectionCopy aCopy(Renderer->GetActors());
4692               vtkActorCollection* theActors = aCopy.GetActors();
4693               theActors->InitTraversal();
4694               bool isFound = false;
4695               vtkActor *ac = theActors->GetNextActor();
4696               for (; ac != NULL && !isFound; ac = theActors->GetNextActor()) {
4697                 if (ac->IsA("SMESH_Actor")) {
4698                   SMESH_Actor* aGeomAc = SMESH_Actor::SafeDownCast(ac);
4699                   if (aGeomAc->hasIO()) {
4700                     Handle(SALOME_InteractiveObject) io =
4701                       Handle(SALOME_InteractiveObject)::DownCast(aGeomAc->getIO());
4702                     if (io->hasEntry() && strcmp(io->getEntry(), entry.toLatin1().data()) == 0) {
4703                       isFound = true;
4704                       vtkActors.Bind(viewIndex, aGeomAc);
4705                     }
4706                   }
4707                 }
4708               }
4709             }
4710           }
4711         } // if (paramNameStr == "Visibility")
4712         else
4713         {
4714           // the rest properties "work" with SMESH_Actor
4715           if (aSmeshActor)
4716           {
4717             QString val ((*valuesIt).c_str());
4718
4719             // Representation
4720             if (paramNameStr == "Representation") {
4721               aSmeshActor->SetRepresentation((SMESH_Actor::EReperesent)val.toInt());
4722             }
4723             // IsShrunk
4724             else if (paramNameStr == "IsShrunk") {
4725               if (val.toInt()) {
4726                 if (!aSmeshActor->IsShrunk())
4727                   aSmeshActor->SetShrink();
4728               }
4729               else {
4730                 if (aSmeshActor->IsShrunk())
4731                   aSmeshActor->UnShrink();
4732               }
4733             }
4734             // Displayed entities
4735             else if (paramNameStr == "Entities") {
4736               QStringList mode = val.split(gDigitsSep, QString::SkipEmptyParts);
4737               if (mode.count() == 6) {
4738                 if (mode[0] != "e" || mode[2]  != "f" || mode[4] != "v") {
4739                   MESSAGE("Invalid order of data in Entities, must be: "
4740                           "e:0/1:f:0/1:v:0/1");
4741                 }
4742                 else {
4743                   unsigned int aMode = aSmeshActor->GetEntityMode();
4744                   unsigned int aNewMode =
4745                     (int(SMESH_Actor::eEdges  ) * mode[1].toInt()) |
4746                     (int(SMESH_Actor::eFaces  ) * mode[3].toInt()) |
4747                     (int(SMESH_Actor::eVolumes) * mode[5].toInt());
4748                   if (aNewMode != aMode)
4749                     aSmeshActor->SetEntityMode(aNewMode);
4750                 }
4751               }
4752             }
4753             // Colors
4754             else if (paramNameStr == "Colors") {
4755               QStringList colors = val.split(gDigitsSep, QString::SkipEmptyParts);
4756               if (colors.count() == 16) {
4757                 if (colors[0] != "surface" || colors[4]  != "backsurface" ||
4758                     colors[8] != "edge"    || colors[12] != "node") {
4759                   MESSAGE("Invalid order of data in Colors, must be: "
4760                           "surface:r:g:b:backsurface:r:g:b:edge:r:g:b:node:r:g:b");
4761                 }
4762                 else {
4763                   aSmeshActor->SetSufaceColor(colors[1].toFloat(), colors[2].toFloat(), colors[3].toFloat());
4764                   aSmeshActor->SetBackSufaceColor(colors[5].toFloat(), colors[6].toFloat(), colors[7].toFloat());
4765                   aSmeshActor->SetEdgeColor(colors[9].toFloat(), colors[10].toFloat(), colors[11].toFloat());
4766                   aSmeshActor->SetNodeColor(colors[13].toFloat(), colors[14].toFloat(), colors[15].toFloat());
4767                 }
4768               }
4769             }
4770             // Sizes of lines and points
4771             else if (paramNameStr == "Sizes") {
4772               QStringList sizes = val.split(gDigitsSep, QString::SkipEmptyParts);
4773               if (sizes.count() == 4) {
4774                 if (sizes[0] != "line" || sizes[2] != "shrink") {
4775                   MESSAGE("Invalid order of data in Sizes, must be: "
4776                           "line:int:shrink:float");
4777                 }
4778                 else {
4779                   aSmeshActor->SetLineWidth(sizes[1].toInt());
4780                   aSmeshActor->SetShrinkFactor(sizes[3].toFloat());
4781                 }
4782               }
4783               else if (sizes.count() == 6) { // just to support old format
4784                 if (sizes[0] != "line" || sizes[2]  != "node" || sizes[4] != "shrink") {
4785                   MESSAGE("Invalid order of data in Sizes, must be: "
4786                           "line:int:node:int:shrink:float");
4787                 }
4788                 else {
4789                   aSmeshActor->SetLineWidth(sizes[1].toInt());
4790                   //aSmeshActor->SetNodeSize(sizes[3].toInt()); // made obsolete
4791                   aSmeshActor->SetShrinkFactor(sizes[5].toFloat());
4792                 }
4793               }
4794             }
4795             // Point marker
4796             else if (paramNameStr == "PointMarker") {
4797               QStringList data = val.split(gDigitsSep, QString::SkipEmptyParts);
4798               if( data.count() >= 2 ) {
4799                 bool ok = false;
4800                 int aParam1 = data[1].toInt( &ok );
4801                 if( ok ) {
4802                   if( data[0] == "std" && data.count() == 3 ) {
4803                     int aParam2 = data[2].toInt( &ok );
4804                     aSmeshActor->SetMarkerStd( (VTK::MarkerType)aParam1, (VTK::MarkerScale)aParam2 );
4805                   }
4806                   else if( data[0] == "custom" ) {
4807                     VTK::MarkerMap::const_iterator markerIt = aMarkerMap.find( aParam1 );
4808                     if( markerIt != aMarkerMap.end() ) {
4809                       VTK::MarkerData aMarkerData = markerIt->second;
4810                       aSmeshActor->SetMarkerTexture( aParam1, aMarkerData.second );
4811                     }
4812                   }
4813                 }
4814               }
4815             }
4816             // Opacity
4817             else if (paramNameStr == "Opacity") {
4818               aSmeshActor->SetOpacity(val.toFloat());
4819             }
4820             // Clipping
4821             else if (paramNameStr.startsWith("ClippingPlane")) {
4822               cout << "$$$ ClippingPlane 1" << endl;
4823               if (paramNameStr == "ClippingPlane1" || val == "Off")
4824                 aSmeshActor->RemoveAllClippingPlanes();
4825               if (val != "Off") {
4826                 cout << "$$$ ClippingPlane 2" << endl;
4827                 QStringList vals = val.split(gDigitsSep, QString::SkipEmptyParts);
4828                 if (vals.count() == 4) { // format check: 4 values
4829                   cout << "$$$ ClippingPlane 3" << endl;
4830                   SMESH::Orientation anOrientation = (SMESH::Orientation)vals[0].toInt();
4831                   double aDistance = vals[1].toFloat();
4832                   vtkFloatingPointType anAngle[2];
4833                   anAngle[0] = vals[2].toFloat();
4834                   anAngle[1] = vals[3].toFloat();
4835
4836                   QList<SUIT_ViewManager*> lst;
4837                   getApp()->viewManagers(viewerTypStr, lst);
4838                   // SVTK ViewManager always has 1 ViewWindow, so view index is index of view manager
4839                   if (viewIndex >= 0 && viewIndex < lst.count()) {
4840                     SUIT_ViewManager* vman = lst.at(viewIndex);
4841                     SVTK_ViewWindow* vtkView = (SVTK_ViewWindow*) vman->getActiveView();
4842                     SMESHGUI_ClippingDlg::AddPlane(aSmeshActor, vtkView,
4843                                                    anOrientation, aDistance, anAngle);
4844                   }
4845                 }
4846               }
4847             }
4848           } // if (aSmeshActor)
4849         } // other parameters than Visibility
4850       }
4851     } // for names/parameters iterator
4852   } // for entries iterator
4853
4854   // update all VTK views
4855   QList<SUIT_ViewManager*> lst;
4856   getApp()->viewManagers(lst);
4857   for (QList<SUIT_ViewManager*>::Iterator it = lst.begin(); it != lst.end(); it++) {
4858     SUIT_ViewModel* vmodel = (*it)->getViewModel();
4859     if (vmodel && vmodel->getType() == SVTK_Viewer::Type()) {
4860       SVTK_ViewWindow* vtkView = (SVTK_ViewWindow*) (*it)->getActiveView();
4861       vtkView->getRenderer()->ResetCameraClippingRange();
4862       vtkView->Repaint();
4863     }
4864   }
4865 }
4866
4867 /*!
4868   \brief Adds preferences for dfont of VTK viewer
4869   \param label label
4870   \param pIf group identifier
4871   \param param parameter
4872   \return identifier of preferences
4873 */
4874 int SMESHGUI::addVtkFontPref( const QString& label, const int pId, const QString& param )
4875 {
4876   int tfont = addPreference( label, pId, LightApp_Preferences::Font, "VISU", param );
4877   
4878   setPreferenceProperty( tfont, "mode", QtxFontEdit::Custom );
4879
4880   QStringList fam;
4881   fam.append( tr( "SMESH_FONT_ARIAL" ) );
4882   fam.append( tr( "SMESH_FONT_COURIER" ) );
4883   fam.append( tr( "SMESH_FONT_TIMES" ) );
4884
4885   setPreferenceProperty( tfont, "fonts", fam );
4886
4887   int f = QtxFontEdit::Family | QtxFontEdit::Bold | QtxFontEdit::Italic | QtxFontEdit::Shadow;
4888   setPreferenceProperty( tfont, "features", f );
4889
4890   return tfont;
4891 }
4892
4893 /*!
4894   \brief Actions after hypothesis edition
4895   Updates object browser after hypothesis edition
4896 */
4897 void SMESHGUI::onHypothesisEdit( int result )
4898 {
4899   if( result == 1 )
4900     SMESHGUI::Modified();
4901   updateObjBrowser( true );
4902 }