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