Salome HOME
Porting on Mandriva 64
[modules/smesh.git] / src / SMESHGUI / SMESHGUI.cxx
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21 //
22 //  File   : SMESHGUI.cxx
23 //  Author : Nicolas REJNERI
24 //  Module : SMESH
25 //  $Header$
26
27 #include "SMESHGUI.h"
28
29 #include "SMESH_Client.hxx"
30 #include "SMESHGUI_NodesDlg.h"
31 #include "SMESHGUI_TransparencyDlg.h"
32 #include "SMESHGUI_ClippingDlg.h"
33 #include "SMESHGUI_GroupDlg.h"
34 #include "SMESHGUI_RemoveNodesDlg.h"
35 #include "SMESHGUI_RemoveElementsDlg.h"
36 #include "SMESHGUI_MeshInfosDlg.h"
37 #include "SMESHGUI_StandardMeshInfosDlg.h"
38 #include "SMESHGUI_Preferences_ColorDlg.h"
39 #include "SMESHGUI_Preferences_ScalarBarDlg.h"
40 #include "SMESHGUI_Preferences_SelectionDlg.h"
41 #include "SMESHGUI_Hypotheses.h"
42 #include "SMESHGUI_MoveNodesDlg.h"
43 #include "SMESHGUI_AddMeshElementDlg.h"
44 #include "SMESHGUI_AddQuadraticElementDlg.h"
45 #include "SMESHGUI_FilterDlg.h"
46 #include "SMESHGUI_FilterLibraryDlg.h"
47 #include "SMESHGUI_SingleEditDlg.h"
48 #include "SMESHGUI_MultiEditDlg.h"
49 #include "SMESHGUI_GroupOpDlg.h"
50 #include "SMESHGUI_DeleteGroupDlg.h"
51 #include "SMESHGUI_SmoothingDlg.h"
52 #include "SMESHGUI_RenumberingDlg.h"
53 #include "SMESHGUI_ExtrusionDlg.h"
54 #include "SMESHGUI_ExtrusionAlongPathDlg.h"
55 #include "SMESHGUI_RevolutionDlg.h"
56 #include "SMESHGUI_TranslationDlg.h"
57 #include "SMESHGUI_RotationDlg.h"
58 #include "SMESHGUI_SymmetryDlg.h"
59 #include "SMESHGUI_SewingDlg.h"
60 #include "SMESHGUI_MergeNodesDlg.h"
61 #include "SMESHGUI_EditMeshDlg.h"
62 #include "SMESHGUI_MeshPatternDlg.h"
63 #include "SMESHGUI_Selection.h"
64 #include "SMESHGUI_CreatePolyhedralVolumeDlg.h"
65 #include "SMESHGUI_MeshOp.h"
66 #include "SMESHGUI_Displayer.h"
67
68 #include "SMESHGUI_Utils.h"
69 #include "SMESHGUI_GEOMGenUtils.h"
70 #include "SMESHGUI_MeshUtils.h"
71 #include "SMESHGUI_GroupUtils.h"
72 #include "SMESHGUI_FilterUtils.h"
73 #include "SMESHGUI_PatternUtils.h"
74 #include "SMESHGUI_VTKUtils.h"
75 #include "SMESHGUI_HypothesesUtils.h"
76
77 #include "SMESH_Actor.h"
78 #include "SMESH_Object.h"
79 #include "SMESH_TypeFilter.hxx"
80
81 #include "SalomeApp_Tools.h"
82 #include "SalomeApp_Study.h"
83 #include "SalomeApp_Application.h"
84 #include "SalomeApp_CheckFileDlg.h"
85 #include "SalomeApp_ImportOperation.h"
86
87 #include "LightApp_DataOwner.h"
88 #include "LightApp_Preferences.h"
89 #include "LightApp_VTKSelector.h"
90 #include "LightApp_Operation.h"
91 #include "LightApp_UpdateFlags.h"
92 #include "LightApp_NameDlg.h"
93
94 #include <SVTK_ViewWindow.h>
95 #include <SVTK_ViewModel.h>
96 #include <SVTK_InteractorStyle.h>
97 #include <SVTK_RenderWindowInteractor.h>
98 #include <SVTK_ViewManager.h>
99
100 #include "OB_Browser.h"
101
102 #include "SUIT_Tools.h"
103 #include "SUIT_MessageBox.h"
104 #include "SUIT_ResourceMgr.h"
105 #include "SUIT_FileDlg.h"
106 #include "SUIT_Desktop.h"
107 #include "SUIT_OverrideCursor.h"
108 #include "SUIT_Study.h"
109 #include "SUIT_Session.h"
110
111 #include "QtxPopupMgr.h"
112
113 #include "SALOME_ListIO.hxx"
114 #include "SALOME_ListIteratorOfListIO.hxx"
115 #include "SALOME_InteractiveObject.hxx"
116 #include "SALOME_NamingService.hxx"
117 #include "SALOME_LifeCycleCORBA.hxx"
118
119 #include "SALOMEconfig.h"
120 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
121
122 // QT Includes
123 #define  INCLUDE_MENUITEM_DEF
124 #include <qpopupmenu.h>
125 #include <qstring.h>
126 #include <qwidget.h>
127 #include <qaction.h>
128
129 // BOOST Includes
130 #include <boost/shared_ptr.hpp>
131
132 // VTK Includes
133 #include <vtkRenderer.h>
134 #include <vtkRenderWindow.h>
135 #include <vtkActorCollection.h>
136 #include <vtkScalarBarActor.h>
137 #include <vtkUnstructuredGrid.h>
138
139 #include "utilities.h"
140
141 #include "SALOMEDS_Study.hxx"
142 #include "SALOMEDSClient_StudyBuilder.hxx"
143 #include "SALOMEDSClient_SComponent.hxx"
144
145 using namespace std;
146
147 namespace{
148   // Declarations
149   //=============================================================
150   void ImportMeshesFromFile(SMESH::SMESH_Gen_ptr theComponentMesh,
151                             int theCommandID);
152
153   void ExportMeshToFile(int theCommandID);
154
155   void SetDisplayMode(int theCommandID);
156
157   void SetDisplayEntity(int theCommandID);
158
159   void Control( int theCommandID );
160
161
162   // Definitions
163   //=============================================================
164   void ImportMeshesFromFile(SMESH::SMESH_Gen_ptr theComponentMesh,
165                             int theCommandID)
166   {
167     QStringList filter;
168     string myExtension;
169
170     if(theCommandID == 113){
171       filter.append(QObject::tr("MED files (*.med)"));
172       filter.append(QObject::tr("All files (*)"));
173     }else if (theCommandID == 112){
174       filter.append(QObject::tr("IDEAS files (*.unv)"));
175     }else if (theCommandID == 111){
176       filter.append(QObject::tr("DAT files (*.dat)"));
177     }
178     QString filename = SUIT_FileDlg::getFileName(SMESHGUI::desktop(),
179                                                 "",
180                                                 filter,
181                                                 QObject::tr("Import mesh"),
182                                                 true);
183     if(!filename.isEmpty()) {
184       SUIT_OverrideCursor wc;
185       _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
186
187       try {
188         SMESH::mesh_array_var aMeshes = new SMESH::mesh_array;
189         switch ( theCommandID ) {
190         case 112:
191           {
192             aMeshes->length( 1 );
193             aMeshes[0] = theComponentMesh->CreateMeshesFromUNV(filename.latin1());
194             break;
195           }
196         case 113:
197           {
198             SMESH::DriverMED_ReadStatus res;
199             aMeshes = theComponentMesh->CreateMeshesFromMED(filename.latin1(),res);
200             if ( res != SMESH::DRS_OK ) {
201               wc.suspend();
202               SUIT_MessageBox::warn1(SMESHGUI::desktop(),
203                                     QObject::tr("SMESH_WRN_WARNING"),
204                                     QObject::tr(QString("SMESH_DRS_%1").arg(res)),
205                                     QObject::tr("SMESH_BUT_OK"));
206               aMeshes->length( 0 );
207               wc.resume();
208             }
209             break;
210           }
211         }
212
213         bool isEmpty = false;
214         for ( int i = 0, iEnd = aMeshes->length(); i < iEnd; i++ ) {
215           _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshes[i] );
216           if ( aMeshSO ) {
217             _PTR(StudyBuilder) aBuilder = aStudy->NewBuilder();
218             _PTR(AttributePixMap) aPixmap = aBuilder->FindOrCreateAttribute( aMeshSO, "AttributePixMap" );
219             aPixmap->SetPixMap("ICON_SMESH_TREE_MESH_IMPORTED");
220             if ( theCommandID == 112 ) // mesh names aren't taken from the file for UNV import
221               SMESH::SetName( aMeshSO, QFileInfo(filename).fileName() );
222           } else
223             isEmpty = true;
224         }
225
226         if ( isEmpty ) {
227           wc.suspend();
228           SUIT_MessageBox::warn1(SMESHGUI::desktop(),
229                                 QObject::tr("SMESH_WRN_WARNING"),
230                                 QObject::tr("SMESH_DRS_EMPTY"),
231                                 QObject::tr("SMESH_BUT_OK"));
232           wc.resume();
233         }
234
235         SMESHGUI::GetSMESHGUI()->updateObjBrowser();
236       }
237       catch (const SALOME::SALOME_Exception& S_ex){
238         wc.suspend();
239         SalomeApp_Tools::QtCatchCorbaException(S_ex);
240         wc.resume();
241       }
242     }
243   }
244
245
246   void ExportMeshToFile( int theCommandID )
247   {
248     LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
249     SALOME_ListIO selected;
250     if( aSel )
251       aSel->selectedObjects( selected );
252
253     if(selected.Extent()){
254       Handle(SALOME_InteractiveObject) anIObject = selected.First();
255       SMESH::SMESH_Mesh_var aMesh = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(anIObject);
256       if ( !aMesh->_is_nil() ) {
257         QString aFilter, aTitle = QObject::tr("Export mesh");
258         QMap<QString, SMESH::MED_VERSION> aFilterMap;
259         switch ( theCommandID ) {
260         case 125:
261         case 122:
262           {
263             if (aMesh->HasDuplicatedGroupNamesMED()) {
264               int aRet = SUIT_MessageBox::warn2
265                 (SMESHGUI::desktop(),
266                  QObject::tr("SMESH_WRN_WARNING"),
267                  QObject::tr("SMESH_EXPORT_MED_DUPLICATED_GRP").arg(anIObject->getName()),
268                  QObject::tr("SMESH_BUT_YES"),  QObject::tr("SMESH_BUT_NO"),
269                  0, 1, 0);
270               if (aRet)
271                 return;
272             }
273
274             aFilterMap.insert( QObject::tr("MED 2.1 (*.med)"), SMESH::MED_V2_1 );
275             aFilterMap.insert( QObject::tr("MED 2.2 (*.med)"), SMESH::MED_V2_2 );
276           }
277           break;
278         case 124:
279         case 121:
280           aFilter = QObject::tr("DAT files (*.dat)");
281           break;
282         case 126:
283         case 123:
284           {
285             if (aMesh->NbPyramids()) {
286               int aRet = SUIT_MessageBox::warn2
287                 (SMESHGUI::desktop(),
288                  QObject::tr("SMESH_WRN_WARNING"),
289                  QObject::tr("SMESH_EXPORT_UNV").arg(anIObject->getName()),
290                  QObject::tr("SMESH_BUT_YES"),  QObject::tr("SMESH_BUT_NO"),
291                  0, 1, 0);
292               if (aRet)
293                 return;
294             }
295             aFilter = QObject::tr("IDEAS files (*.unv)");
296           }
297           break;
298         default:
299           return;
300         }
301
302         QString aFilename;
303         SMESH::MED_VERSION aFormat;
304         // Init the parameter with the default value
305         bool toCreateGroups = false;
306         SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
307         if ( resMgr )
308           toCreateGroups = resMgr->booleanValue( "SMESH", "auto_groups", false );
309         
310         if ( theCommandID != 122 && theCommandID != 125 )
311           aFilename = SUIT_FileDlg::getFileName(SMESHGUI::desktop(), "", aFilter, aTitle, false);
312         else {
313           QStringList filters;
314           QMap<QString, SMESH::MED_VERSION>::const_iterator it = aFilterMap.begin();
315           for ( ; it != aFilterMap.end(); ++it )
316             filters.push_back( it.key() );
317
318           //SUIT_FileDlg* fd = new SUIT_FileDlg( SMESHGUI::desktop(), false, true, true );
319           SalomeApp_CheckFileDlg* fd = new SalomeApp_CheckFileDlg
320             ( SMESHGUI::desktop(), false, QObject::tr("SMESH_AUTO_GROUPS") ,true, true );
321           fd->setCaption( aTitle );
322           fd->setFilters( filters );
323           fd->setSelectedFilter( QObject::tr("MED 2.2 (*.med)") );
324           fd->SetChecked(toCreateGroups);
325           bool is_ok = false;
326           while (!is_ok) {
327             fd->exec();
328             aFilename = fd->selectedFile();
329             aFormat = aFilterMap[fd->selectedFilter()];
330             is_ok = true;
331             if ( !aFilename.isEmpty()
332                  && (aMesh->NbPolygons()>0 or aMesh->NbPolyhedrons()>0)
333                  && aFormat==SMESH::MED_V2_1) {
334               int aRet = SUIT_MessageBox::warn2(SMESHGUI::desktop(),
335                                                 QObject::tr("SMESH_WRN_WARNING"),
336                                                 QObject::tr("SMESH_EXPORT_MED_V2_1").arg(anIObject->getName()),
337                                                 QObject::tr("SMESH_BUT_YES"),
338                                                 QObject::tr("SMESH_BUT_NO"),
339                                                 0,1,0);
340               if (aRet) {
341                 is_ok = false;
342               }
343             }
344           }
345           toCreateGroups = fd->IsChecked();
346           delete fd;
347         }
348         if ( !aFilename.isEmpty() ) {
349           // Check whether the file already exists and delete it if yes
350           QFile aFile( aFilename );
351           if ( aFile.exists() )
352             aFile.remove();
353           SUIT_OverrideCursor wc;
354           switch ( theCommandID ) {
355           case 125:
356           case 122:
357             aMesh->ExportToMED( aFilename.latin1(), toCreateGroups, aFormat );
358             break;
359           case 124:
360           case 121:
361             aMesh->ExportDAT( aFilename.latin1() );
362             break;
363           case 126:
364           case 123:
365             aMesh->ExportUNV( aFilename.latin1() );
366             break;
367           default:
368             break;
369           }
370         }
371       }
372     }
373   }
374
375   inline void InverseEntityMode(unsigned int& theOutputMode,
376                                 unsigned int theMode)
377   {
378     bool anIsNotPresent = ~theOutputMode & theMode;
379     if(anIsNotPresent)
380       theOutputMode |= theMode;
381     else
382       theOutputMode &= ~theMode;
383   }
384
385   void SetDisplayEntity(int theCommandID){
386     LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
387     SALOME_ListIO selected;
388     if( aSel )
389       aSel->selectedObjects( selected );
390
391     if(selected.Extent() >= 1){
392       SALOME_ListIteratorOfListIO It( selected );
393       for(; It.More(); It.Next()){
394         Handle(SALOME_InteractiveObject) IObject = It.Value();
395         if(IObject->hasEntry()){
396           if(SMESH_Actor *anActor = SMESH::FindActorByEntry(IObject->getEntry())){
397             unsigned int aMode = anActor->GetEntityMode();
398             switch(theCommandID){
399             case 217:
400               InverseEntityMode(aMode,SMESH_Actor::eEdges);
401               break;
402             case 218:
403               InverseEntityMode(aMode,SMESH_Actor::eFaces);
404               break;
405             case 219:
406               InverseEntityMode(aMode,SMESH_Actor::eVolumes);
407               break;
408             case 220:
409               aMode = SMESH_Actor::eAllEntity;
410               break;
411             }
412             if(aMode)
413               anActor->SetEntityMode(aMode);
414           }
415         }
416       }
417     }
418   }
419
420   void SetDisplayMode(int theCommandID){
421     LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
422     SALOME_ListIO selected;
423     if( aSel )
424       aSel->selectedObjects( selected );
425
426     if(selected.Extent() >= 1){
427       switch(theCommandID){
428       case 1134:{
429         SMESHGUI::GetSMESHGUI()->EmitSignalDeactivateDialog();
430         new SMESHGUI_ClippingDlg( SMESHGUI::GetSMESHGUI(), "", false );
431         return;
432       }
433       case 1133:{
434         SMESHGUI::GetSMESHGUI()->EmitSignalDeactivateDialog();
435         new SMESHGUI_TransparencyDlg( SMESHGUI::GetSMESHGUI(), "", false );
436         return;
437       }}
438       SALOME_ListIteratorOfListIO It( selected );
439       for(; It.More(); It.Next()){
440         Handle(SALOME_InteractiveObject) IObject = It.Value();
441         if(IObject->hasEntry()){
442           if(SMESH_Actor *anActor = SMESH::FindActorByEntry(IObject->getEntry())){
443             switch(theCommandID){
444             case 211:
445               anActor->SetRepresentation(SMESH_Actor::eEdge);
446               break;
447             case 212:
448               anActor->SetRepresentation(SMESH_Actor::eSurface);
449               break;
450             case 213:
451               if(anActor->IsShrunk())
452                 anActor->UnShrink();
453               else
454                 anActor->SetShrink();
455               break;
456             case 215:
457               anActor->SetRepresentation(SMESH_Actor::ePoint);
458               break;
459             case 1132:{
460               vtkFloatingPointType color[3];
461               anActor->GetSufaceColor(color[0], color[1], color[2]);
462               int c0 = int (color[0] * 255);
463               int c1 = int (color[1] * 255);
464               int c2 = int (color[2] * 255);
465               QColor c(c0, c1, c2);
466
467               vtkFloatingPointType edgecolor[3];
468               anActor->GetEdgeColor(edgecolor[0], edgecolor[1], edgecolor[2]);
469               c0 = int (edgecolor[0] * 255);
470               c1 = int (edgecolor[1] * 255);
471               c2 = int (edgecolor[2] * 255);
472               QColor e(c0, c1, c2);
473
474               vtkFloatingPointType backfacecolor[3];
475               anActor->GetBackSufaceColor(backfacecolor[0], backfacecolor[1], backfacecolor[2]);
476               c0 = int (backfacecolor[0] * 255);
477               c1 = int (backfacecolor[1] * 255);
478               c2 = int (backfacecolor[2] * 255);
479               QColor b(c0, c1, c2);
480
481               vtkFloatingPointType nodecolor[3];
482               anActor->GetNodeColor(nodecolor[0], nodecolor[1], nodecolor[2]);
483               c0 = int (nodecolor[0] * 255);
484               c1 = int (nodecolor[1] * 255);
485               c2 = int (nodecolor[2] * 255);
486               QColor n(c0, c1, c2);
487
488               int Edgewidth = (int)anActor->GetLineWidth();
489               if(Edgewidth == 0)
490                 Edgewidth = 1;
491               int intValue = int(anActor->GetNodeSize());
492               vtkFloatingPointType Shrink = anActor->GetShrinkFactor();
493
494               SMESHGUI_Preferences_ColorDlg *aDlg =
495                 new SMESHGUI_Preferences_ColorDlg( SMESHGUI::GetSMESHGUI(), "" );
496               aDlg->SetColor(1, c);
497               aDlg->SetColor(2, e);
498               aDlg->SetColor(3, n);
499               aDlg->SetColor(4, b);
500               aDlg->SetIntValue(1, Edgewidth);
501               aDlg->SetIntValue(2, intValue);
502               aDlg->SetIntValue(3, int(Shrink*100.));
503               if(aDlg->exec()){
504                 QColor color = aDlg->GetColor(1);
505                 QColor edgecolor = aDlg->GetColor(2);
506                 QColor nodecolor = aDlg->GetColor(3);
507                 QColor backfacecolor = aDlg->GetColor(4);
508                 /* actor color and backface color */
509                 anActor->SetSufaceColor(vtkFloatingPointType (color.red()) / 255.,
510                                         vtkFloatingPointType (color.green()) / 255.,
511                                         vtkFloatingPointType (color.blue()) / 255.);
512                 anActor->SetBackSufaceColor(vtkFloatingPointType (backfacecolor.red()) / 255.,
513                                             vtkFloatingPointType (backfacecolor.green()) / 255.,
514                                             vtkFloatingPointType (backfacecolor.blue()) / 255.);
515
516                 /* edge color */
517                 anActor->SetEdgeColor(vtkFloatingPointType (edgecolor.red()) / 255.,
518                                       vtkFloatingPointType (edgecolor.green()) / 255.,
519                                       vtkFloatingPointType (edgecolor.blue()) / 255.);
520
521                 /* Shrink factor and size edges */
522                 anActor->SetShrinkFactor(aDlg->GetIntValue(3) / 100.);
523                 anActor->SetLineWidth(aDlg->GetIntValue(1));
524
525                 /* Nodes color and size */
526                 anActor->SetNodeColor(vtkFloatingPointType (nodecolor.red()) / 255.,
527                                       vtkFloatingPointType (nodecolor.green()) / 255.,
528                                       vtkFloatingPointType (nodecolor.blue()) / 255.);
529                 anActor->SetNodeSize(aDlg->GetIntValue(2));
530
531                 delete aDlg;
532               }
533               break;
534             }}
535           }
536         }
537       }
538       SMESH::RepaintCurrentView();
539     }
540   }
541
542   void Control( int theCommandID )
543   {
544     LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
545     SALOME_ListIO selected;
546     if( aSel )
547       aSel->selectedObjects( selected );
548
549     if( !selected.IsEmpty() ){
550       Handle(SALOME_InteractiveObject) anIO = selected.First();
551       if(!anIO.IsNull()){
552         QString aTitle;
553         SMESH_Actor::eControl aControl = SMESH_Actor::eNone;
554         if(SMESH_Actor *anActor = SMESH::FindActorByEntry(anIO->getEntry())){
555           switch ( theCommandID ){
556           case 6001:
557             aTitle = QObject::tr( "LENGTH_EDGES" );
558             aControl = SMESH_Actor::eLength;
559             break;
560           case 6018:
561             aTitle = QObject::tr( "LENGTH2D_EDGES" );
562             aControl = SMESH_Actor::eLength2D;
563             break;
564           case 6002:
565             aTitle = QObject::tr( "FREE_EDGES" );
566             aControl = SMESH_Actor::eFreeEdges;
567             break;
568           case 6003:
569             aTitle = QObject::tr( "FREE_BORDERS" );
570             aControl = SMESH_Actor::eFreeBorders;
571             break;
572           case 6004:
573             aTitle = QObject::tr( "MULTI_BORDERS" );
574             aControl = SMESH_Actor::eMultiConnection;
575             break;
576           case 6019:
577             aTitle = QObject::tr( "MULTI2D_BORDERS" );
578             aControl = SMESH_Actor::eMultiConnection2D;
579             break;
580           case 6011:
581             aTitle = QObject::tr( "AREA_ELEMENTS" );
582             aControl = SMESH_Actor::eArea;
583             break;
584           case 6012:
585             aTitle = QObject::tr( "TAPER_ELEMENTS" );
586             aControl = SMESH_Actor::eTaper;
587             break;
588           case 6013:
589             aTitle = QObject::tr( "ASPECTRATIO_ELEMENTS" );
590             aControl = SMESH_Actor::eAspectRatio;
591             break;
592           case 6017:
593             aTitle = QObject::tr( "ASPECTRATIO_3D_ELEMENTS" );
594             aControl = SMESH_Actor::eAspectRatio3D;
595             break;
596           case 6014:
597             aTitle = QObject::tr( "MINIMUMANGLE_ELEMENTS" );
598             aControl = SMESH_Actor::eMinimumAngle;
599             break;
600           case 6015:
601             aTitle = QObject::tr( "WARP_ELEMENTS" );
602             aControl = SMESH_Actor::eWarping;
603             break;
604           case 6016:
605             aTitle = QObject::tr( "SKEW_ELEMENTS" );
606             aControl = SMESH_Actor::eSkew;
607             break;
608           case 6009:
609             aTitle = QObject::tr( "SMESH_VOLUME" );
610             aControl = SMESH_Actor::eVolume3D;
611             break;
612           }
613           anActor->SetControlMode(aControl);
614           anActor->GetScalarBarActor()->SetTitle(aTitle.latin1());
615           SMESH::RepaintCurrentView();
616         }
617       }
618     }
619   }
620
621
622   bool CheckOIType(const Handle(SALOME_InteractiveObject) & theIO,
623                    MeshObjectType                           theType,
624                    const QString                            theInTypeName,
625                    QString &                                theOutTypeName)
626   {
627     SMESH_TypeFilter aTypeFilter( theType );
628     QString entry;
629     if( !theIO.IsNull() )
630     {
631       entry = theIO->getEntry();
632       LightApp_DataOwner owner( entry );
633       if ( aTypeFilter.isOk( &owner )) {
634         theOutTypeName = theInTypeName;
635         return true;
636       }
637     }
638     return false;
639   }
640
641
642   QString CheckTypeObject(const Handle(SALOME_InteractiveObject) & theIO)
643   {
644     _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
645     _PTR(SObject) aSObj = aStudy->FindObjectID(theIO->getEntry());
646     if (aSObj) {
647       _PTR(SComponent) aSComp = aSObj->GetFatherComponent();
648       CORBA::String_var anID = aSComp->GetID().c_str();
649       if (!strcmp(anID.in(),theIO->getEntry()))
650         return "Component";
651     }
652
653     QString aTypeName;
654     if (
655         CheckOIType ( theIO, HYPOTHESIS,    "Hypothesis", aTypeName ) ||
656         CheckOIType ( theIO, ALGORITHM,     "Algorithm",  aTypeName ) ||
657         CheckOIType ( theIO, MESH,          "Mesh",       aTypeName ) ||
658         CheckOIType ( theIO, SUBMESH,       "SubMesh",    aTypeName ) ||
659         CheckOIType ( theIO, GROUP,         "Group",      aTypeName )
660         )
661       return aTypeName;
662
663     return "NoType";
664   }
665
666
667   QString CheckHomogeneousSelection()
668   {
669     //SUIT_Study* aStudy = SMESH::GetActiveStudy();
670     LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
671     SALOME_ListIO selected;
672     if( aSel )
673       aSel->selectedObjects( selected );
674
675     QString RefType = CheckTypeObject(selected.First());
676     SALOME_ListIteratorOfListIO It(selected);
677     for (; It.More(); It.Next())
678       {
679         Handle(SALOME_InteractiveObject) IObject = It.Value();
680         QString Type = CheckTypeObject(IObject);
681         if (Type.compare(RefType) != 0)
682           return "Heterogeneous Selection";
683       }
684
685     return RefType;
686   }
687
688
689   void SMESHGUI::OnEditDelete()
690   {
691     // VSR 17/11/04: check if all objects selected belong to SMESH component --> start
692     LightApp_SelectionMgr* aSel = SMESHGUI::selectionMgr();
693     SALOME_ListIO selected; aSel->selectedObjects( selected, QString::null, false );
694
695     QString aParentComponent = QString::null;
696     for( SALOME_ListIteratorOfListIO anIt( selected ); anIt.More(); anIt.Next() )
697     {
698       QString cur = anIt.Value()->getComponentDataType();
699       if( aParentComponent.isNull() )
700         aParentComponent = cur;
701       else if( !aParentComponent.isEmpty() && aParentComponent!=cur )
702         aParentComponent = "";
703     }
704
705     if ( aParentComponent != SMESHGUI::GetSMESHGUI()->name() )  {
706       SUIT_MessageBox::warn1 ( SMESHGUI::desktop(),
707                               QObject::tr("ERR_ERROR"),
708                               QObject::tr("NON_SMESH_OBJECTS_SELECTED").arg( SMESHGUI::GetSMESHGUI()->moduleName() ),
709                               QObject::tr("BUT_OK") );
710       return;
711     }
712     // VSR 17/11/04: check if all objects selected belong to SMESH component <-- finish
713     if (SUIT_MessageBox::warn2
714         (SMESHGUI::desktop(),
715          QObject::tr("SMESH_WRN_WARNING"),
716          QObject::tr("SMESH_REALLY_DELETE"),
717          QObject::tr("SMESH_BUT_YES"), QObject::tr("SMESH_BUT_NO"), 1, 0, 0) != 1)
718       return;
719
720     SalomeApp_Application* anApp = dynamic_cast<SalomeApp_Application*>( SUIT_Session::session()->activeApplication() );
721     SUIT_ViewManager* vm = anApp->activeViewManager();
722     int nbSf = vm->getViewsCount();
723
724     _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
725     _PTR(StudyBuilder) aStudyBuilder = aStudy->NewBuilder();
726     _PTR(GenericAttribute) anAttr;
727     _PTR(AttributeIOR) anIOR;
728
729     SALOME_ListIteratorOfListIO It(selected);
730
731     aStudyBuilder->NewCommand();  // There is a transaction
732     for(; It.More(); It.Next()){
733       Handle(SALOME_InteractiveObject) IObject = It.Value();
734       if(IObject->hasEntry()){
735         _PTR(SObject) SO = aStudy->FindObjectID(IObject->getEntry());
736
737         // disable removal of "SMESH" component object
738         if(SO->FindAttribute(anAttr, "AttributeIOR")){
739           anIOR = anAttr;
740           if ( !strcmp( (char*)anIOR->Value().c_str(), engineIOR().latin1() ) )
741             continue;
742         }
743
744         /* Erase child graphical objects */
745         _PTR(ChildIterator) it = aStudy->NewChildIterator(SO);
746         for(it->InitEx(true); it->More(); it->Next()){
747           _PTR(SObject) CSO = it->Value();
748           if(CSO->FindAttribute(anAttr, "AttributeIOR")){
749             anIOR = anAttr;
750
751             QPtrVector<SUIT_ViewWindow> aViews = vm->getViews();
752             for(int i = 0; i < nbSf; i++){
753               SUIT_ViewWindow *sf = aViews[i];
754               CORBA::String_var anEntry = CSO->GetID().c_str();
755               if(SMESH_Actor* anActor = SMESH::FindActorByEntry(sf,anEntry.in())){
756                 SMESH::RemoveActor(sf,anActor);
757               }
758             }
759           }
760         }
761
762         /* Erase main graphical object */
763         QPtrVector<SUIT_ViewWindow> aViews = vm->getViews();
764         for(int i = 0; i < nbSf; i++){
765           SUIT_ViewWindow *sf = aViews[i];
766           if(SMESH_Actor* anActor = SMESH::FindActorByEntry(sf,IObject->getEntry())){
767             SMESH::RemoveActor(sf,anActor);
768           }
769         }
770
771         // Remove object(s) from data structures
772         _PTR(SObject) obj = aStudy->FindObjectID(IObject->getEntry());
773         if(obj){
774           SMESH::SMESH_GroupBase_var aGroup = SMESH::SMESH_GroupBase::_narrow( SMESH::SObjectToObject( obj ) );
775           SMESH::SMESH_subMesh_var   aSubMesh = SMESH::SMESH_subMesh::_narrow( SMESH::SObjectToObject( obj ) );
776           QString objType = CheckTypeObject(IObject);
777           if ( !aGroup->_is_nil() ) {                          // DELETE GROUP
778             SMESH::SMESH_Mesh_var aMesh = aGroup->GetMesh();
779             aMesh->RemoveGroup( aGroup );
780           }
781           else if ( !aSubMesh->_is_nil() ) {                   // DELETE SUBMESH
782             SMESH::SMESH_Mesh_var aMesh = aSubMesh->GetFather();
783             aMesh->RemoveSubMesh( aSubMesh );
784           }
785           else if ( objType == "Hypothesis" || objType == "Algorithm" ) {// DELETE HYPOTHESIS
786             SMESH::RemoveHypothesisOrAlgorithmOnMesh(IObject);
787             aStudyBuilder->RemoveObjectWithChildren( obj );
788           }
789           else {// default action: remove SObject from the study
790             // san - it's no use opening a transaction here until UNDO/REDO is provided in SMESH
791             //SUIT_Operation *op = new SALOMEGUI_ImportOperation(myActiveStudy);
792             //op->start();
793             aStudyBuilder->RemoveObjectWithChildren( obj );
794             //op->finish();
795           }
796         }
797
798       } /* IObject->hasEntry() */
799     } /* more/next */
800     aStudyBuilder->CommitCommand();
801
802     /* Clear any previous selection */
803     SALOME_ListIO l1;
804     aSel->setSelectedObjects( l1 );
805
806     SMESHGUI::GetSMESHGUI()->updateObjBrowser();
807   }
808 }
809
810 extern "C" {
811   Standard_EXPORT CAM_Module* createModule()
812   {
813     return new SMESHGUI();
814   }
815 }
816
817 SMESH::SMESH_Gen_var SMESHGUI::myComponentSMESH = SMESH::SMESH_Gen::_nil();
818
819 //=============================================================================
820 /*!
821  *
822  */
823 //=============================================================================
824 SMESHGUI::SMESHGUI() :
825 SalomeApp_Module( "SMESH" )
826 {  
827   if ( CORBA::is_nil( myComponentSMESH ) )
828   {
829     CORBA::Boolean anIsEmbeddedMode;
830     myComponentSMESH = SMESH_Client::GetSMESHGen(getApp()->orb(),anIsEmbeddedMode);
831   }
832
833   myActiveDialogBox = 0;
834   myFilterLibraryDlg = 0;
835   myState = -1;
836   myDisplayer = 0;
837
838   SMESH::GetFilterManager();
839   SMESH::GetPattern();
840
841   /* load resources for all available meshers */
842   SMESH::InitAvailableHypotheses();
843 }
844
845 //=============================================================================
846 /*!
847  *
848  */
849 //=============================================================================
850 SMESHGUI::~SMESHGUI()
851 {
852   SMESH::GetFilterManager()->Destroy();
853   SMESH::GetFilterManager() = SMESH::FilterManager::_nil();
854 }
855
856 //=============================================================================
857 /*!
858  *
859  */
860 //=============================================================================
861 LightApp_SelectionMgr* SMESHGUI::selectionMgr()
862 {
863   SalomeApp_Application* anApp = dynamic_cast<SalomeApp_Application*>( SUIT_Session::session()->activeApplication() );
864   if( anApp )
865     return dynamic_cast<LightApp_SelectionMgr*>( anApp->selectionMgr() );
866   else
867     return 0;
868 }
869
870 bool SMESHGUI::automaticUpdate()
871 {
872   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
873   if ( !resMgr )
874     return false;
875
876   return resMgr->booleanValue( "SMESH", "auto_update", false );
877 }
878
879 //=============================================================================
880 /*!
881  *
882  */
883 //=============================================================================
884 SUIT_ResourceMgr* SMESHGUI::resourceMgr()
885 {
886   return dynamic_cast<SUIT_ResourceMgr*>( SUIT_Session::session()->resourceMgr() );
887 }
888
889 //=============================================================================
890 /*!
891  *
892  */
893 //=============================================================================
894 SMESHGUI* SMESHGUI::GetSMESHGUI()
895 {
896   SMESHGUI* smeshMod = 0;
897   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>(SUIT_Session::session()->activeApplication());
898   if ( app )
899   {
900     CAM_Module* module = app->module( "Mesh" );
901     smeshMod = dynamic_cast<SMESHGUI*>( module );
902   }
903
904   if ( smeshMod && smeshMod->application() && smeshMod->application()->activeStudy() )
905   {
906     SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( smeshMod->application()->activeStudy() );
907     if ( study )
908     {
909       _PTR(Study) aStudy = study->studyDS();
910       if ( aStudy )
911         GetSMESHGen()->SetCurrentStudy( _CAST(Study,aStudy)->GetStudy() );
912     }
913   }
914
915   return smeshMod;
916 }
917
918 extern "C"
919 {
920   Standard_EXPORT SMESHGUI* GetComponentGUI()
921   {
922     return SMESHGUI::GetSMESHGUI();
923   }
924 }
925
926 //=============================================================================
927 /*!
928  *
929  */
930 //=============================================================================
931 void SMESHGUI::SetState(int aState)
932 {
933   myState = aState;
934 }
935
936 //=============================================================================
937 /*!
938  *
939  */
940 //=============================================================================
941 void SMESHGUI::ResetState()
942 {
943   myState = -1;
944 }
945
946 //=============================================================================
947 /*!
948  *
949  */
950 //=============================================================================
951 void SMESHGUI::EmitSignalDeactivateDialog()
952 {
953   emit SignalDeactivateActiveDialog();
954 }
955
956 //=============================================================================
957 /*!
958  *
959  */
960 //=============================================================================
961 void SMESHGUI::EmitSignalStudyFrameChanged()
962 {
963   emit SignalStudyFrameChanged();
964 }
965
966 //=============================================================================
967 /*!
968  *
969  */
970 //=============================================================================
971 void SMESHGUI::EmitSignalCloseAllDialogs()
972 {
973   emit SignalCloseAllDialogs();
974 }
975
976 //=============================================================================
977 /*!
978  *
979  */
980 //=============================================================================
981 QDialog *SMESHGUI::GetActiveDialogBox()
982 {
983   return myActiveDialogBox;
984 }
985
986 //=============================================================================
987 /*!
988  *
989  */
990 //=============================================================================
991 void SMESHGUI::SetActiveDialogBox(QDialog * aDlg)
992 {
993   myActiveDialogBox = (QDialog *) aDlg;
994   return;
995 }
996
997 //=============================================================================
998 /*!
999  *
1000  */
1001 //=============================================================================
1002 SUIT_Desktop* SMESHGUI::desktop()
1003 {
1004   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( SUIT_Session::session()->activeApplication() );
1005   if( app )
1006     return app->desktop();
1007   else
1008     return 0;
1009 }
1010
1011 //=============================================================================
1012 /*!
1013  *
1014  */
1015 //=============================================================================
1016 SalomeApp_Study* SMESHGUI::activeStudy()
1017 {
1018   SUIT_Application* app = SUIT_Session::session()->activeApplication();
1019   if( app )
1020     return dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
1021   else
1022     return NULL;
1023 }
1024
1025 //=============================================================================
1026 /*!
1027  *
1028  */
1029 //=============================================================================
1030 bool SMESHGUI::DefineDlgPosition(QWidget * aDlg, int &x, int &y)
1031 {
1032   /* Here the position is on the bottom right corner - 10 */
1033   // aDlg->resize(QSize().expandedTo(aDlg->minimumSizeHint()));
1034   aDlg->adjustSize();
1035   SUIT_Desktop *PP = desktop();
1036   x = abs(PP->x() + PP->size().width() - aDlg->size().width() - 10);
1037   y = abs(PP->y() + PP->size().height() - aDlg->size().height() - 10);
1038   return true;
1039 }
1040
1041 //=============================================================================
1042 /*!
1043  *
1044  */
1045 //=============================================================================
1046 static int isStudyLocked(_PTR(Study) theStudy){
1047   return theStudy->GetProperties()->IsLocked();
1048 }
1049
1050 static bool checkLock(_PTR(Study) theStudy) {
1051   if (isStudyLocked(theStudy)) {
1052     SUIT_MessageBox::warn1 ( SMESHGUI::desktop(),
1053                            QObject::tr("WRN_WARNING"),
1054                            QObject::tr("WRN_STUDY_LOCKED"),
1055                            QObject::tr("BUT_OK") );
1056     return true;
1057   }
1058   return false;
1059 }
1060
1061 //=======================================================================
1062 //function : CheckActiveStudyLocked
1063 //purpose  :
1064 //=======================================================================
1065
1066 bool SMESHGUI::isActiveStudyLocked()
1067 {
1068   _PTR(Study) aStudy = activeStudy()->studyDS();
1069   return checkLock( aStudy );
1070 }
1071
1072 //=============================================================================
1073 /*!
1074  *
1075  */
1076 //=============================================================================
1077 bool SMESHGUI::OnGUIEvent( int theCommandID )
1078 {
1079   SalomeApp_Application* anApp = dynamic_cast<SalomeApp_Application*>( application() );
1080   if( !anApp )
1081     return false;
1082
1083   _PTR(Study) aStudy = SMESH::GetActiveStudyDocument(); //Document OCAF de l'etude active
1084   SUIT_ResourceMgr* mgr = resourceMgr();
1085   if( !mgr )
1086     return false;
1087
1088   if (CORBA::is_nil(GetSMESHGen()->GetCurrentStudy())) {
1089     GetSMESHGen()->SetCurrentStudy(_CAST(Study,aStudy)->GetStudy());
1090   }
1091
1092   SUIT_ViewWindow* view = application()->desktop()->activeWindow();
1093   SVTK_ViewWindow* vtkwnd = dynamic_cast<SVTK_ViewWindow*>( view );
1094
1095   //QAction* act = action( theCommandID );
1096
1097   switch (theCommandID) {
1098   case 33:                                      // DELETE
1099     if(checkLock(aStudy)) break;
1100     OnEditDelete();
1101     break;
1102
1103   case 113:                                     // IMPORT
1104   case 112:
1105   case 111:
1106     {
1107       if(checkLock(aStudy)) break;
1108       ::ImportMeshesFromFile(GetSMESHGen(),theCommandID);
1109       break;
1110     }
1111
1112   case 122:                                     // EXPORT MED
1113   case 121:
1114   case 123:
1115   case 124:
1116   case 125:
1117   case 126:
1118     {
1119       ::ExportMeshToFile(theCommandID);
1120       break;
1121     }
1122
1123   case 200:                                     // SCALAR BAR
1124     {
1125       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1126       SALOME_ListIO selected;
1127       if( aSel )
1128         aSel->selectedObjects( selected );
1129
1130       if( selected.Extent() ) {
1131         Handle(SALOME_InteractiveObject) anIO = selected.First();
1132         if( anIO->hasEntry() ) {
1133           if( SMESH_Actor* anActor = SMESH::FindActorByEntry( anIO->getEntry() ) ) {
1134             anActor->SetControlMode( SMESH_Actor::eNone );
1135           }
1136         }
1137       }
1138       break;
1139     }
1140   case 201:
1141     {
1142       SMESHGUI_Preferences_ScalarBarDlg::ScalarBarProperties( this );
1143       break;
1144     }
1145
1146   case 1134: // Clipping
1147   case 1133: // Tranparency
1148   case 1132: // Colors / Size
1149
1150     // Display Mode
1151   case 215: // Nodes
1152   case 213: // Nodes
1153   case 212: // Nodes
1154   case 211: // Nodes
1155     ::SetDisplayMode(theCommandID);
1156   break;
1157
1158     // Display Entity
1159   case 217: // Edges
1160   case 218: // Faces
1161   case 219: // Volumes
1162   case 220: // All Entity
1163     ::SetDisplayEntity(theCommandID);
1164   break;
1165
1166   case 214:                                     // UPDATE
1167     {
1168       if(checkLock(aStudy)) break;
1169       SMESH::UpdateView();
1170
1171       SALOME_ListIO l;
1172       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1173       aSel->selectedObjects( l );
1174       aSel->setSelectedObjects( l );
1175       break;
1176     }
1177
1178   case 300:                                     // ERASE
1179   case 301:                                     // DISPLAY
1180   case 302:                                     // DISPLAY ONLY
1181     {
1182       SMESH::EDisplaing anAction;
1183       switch (theCommandID) {
1184       case 300: anAction = SMESH::eErase; break;
1185       case 301: anAction = SMESH::eDisplay; break;
1186       case 302: anAction = SMESH::eDisplayOnly; break;
1187       }
1188
1189       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1190       SALOME_ListIO sel_objects, to_process;
1191       if (aSel)
1192         aSel->selectedObjects( sel_objects );
1193
1194       if( theCommandID==302 )
1195         startOperation( myEraseAll );
1196
1197       extractContainers( sel_objects, to_process );
1198
1199       if (vtkwnd) {
1200         SALOME_ListIteratorOfListIO It( to_process );
1201         for (; It.More(); It.Next()) {
1202           Handle(SALOME_InteractiveObject) IOS = It.Value();
1203           if (IOS->hasEntry()) {
1204             SMESH::UpdateView(anAction, IOS->getEntry());
1205             if (anAction == SMESH::eDisplayOnly)
1206               anAction = SMESH::eDisplay;
1207           }
1208         }
1209       }
1210
1211       if (anAction == SMESH::eErase) {
1212         SALOME_ListIO l1;
1213         aSel->setSelectedObjects( l1 );
1214       }
1215       else
1216         aSel->setSelectedObjects( to_process );
1217       break;
1218     }
1219
1220   case 400:                                     // NODES
1221     {
1222       if(checkLock(aStudy)) break;
1223
1224       if ( vtkwnd ) {
1225         EmitSignalDeactivateDialog();
1226
1227         new SMESHGUI_NodesDlg(this);
1228       }
1229       else {
1230         SUIT_MessageBox::warn1(desktop(),
1231                               tr("SMESH_WRN_WARNING"),
1232                               tr("SMESH_WRN_VIEWER_VTK"),
1233                               tr("SMESH_BUT_OK"));
1234       }
1235       break;
1236     }
1237
1238   case 2151:  // FILTER
1239   {
1240     if ( vtkwnd )
1241     {
1242       EmitSignalDeactivateDialog();
1243       new SMESHGUI_FilterDlg( this, SMESH::EDGE );
1244     }
1245     break;
1246   }
1247
1248   case 406:                                     // MOVE NODE
1249     {
1250       if ( !vtkwnd )
1251       {
1252         SUIT_MessageBox::warn1( desktop(), tr( "SMESH_WRN_WARNING" ),
1253           tr( "NOT_A_VTK_VIEWER" ),tr( "SMESH_BUT_OK" ) );
1254         break;
1255       }
1256
1257       if(checkLock(aStudy)) break;
1258       new SMESHGUI_MoveNodesDlg(this);
1259       break;
1260     }
1261
1262   case 701:                                     // COMPUTE MESH
1263     {
1264       if(checkLock(aStudy)) break;
1265
1266       LightApp_SelectionMgr *Sel = selectionMgr();
1267       SALOME_ListIO selected; Sel->selectedObjects( selected );
1268
1269       if ( vtkwnd ) {
1270         int nbSel = selected.Extent();
1271         if (nbSel != 1){
1272           break;
1273         }
1274
1275         SMESH::SMESH_Mesh_var aMesh;
1276         SMESH::SMESH_subMesh_var aSubMesh;
1277         Handle(SALOME_InteractiveObject) IObject = selected.First();
1278         if (IObject->hasEntry()) {
1279           _PTR(SObject) aMeshSObj = aStudy->FindObjectID(IObject->getEntry());
1280           GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh( aMeshSObj );
1281           if ( aShapeObject->_is_nil() ) {
1282             // imported mesh
1283             break;
1284           }
1285           if( aMeshSObj ) {
1286             aMesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>(aMeshSObj);
1287             aSubMesh = SMESH::SObjectToInterface<SMESH::SMESH_subMesh>(aMeshSObj);
1288             if ( !aSubMesh->_is_nil() )
1289               aMesh = aSubMesh->GetFather();
1290
1291             if (!aMesh->_is_nil()) {
1292 //               if(!GetSMESHGen()->IsReadyToCompute(aMesh,aShapeObject)) {
1293 //                 SUIT_MessageBox::warn1(desktop(),
1294 //                                        tr("SMESH_WRN_WARNING"),
1295 //                                        tr("SMESH_WRN_MISSING_PARAMETERS"),
1296 //                                        tr("SMESH_BUT_OK"));
1297 //                 break;
1298 //               }
1299               SMESH::algo_error_array_var errors = GetSMESHGen()->GetAlgoState(aMesh,aShapeObject);
1300               if ( errors->length() > 0 ) {
1301                 SUIT_MessageBox::warn1(desktop(),
1302                                        tr("SMESH_WRN_WARNING"),
1303                                        SMESH::GetMessageOnAlgoStateErrors( errors.in() ),
1304                                        tr("SMESH_BUT_OK"));
1305                 break;
1306               }
1307               try{
1308                 if (GetSMESHGen()->Compute(aMesh,aShapeObject))
1309                   SMESH::ModifiedMesh(aMeshSObj,true);
1310                 else
1311                   SUIT_MessageBox::warn1(desktop(),
1312                                          tr("SMESH_WRN_WARNING"),
1313                                          tr("SMESH_WRN_COMPUTE_FAILED"),
1314                                          tr("SMESH_BUT_OK"));
1315               }
1316               catch(const SALOME::SALOME_Exception & S_ex){
1317                 SalomeApp_Tools::QtCatchCorbaException(S_ex);
1318               }
1319             }
1320           }
1321         }
1322         CORBA::Long anId = aStudy->StudyId();
1323         TVisualObjPtr aVisualObj = SMESH::GetVisualObj(anId,IObject->getEntry());
1324         if ( automaticUpdate() && aVisualObj){
1325           aVisualObj->Update();
1326           SMESH_Actor* anActor = SMESH::FindActorByEntry(IObject->getEntry());
1327           if(!anActor){
1328             anActor = SMESH::CreateActor(aStudy,IObject->getEntry());
1329             if(anActor){
1330               SMESH::DisplayActor(view,anActor); //apo
1331               SMESH::FitAll();
1332             }
1333           }
1334           SMESH::RepaintCurrentView();
1335         }
1336       }else{
1337         SUIT_MessageBox::warn1(desktop(),
1338                               tr("SMESH_WRN_WARNING"),
1339                               tr("SMESH_WRN_VIEWER_VTK"),
1340                               tr("SMESH_BUT_OK"));
1341       }
1342       updateObjBrowser();
1343       Sel->setSelectedObjects( selected );
1344       break;
1345     }
1346
1347   case 702:  // Create mesh
1348     startOperation( 702 );
1349     break;
1350   case 703:  // Create sub-mesh
1351     startOperation( 703 );
1352     break;
1353   case 704: // Edit mesh/sub-mesh
1354     startOperation( 704 );
1355     break;
1356   case 407: // DIAGONAL INVERSION
1357   case 408: // Delete diagonal
1358     {
1359       if ( !vtkwnd )
1360       {
1361         SUIT_MessageBox::warn1( desktop(), tr( "SMESH_WRN_WARNING" ),
1362           tr( "NOT_A_VTK_VIEWER" ),tr( "SMESH_BUT_OK" ) );
1363         break;
1364       }
1365
1366       if ( checkLock( aStudy ) )
1367         break;
1368
1369       /*Standard_Boolean aRes;
1370       SMESH::SMESH_Mesh_var aMesh = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IObject);
1371       if ( aMesh->_is_nil() )
1372       {
1373         SUIT_MessageBox::warn1(GetDesktop(), tr( "SMESH_WRN_WARNING" ),
1374           tr( "SMESH_BAD_SELECTION" ), tr( "SMESH_BUT_OK" ) );
1375         break;
1376       }
1377       */
1378       EmitSignalDeactivateDialog();
1379       if ( theCommandID == 407 )
1380         new SMESHGUI_TrianglesInversionDlg(this);
1381       else
1382         new SMESHGUI_UnionOfTwoTrianglesDlg(this);
1383       break;
1384     }
1385     case 409: // Change orientation
1386     case 410: // Union of triangles
1387     case 411: // Cutting of quadrangles
1388     {
1389       if ( !vtkwnd )
1390       {
1391         SUIT_MessageBox::warn1( desktop(), tr( "SMESH_WRN_WARNING" ),
1392           tr( "NOT_A_VTK_VIEWER" ),tr( "SMESH_BUT_OK" ) );
1393         break;
1394       }
1395
1396       if ( checkLock( aStudy ) )
1397         break;
1398
1399       EmitSignalDeactivateDialog();
1400       SMESHGUI_MultiEditDlg* aDlg = NULL;
1401       if ( theCommandID == 409 )
1402         aDlg = new SMESHGUI_ChangeOrientationDlg(this);
1403       else if ( theCommandID == 410 )
1404         aDlg = new SMESHGUI_UnionOfTrianglesDlg(this);
1405       else
1406         aDlg = new SMESHGUI_CuttingOfQuadsDlg(this);
1407
1408       aDlg->show();
1409       break;
1410     }
1411   case 412: // Smoothing
1412     {
1413       if(checkLock(aStudy)) break;
1414       if( vtkwnd ) {
1415         EmitSignalDeactivateDialog();
1416         new SMESHGUI_SmoothingDlg( this );
1417       }
1418       else {
1419         SUIT_MessageBox::warn1(desktop(),
1420                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1421                               tr("SMESH_BUT_OK"));
1422       }
1423       break;
1424     }
1425   case 413: // Extrusion
1426     {
1427       if (checkLock(aStudy)) break;
1428       if (vtkwnd) {
1429         EmitSignalDeactivateDialog();
1430         new SMESHGUI_ExtrusionDlg ( this );
1431       } else {
1432         SUIT_MessageBox::warn1(desktop(),
1433                                tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1434                                tr("SMESH_BUT_OK"));
1435       }
1436       break;
1437     }
1438   case 414: // Revolution
1439     {
1440       if(checkLock(aStudy)) break;
1441       if( vtkwnd ) {
1442         EmitSignalDeactivateDialog();
1443         new SMESHGUI_RevolutionDlg( this );
1444       }
1445       else {
1446         SUIT_MessageBox::warn1(desktop(),
1447                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1448                               tr("SMESH_BUT_OK"));
1449       }
1450       break;
1451     }
1452   case 415: // Pattern mapping
1453     {
1454       if ( checkLock( aStudy ) )
1455         break;
1456       if ( vtkwnd )
1457       {
1458         EmitSignalDeactivateDialog();
1459         new SMESHGUI_MeshPatternDlg( this );
1460       }
1461       else {
1462         SUIT_MessageBox::warn1(desktop(),
1463                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1464                               tr("SMESH_BUT_OK"));
1465       }
1466       break;
1467     }
1468   case 416: // Extrusion along a path
1469     {
1470       if (checkLock(aStudy)) break;
1471       if (vtkwnd) {
1472         EmitSignalDeactivateDialog();
1473         new SMESHGUI_ExtrusionAlongPathDlg( this );
1474       } else {
1475         SUIT_MessageBox::warn1(desktop(),
1476                                tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1477                                tr("SMESH_BUT_OK"));
1478       }
1479       break;
1480     }
1481   case 801:                                     // CREATE GROUP
1482     {
1483       if ( !vtkwnd )
1484       {
1485         SUIT_MessageBox::warn1( desktop(), tr( "SMESH_WRN_WARNING" ),
1486           tr( "NOT_A_VTK_VIEWER" ),tr( "SMESH_BUT_OK" ) );
1487         break;
1488       }
1489
1490       if(checkLock(aStudy)) break;
1491       EmitSignalDeactivateDialog();
1492       SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_nil();
1493
1494       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1495       SALOME_ListIO selected;
1496       if( aSel )
1497         aSel->selectedObjects( selected );
1498
1499       int nbSel = selected.Extent();
1500       if (nbSel == 1) {
1501         // check if mesh is selected
1502         aMesh = SMESH::GetMeshByIO( selected.First() );
1503       }
1504       SMESHGUI_GroupDlg *aDlg = new SMESHGUI_GroupDlg( this, "", aMesh);
1505       aDlg->show();
1506       break;
1507     }
1508
1509   case 802:                                     // CONSTRUCT GROUP
1510     {
1511       if ( !vtkwnd )
1512       {
1513         SUIT_MessageBox::warn1( desktop(), tr( "SMESH_WRN_WARNING" ),
1514           tr( "NOT_A_VTK_VIEWER" ),tr( "SMESH_BUT_OK" ) );
1515         break;
1516       }
1517
1518       if(checkLock(aStudy)) break;
1519       EmitSignalDeactivateDialog();
1520
1521       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1522       SALOME_ListIO selected;
1523       if( aSel )
1524         aSel->selectedObjects( selected );
1525
1526       int nbSel = selected.Extent();
1527       if (nbSel == 1) {
1528         // check if submesh is selected
1529         Handle(SALOME_InteractiveObject) IObject = selected.First();
1530         if (IObject->hasEntry()) {
1531           _PTR(SObject) aSObj = aStudy->FindObjectID(IObject->getEntry());
1532           if( aSObj ) {
1533             SMESH::SMESH_subMesh_var aSubMesh = SMESH::SMESH_subMesh::_narrow( SMESH::SObjectToObject( aSObj ) );
1534             if (!aSubMesh->_is_nil()) {
1535               try {
1536                 SMESH::SMESH_Mesh_var aMesh = aSubMesh->GetFather();
1537                 // get submesh elements list by types
1538                 SMESH::long_array_var aNodes = aSubMesh->GetElementsByType(SMESH::NODE);
1539                 SMESH::long_array_var aEdges = aSubMesh->GetElementsByType(SMESH::EDGE);
1540                 SMESH::long_array_var aFaces = aSubMesh->GetElementsByType(SMESH::FACE);
1541                 SMESH::long_array_var aVolumes = aSubMesh->GetElementsByType(SMESH::VOLUME);
1542                 // create group for each type o elements
1543                 QString aName = IObject->getName();
1544                 if (aNodes->length() > 0) {
1545                   SMESH::SMESH_Group_var aGroup = SMESH::AddGroup(aMesh, SMESH::NODE, aName + "_Nodes");
1546                   aGroup->Add(aNodes.inout());
1547                 }
1548                 if (aEdges->length() > 0) {
1549                   SMESH::SMESH_Group_var aGroup = SMESH::AddGroup(aMesh, SMESH::EDGE, aName + "_Edges");
1550                   aGroup->Add(aEdges.inout());
1551                 }
1552                 if (aFaces->length() > 0) {
1553                   SMESH::SMESH_Group_var aGroup = SMESH::AddGroup(aMesh, SMESH::FACE, aName + "_Faces");
1554                   aGroup->Add(aFaces.inout());
1555                 }
1556                 if (aVolumes->length() > 0) {
1557                   SMESH::SMESH_Group_var aGroup = SMESH::AddGroup(aMesh, SMESH::VOLUME, aName + "_Volumes");
1558                   aGroup->Add(aVolumes.inout());
1559                 }
1560                 updateObjBrowser();
1561
1562               }catch(const SALOME::SALOME_Exception & S_ex){
1563                 SalomeApp_Tools::QtCatchCorbaException(S_ex);
1564               }
1565             }
1566           }
1567         }
1568       }
1569       break;
1570     }
1571
1572   case 803:                                     // EDIT GROUP
1573     {
1574       if ( !vtkwnd )
1575       {
1576         SUIT_MessageBox::warn1( desktop(), tr( "SMESH_WRN_WARNING" ),
1577           tr( "NOT_A_VTK_VIEWER" ),tr( "SMESH_BUT_OK" ) );
1578         break;
1579       }
1580
1581       if(checkLock(aStudy)) break;
1582       EmitSignalDeactivateDialog();
1583
1584       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1585       SALOME_ListIO selected;
1586       if( aSel )
1587         aSel->selectedObjects( selected );
1588
1589       SALOME_ListIteratorOfListIO It (selected);
1590       int nbSelectedGroups = 0;
1591       for ( ; It.More(); It.Next() )
1592       {
1593         SMESH::SMESH_GroupBase_var aGroup =
1594           SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(It.Value());
1595         if (!aGroup->_is_nil()) {
1596           nbSelectedGroups++;
1597           SMESHGUI_GroupDlg *aDlg = new SMESHGUI_GroupDlg( this, "", aGroup);
1598           aDlg->show();
1599         }
1600       }
1601       if (nbSelectedGroups == 0)
1602         {
1603           SMESHGUI_GroupDlg *aDlg = new SMESHGUI_GroupDlg( this, "", SMESH::SMESH_GroupBase::_nil());
1604           aDlg->show();
1605         }
1606       break;
1607     }
1608
1609   case 804:                                     // Add elements to group
1610     {
1611       if(checkLock(aStudy)) break;
1612       if (myState == 800) {
1613         SMESHGUI_GroupDlg *aDlg = (SMESHGUI_GroupDlg*) myActiveDialogBox;
1614         if (aDlg) aDlg->onAdd();
1615       }
1616       break;
1617     }
1618
1619   case 805:                                     // Remove elements from group
1620     {
1621       if(checkLock(aStudy)) break;
1622       if (myState == 800) {
1623         SMESHGUI_GroupDlg *aDlg = (SMESHGUI_GroupDlg*) myActiveDialogBox;
1624         if (aDlg) aDlg->onRemove();
1625       }
1626       break;
1627     }
1628
1629     case 810: // Union Groups
1630     case 811: // Intersect groups
1631     case 812: // Cut groups
1632     {
1633       if ( !vtkwnd )
1634       {
1635         SUIT_MessageBox::warn1( desktop(), tr( "SMESH_WRN_WARNING" ),
1636           tr( "NOT_A_VTK_VIEWER" ),tr( "SMESH_BUT_OK" ) );
1637         break;
1638       }
1639
1640       if ( checkLock( aStudy ) )
1641         break;
1642
1643       EmitSignalDeactivateDialog();
1644
1645       int aMode;
1646       if      ( theCommandID == 810 ) aMode = SMESHGUI_GroupOpDlg::UNION;
1647       else if ( theCommandID == 811 ) aMode = SMESHGUI_GroupOpDlg::INTERSECT;
1648       else                            aMode = SMESHGUI_GroupOpDlg::CUT;
1649
1650       ( new SMESHGUI_GroupOpDlg( this, aMode ) )->show();
1651       break;
1652     }
1653
1654     case 813: // Delete groups with their contents
1655     {
1656       if ( !vtkwnd )
1657       {
1658         SUIT_MessageBox::warn1( desktop(), tr( "SMESH_WRN_WARNING" ),
1659           tr( "NOT_A_VTK_VIEWER" ),tr( "SMESH_BUT_OK" ) );
1660         break;
1661       }
1662
1663       if ( checkLock( aStudy ) )
1664         break;
1665
1666       EmitSignalDeactivateDialog();
1667
1668       new SMESHGUI_DeleteGroupDlg( this );
1669       break;
1670     }
1671
1672   case 900:                                     // MESH INFOS
1673     {
1674       EmitSignalDeactivateDialog();
1675       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1676       SALOME_ListIO selected;
1677       if( aSel )
1678         aSel->selectedObjects( selected );
1679
1680       if ( selected.Extent() > 1 ) { // a dlg for each IO
1681         SALOME_ListIO IOs;
1682         SALOME_ListIteratorOfListIO It (selected);
1683         for ( ; It.More(); It.Next() ) {
1684           IOs.Clear(); IOs.Append( It.Value() );
1685           aSel->setSelectedObjects( IOs );
1686           new SMESHGUI_MeshInfosDlg(this, "", false);
1687         }
1688         // restore selection
1689         aSel->setSelectedObjects( selected );
1690       }
1691       else
1692         new SMESHGUI_MeshInfosDlg(this, "", false);
1693       break;
1694     }
1695
1696   case 902:                                     // STANDARD MESH INFOS
1697     {
1698       EmitSignalDeactivateDialog();
1699       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1700       SALOME_ListIO selected;
1701       if( aSel )
1702         aSel->selectedObjects( selected );
1703
1704       if ( selected.Extent() > 1 ) { // a dlg for each IO
1705         SALOME_ListIO IOs;
1706         SALOME_ListIteratorOfListIO It (selected);
1707         for ( ; It.More(); It.Next() ) {
1708           IOs.Clear();
1709           IOs.Append( It.Value() );
1710           aSel->setSelectedObjects( IOs );
1711           new SMESHGUI_StandardMeshInfosDlg( this, "", false);
1712         }
1713         // restore selection
1714         aSel->setSelectedObjects( selected );
1715       }
1716       else
1717         new SMESHGUI_StandardMeshInfosDlg( this, "", false);
1718       break;
1719     }
1720
1721   case 1100:                                    // EDIT HYPOTHESIS
1722     {
1723       if(checkLock(aStudy)) break;
1724
1725       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1726       SALOME_ListIO selected;
1727       if( aSel )
1728         aSel->selectedObjects( selected );
1729
1730       int nbSel = selected.Extent();
1731
1732       if (nbSel == 1) {
1733         SMESH::SMESH_Hypothesis_var Hyp = SMESH::IObjectToInterface<SMESH::SMESH_Hypothesis>(selected.First());
1734
1735         /* Look for all mesh objects that have this hypothesis affected in order to flag as ModifiedMesh */
1736         /* At end below '...->updateObjBrowser(true)' will change icon of mesh objects                   */
1737         /* Warning : however by internal mechanism all subMeshes icons are changed !                     */
1738         if ( !Hyp->_is_nil() )
1739         {
1740           char* sName = Hyp->GetName();
1741           SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(sName);
1742           if (aCreator)
1743             aCreator->edit( Hyp.in(), desktop() );
1744           else
1745           {
1746             // report error
1747           }
1748         }
1749       }
1750       updateObjBrowser( true );
1751       break;
1752     }
1753
1754   case 1101:                                    // RENAME
1755     {
1756       if ( checkLock( aStudy ) )
1757         break;
1758
1759       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1760       SALOME_ListIO selected;
1761       if( aSel )
1762         aSel->selectedObjects( selected );
1763
1764       SALOME_ListIteratorOfListIO It( selected );
1765       for ( ; It.More(); It.Next() )
1766       {
1767         Handle(SALOME_InteractiveObject) IObject = It.Value();
1768         _PTR(SObject) obj = aStudy->FindObjectID( IObject->getEntry() );
1769         _PTR(GenericAttribute) anAttr;
1770         _PTR(AttributeName) aName;
1771         if ( obj )
1772         {
1773           if ( obj->FindAttribute(anAttr, "AttributeName") )
1774           {
1775             aName = anAttr;
1776             QString newName = QString(aName->Value().c_str());
1777             newName = LightApp_NameDlg::getName(desktop(), newName);
1778             if ( !newName.isEmpty() )
1779             {
1780               //old source: aStudy->renameIObject( IObject, newName );
1781               aName->SetValue( newName.latin1() );
1782
1783               // if current object is group update group's name
1784               SMESH::SMESH_GroupBase_var aGroup =
1785                 SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IObject);
1786               if (!aGroup->_is_nil() )
1787                 aGroup->SetName( newName.latin1() );
1788
1789               updateObjBrowser();
1790             }
1791           }
1792         }
1793       }
1794       break;
1795     }
1796
1797   case 1102:                                    // REMOVE HYPOTHESIS / ALGORITHMS
1798     {
1799       if(checkLock(aStudy)) break;
1800       SUIT_OverrideCursor wc;
1801
1802       LightApp_SelectionMgr *aSel = SMESHGUI::selectionMgr();
1803       SALOME_ListIO selected;
1804       if( aSel )
1805         aSel->selectedObjects( selected, QString::null, false );
1806
1807       SALOME_ListIteratorOfListIO It(selected);
1808       for (int i = 0; It.More(); It.Next(), i++) {
1809         Handle(SALOME_InteractiveObject) IObject = It.Value();
1810         SMESH::RemoveHypothesisOrAlgorithmOnMesh(IObject);
1811       }
1812       SALOME_ListIO l1;
1813       aSel->setSelectedObjects( l1 );
1814       updateObjBrowser();
1815       break;
1816     }
1817
1818   case 401:                                     // GEOM::EDGE
1819   case 4021:                                    // TRIANGLE
1820   case 4022:                                    // QUAD
1821   case 4023:                                    // POLYGON
1822   case 4031:                                    // TETRA
1823   case 4032:                                    // HEXA
1824     {
1825       if(checkLock(aStudy)) break;
1826       if ( vtkwnd ) {
1827         EmitSignalDeactivateDialog();
1828         SMDSAbs_ElementType type    = SMDSAbs_Edge;
1829         int                 nbNodes = 2;
1830         switch (theCommandID) {
1831         case 4021:                                      // TRIANGLE
1832           type = SMDSAbs_Face; nbNodes = 3; break;
1833         case 4022:                                      // QUAD
1834           type = SMDSAbs_Face; nbNodes = 4; break;
1835         case 4031:                                      // TETRA
1836           type = SMDSAbs_Volume; nbNodes = 4; break;
1837         case 4023:                                      // POLYGON
1838           type = SMDSAbs_Face; nbNodes = 5; break;     // 5 - identificator for POLYGON
1839         case 4032:                                      // HEXA
1840           type = SMDSAbs_Volume; nbNodes = 8; break;
1841         case 4033:                                      // POLYHEDRE
1842           type = SMDSAbs_Volume; nbNodes = 9; break; // 9 - identificator for POLYHEDRE
1843         default:;
1844         }
1845         new SMESHGUI_AddMeshElementDlg( this, "", type, nbNodes);
1846       }
1847       else {
1848         SUIT_MessageBox::warn1(desktop(),
1849                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1850                               tr("SMESH_BUT_OK"));
1851       }
1852       break;
1853     }
1854   case 4033:                                    // POLYHEDRON
1855     {
1856       if(checkLock(aStudy)) break;
1857       if ( vtkwnd ) {
1858         EmitSignalDeactivateDialog();
1859         new SMESHGUI_CreatePolyhedralVolumeDlg(this, "", FALSE );
1860       }
1861       else {
1862         SUIT_MessageBox::warn1(SMESHGUI::desktop(),
1863                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1864                               tr("SMESH_BUT_OK"));
1865       }
1866       break;
1867     }
1868   case 4034:     // QUADRATIC EDGE
1869   case 4035:     // QUADRATIC TRIANGLE
1870   case 4036:     // QUADRATIC QUADRANGLE
1871   case 4037:     // QUADRATIC TETRAHEDRON
1872   case 4038:     // QUADRATIC PYRAMID
1873   case 4039:     // QUADRATIC PENTAHEDRON
1874   case 4040:     // QUADRATIC HEXAHEDRON
1875     {
1876       if(checkLock(aStudy)) break;
1877       if ( vtkwnd ) {
1878         EmitSignalDeactivateDialog();
1879         int type;
1880
1881         switch (theCommandID) {
1882         case 4034:                                      
1883           type = QUAD_EDGE; break;
1884         case 4035:                                      
1885           type = QUAD_TRIANGLE; break;
1886         case 4036:                                     
1887           type = QUAD_QUADRANGLE; break;
1888         case 4037:                                     
1889           type = QUAD_TETRAHEDRON; break;
1890         case 4038:                                     
1891           type = QUAD_PYRAMID; break; 
1892         case 4039:                                     
1893           type = QUAD_PENTAHEDRON; break; 
1894         case 4040:
1895           type = QUAD_HEXAHEDRON;
1896           break;
1897         default:;
1898         }
1899          new SMESHGUI_AddQuadraticElementDlg( this, type );
1900       }
1901       else {
1902         SUIT_MessageBox::warn1(SMESHGUI::desktop(),
1903                                tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1904                                tr("SMESH_BUT_OK"));
1905       }
1906       break;
1907     }
1908   case 4041:                                    // REMOVES NODES
1909     {
1910       if(checkLock(aStudy)) break;
1911       if ( vtkwnd ) {
1912         EmitSignalDeactivateDialog();
1913         new SMESHGUI_RemoveNodesDlg(this);
1914       }
1915       else {
1916         SUIT_MessageBox::warn1(desktop(),
1917                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1918                               tr("SMESH_BUT_OK"));
1919       }
1920       break;
1921     }
1922   case 4042:                                    // REMOVES ELEMENTS
1923     {
1924       if(checkLock(aStudy)) break;
1925       if( vtkwnd ) {
1926         EmitSignalDeactivateDialog();
1927         new SMESHGUI_RemoveElementsDlg(this);
1928       }
1929       else
1930         {
1931           SUIT_MessageBox::warn1(desktop(),
1932                                 tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1933                                 tr("SMESH_BUT_OK"));
1934         }
1935       break;
1936     }
1937   case 4051:                                    // RENUMBERING NODES
1938     {
1939       if(checkLock(aStudy)) break;
1940       if( vtkwnd ) {
1941         EmitSignalDeactivateDialog();
1942         new SMESHGUI_RenumberingDlg( this, "", 0);
1943       }
1944       else
1945         {
1946           SUIT_MessageBox::warn1(desktop(),
1947                                 tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1948                                 tr("SMESH_BUT_OK"));
1949         }
1950       break;
1951     }
1952   case 4052:                                    // RENUMBERING ELEMENTS
1953     {
1954       if(checkLock(aStudy)) break;
1955       if ( vtkwnd ) {
1956         EmitSignalDeactivateDialog();
1957         new SMESHGUI_RenumberingDlg( this, "", 1);
1958       }
1959       else
1960         {
1961           SUIT_MessageBox::warn1(desktop(),
1962                                 tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1963                                 tr("SMESH_BUT_OK"));
1964         }
1965       break;
1966     }
1967   case 4061:                                   // TRANSLATION
1968     {
1969       if(checkLock(aStudy)) break;
1970       if ( vtkwnd ) {
1971         EmitSignalDeactivateDialog();
1972         new SMESHGUI_TranslationDlg( this );
1973       }
1974       else {
1975         SUIT_MessageBox::warn1(desktop(),
1976                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1977                               tr("SMESH_BUT_OK"));
1978       }
1979       break;
1980     }
1981   case 4062:                                   // ROTATION
1982     {
1983       if(checkLock(aStudy)) break;
1984       if( vtkwnd ) {
1985         EmitSignalDeactivateDialog();
1986         new SMESHGUI_RotationDlg( this );
1987       }
1988       else {
1989         SUIT_MessageBox::warn1(desktop(),
1990                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
1991                               tr("SMESH_BUT_OK"));
1992       }
1993       break;
1994     }
1995   case 4063:                                   // SYMMETRY
1996     {
1997       if(checkLock(aStudy)) break;
1998       if(vtkwnd) {
1999         EmitSignalDeactivateDialog();
2000         new SMESHGUI_SymmetryDlg( this );
2001       }
2002       else {
2003         SUIT_MessageBox::warn1(desktop(),
2004                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
2005                               tr("SMESH_BUT_OK"));
2006       }
2007       break;
2008     }
2009   case 4064:                                   // SEWING
2010     {
2011       if(checkLock(aStudy)) break;
2012       if(vtkwnd) {
2013         EmitSignalDeactivateDialog();
2014         new SMESHGUI_SewingDlg( this );
2015       }
2016       else {
2017         SUIT_MessageBox::warn1(desktop(),
2018                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
2019                               tr("SMESH_BUT_OK"));
2020       }
2021       break;
2022     }
2023   case 4065:                                   // MERGE NODES
2024     {
2025       if(checkLock(aStudy)) break;
2026       if(vtkwnd) {
2027         EmitSignalDeactivateDialog();
2028         new SMESHGUI_MergeNodesDlg( this );
2029       }
2030       else {
2031         SUIT_MessageBox::warn1(desktop(),
2032                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
2033                               tr("SMESH_BUT_OK"));
2034       }
2035       break;
2036     }
2037   case 4066: // MERGE EQUAL ELEMENTS
2038     {
2039       if (checkLock(aStudy)) break;
2040       if (vtkwnd) {
2041         EmitSignalDeactivateDialog();
2042         new SMESHGUI_EditMeshDlg(this,
2043                                  "SMESH_MERGE_ELEMENTS_TITLE",
2044                                  "ICON_DLG_MERGE_ELEMENTS",
2045                                  1); // MergeEqualElemets
2046       } else {
2047         SUIT_MessageBox::warn1(desktop(),
2048                               tr("SMESH_WRN_WARNING"), tr("SMESH_WRN_VIEWER_VTK"),
2049                               tr("SMESH_BUT_OK"));
2050       }
2051       break;
2052     }
2053
2054   case 5105: // Library of selection filters
2055   {
2056     static QValueList<int> aTypes;
2057     if ( aTypes.isEmpty() )
2058     {
2059       aTypes.append( SMESH::NODE );
2060       aTypes.append( SMESH::EDGE );
2061       aTypes.append( SMESH::FACE );
2062       aTypes.append( SMESH::VOLUME );
2063     }
2064     if (!myFilterLibraryDlg)
2065       myFilterLibraryDlg = new SMESHGUI_FilterLibraryDlg( this, SMESH::GetDesktop( this ), aTypes, SMESHGUI_FilterLibraryDlg::EDIT );
2066     else if (myFilterLibraryDlg->isHidden())
2067       myFilterLibraryDlg->show();
2068     myFilterLibraryDlg->raise();
2069   }
2070   break;
2071
2072   case 6017:                                    // CONTROLS
2073   case 6016:
2074   case 6015:
2075   case 6014:
2076   case 6013:
2077   case 6012:
2078   case 6011:
2079   case 6001:
2080   case 6018:
2081   case 6019:
2082   case 6002:
2083   case 6003:
2084   case 6004:
2085   case 6009:
2086     if ( vtkwnd ) {
2087
2088       LightApp_SelectionMgr* mgr = selectionMgr();
2089       SALOME_ListIO selected; mgr->selectedObjects( selected );
2090
2091       if ( selected.Extent() == 1 && selected.First()->hasEntry() ) {
2092         _PTR(SObject) SO = aStudy->FindObjectID( selected.First()->getEntry() );
2093         if ( SO ) {
2094           CORBA::Object_var aObject = SMESH::SObjectToObject( SO );
2095           SMESH::SMESH_Mesh_var      aMesh    = SMESH::SMESH_Mesh::_narrow( aObject );
2096           SMESH::SMESH_subMesh_var   aSubMesh = SMESH::SMESH_subMesh::_narrow( aObject );
2097           SMESH::SMESH_GroupBase_var aGroup   = SMESH::SMESH_GroupBase::_narrow( aObject );
2098           if ( !aMesh->_is_nil() || !aSubMesh->_is_nil() || !aGroup->_is_nil() ) {
2099             ::Control( theCommandID );
2100             break;
2101           }
2102         }
2103       }
2104       SUIT_MessageBox::warn1(desktop(),
2105                             tr( "SMESH_WRN_WARNING" ),
2106                             tr( "SMESH_BAD_SELECTION" ),
2107                             tr( "SMESH_BUT_OK" ) );
2108       break;
2109     }
2110     else {
2111       SUIT_MessageBox::warn1(desktop(),
2112                             tr( "SMESH_WRN_WARNING" ),
2113                             tr( "NOT_A_VTK_VIEWER" ),
2114                             tr( "SMESH_BUT_OK" ) );
2115     }
2116     break;
2117   case 9010:
2118     {
2119       LightApp_SelectionMgr* mgr = selectionMgr();
2120       SALOME_ListIO selected; mgr->selectedObjects( selected );
2121
2122       if (selected.Extent() == 1)       {
2123         Handle(SALOME_InteractiveObject) anIObject = selected.First();
2124         if(anIObject->hasEntry())
2125           if(SMESH_Actor *anActor = SMESH::FindActorByEntry(anIObject->getEntry())){
2126             anActor->SetPointsLabeled( !anActor->GetPointsLabeled() );
2127           }
2128       }
2129       break;
2130     }
2131   case 9011:
2132     {
2133       LightApp_SelectionMgr* mgr = selectionMgr();
2134       SALOME_ListIO selected; mgr->selectedObjects( selected );
2135
2136       if (selected.Extent() == 1)       {
2137         Handle(SALOME_InteractiveObject) anIObject = selected.First();
2138         if(anIObject->hasEntry())
2139           if(SMESH_Actor *anActor = SMESH::FindActorByEntry(anIObject->getEntry())){
2140             anActor->SetCellsLabeled( !anActor->GetCellsLabeled() );
2141           }
2142       }
2143       break;
2144     }
2145   }
2146
2147   anApp->updateActions(); //SRN: To update a Save button in the toolbar
2148   //updateObjBrowser();
2149   return true;
2150 }
2151
2152 //=============================================================================
2153 /*!
2154  *
2155  */
2156 //=============================================================================
2157 bool SMESHGUI::OnMousePress( QMouseEvent * pe, SUIT_ViewWindow * wnd )
2158 {
2159   return false;
2160 }
2161
2162 //=============================================================================
2163 /*!
2164  *
2165  */
2166 //=============================================================================
2167 bool SMESHGUI::OnMouseMove( QMouseEvent * pe, SUIT_ViewWindow * wnd )
2168 {
2169   return true;
2170 }
2171
2172 //=============================================================================
2173 /*!
2174  *
2175  */
2176 //=============================================================================
2177 bool SMESHGUI::OnKeyPress( QKeyEvent * pe, SUIT_ViewWindow * wnd )
2178 {
2179   return true;
2180 }
2181
2182 //=============================================================================
2183 /*! Method:  BuildPresentation(const Handle(SALOME_InteractiveObject)& theIO)
2184  *  Purpose: ensures that the actor for the given <theIO> exists in the active VTK view
2185  */
2186 //=============================================================================
2187 void SMESHGUI::BuildPresentation( const Handle(SALOME_InteractiveObject) & theIO,
2188                                   SUIT_ViewWindow* wnd )
2189 {
2190   if(theIO->hasEntry()){
2191     //SUIT_ViewWindow* wnd = SMESH::GetActiveWindow();
2192     SMESH::UpdateView(wnd,SMESH::eDisplay,theIO->getEntry());
2193   }
2194 }
2195
2196 //=======================================================================
2197 // function : createSMESHAction
2198 // purpose  :
2199 //=======================================================================
2200 void SMESHGUI::createSMESHAction( const int id, const QString& po_id, const QString& icon_id, const int key, const bool toggle  )
2201 {
2202   QIconSet icon;
2203   QWidget* parent = application()->desktop();
2204   SUIT_ResourceMgr* resMgr = resourceMgr();
2205   QPixmap pix;
2206   if ( icon_id.length() )
2207     pix = resMgr->loadPixmap( "SMESH", tr( icon_id ) );
2208   else
2209     pix = resMgr->loadPixmap( "SMESH", tr( QString( "ICO_" )+po_id ), false );
2210   if ( !pix.isNull() )
2211     icon = QIconSet( pix );
2212
2213   QString tooltip    = tr( QString( "TOP_" )+po_id ),
2214           menu       = tr( QString( "MEN_" )+po_id ),
2215           status_bar = tr( QString( "STB_" )+po_id );
2216
2217   createAction( id, tooltip, icon, menu, status_bar, key, parent, toggle, this, SLOT( OnGUIEvent() )  );
2218 }
2219
2220 //=======================================================================
2221 // function : createPopupItem
2222 // purpose  :
2223 //=======================================================================
2224 void SMESHGUI::createPopupItem( const int id,
2225                                 const QString& clients,
2226                                 const QString& types,
2227                                 const QString& theRule,
2228                                 const int pId )
2229 {
2230   int parentId = pId;
2231   if( pId!=-1 )
2232     parentId = popupMgr()->actionId( action( pId ) );
2233
2234   if( !popupMgr()->contains( popupMgr()->actionId( action( id ) ) ) )
2235     popupMgr()->insert( action( id ), parentId, 0 );
2236
2237   QChar lc = QtxPopupMgr::Selection::defEquality();
2238   QString rule = "(%1) and (%2) and (%3)";
2239   rule = rule.arg( QString( "%1>0" ).arg( QtxPopupMgr::Selection::defSelCountParam() ) );
2240   if( clients.isEmpty() )
2241     rule = rule.arg( QString( "true" ) );
2242   else
2243     rule = rule.arg( QString( "%1client in {%2}" ).arg( lc ).arg( clients ) );
2244   rule = rule.arg( QString( "%1type in {%2}" ).arg( lc ).arg( types ) );
2245   rule += theRule;
2246
2247   bool cont = myRules.contains( id );
2248   if( cont )
2249     rule = QString( "%1 or (%2)" ).arg( myRules[ id ] ).arg( rule );
2250
2251   popupMgr()->setRule( action( id ), rule, true );
2252   myRules[ id ] = QString( cont ? "%1" : "(%1)" ).arg( rule );
2253 }
2254
2255 //=======================================================================
2256 // function : initialize
2257 // purpose  :
2258 //=======================================================================
2259 void SMESHGUI::initialize( CAM_Application* app )
2260 {
2261   SalomeApp_Module::initialize( app );
2262
2263 //   SUIT_ResourceMgr* mgr = app->resourceMgr();
2264 //   if ( mgr )
2265   /* Automatic Update flag */
2266 //     myAutomaticUpdate = mgr->booleanValue( "SMESH", "AutomaticUpdate", myAutomaticUpdate );
2267
2268   // ----- create actions --------------
2269
2270   createSMESHAction(  111, "DAT", "", (CTRL+Key_B) );
2271   createSMESHAction(  112, "UNV", "", (CTRL+Key_U) );
2272   createSMESHAction(  113, "MED", "", (CTRL+Key_M) );
2273   createSMESHAction(  114, "NUM" );
2274   createSMESHAction(  121, "DAT" );
2275   createSMESHAction(  122, "MED" );
2276   createSMESHAction(  123, "UNV" );
2277   createSMESHAction(  124, "EXPORT_DAT" );
2278   createSMESHAction(  125, "EXPORT_MED" );
2279   createSMESHAction(  126, "EXPORT_UNV" );
2280   createSMESHAction(   33, "DELETE",          "ICON_DELETE" );
2281   createSMESHAction( 5105, "SEL_FILTER_LIB" );
2282   createSMESHAction(  701, "COMPUTE",         "ICON_COMPUTE" );
2283   createSMESHAction(  702, "CREATE_MESH",     "ICON_DLG_INIT_MESH" );
2284   createSMESHAction(  703, "CREATE_SUBMESH",  "ICON_DLG_ADD_SUBMESH" );
2285   createSMESHAction(  704, "EDIT_MESHSUBMESH","ICON_DLG_EDIT_MESH" );
2286   createSMESHAction(  801, "CREATE_GROUP",    "ICON_SMESH_TREE_GROUP" );
2287   createSMESHAction(  802, "CONSTRUCT_GROUP", "ICON_CONSTRUCT_GROUP" );
2288   createSMESHAction(  803, "EDIT_GROUP",      "ICON_EDIT_GROUP" );
2289   createSMESHAction(  804, "ADD" );
2290   createSMESHAction(  805, "REMOVE" );
2291   createSMESHAction(  810, "UN_GROUP",        "ICON_UNION" );
2292   createSMESHAction(  811, "INT_GROUP",       "ICON_INTERSECT" );
2293   createSMESHAction(  812, "CUT_GROUP",       "ICON_CUT" );
2294   createSMESHAction(  813, "DEL_GROUP",       "ICON_DEL_GROUP" );
2295   createSMESHAction(  900, "ADV_INFO",        "ICON_ADV_INFO" );
2296   createSMESHAction(  902, "STD_INFO",        "ICON_STD_INFO" );
2297   createSMESHAction( 6001, "LENGTH",          "ICON_LENGTH" ,       0, true );
2298   createSMESHAction( 6002, "FREE_EDGE",       "ICON_FREE_EDGE" ,    0, true );
2299   createSMESHAction( 6003, "FREE_BORDER",     "ICON_FREE_EDGE_2D" , 0, true );
2300   createSMESHAction( 6004, "CONNECTION",      "ICON_CONNECTION" ,   0, true );
2301   createSMESHAction( 6011, "AREA",            "ICON_AREA" ,         0, true );
2302   createSMESHAction( 6012, "TAPER",           "ICON_TAPER" ,        0, true );
2303   createSMESHAction( 6013, "ASPECT",          "ICON_ASPECT" ,       0, true );
2304   createSMESHAction( 6014, "MIN_ANG",         "ICON_ANGLE" ,        0, true );
2305   createSMESHAction( 6015, "WARP",            "ICON_WARP" ,         0, true );
2306   createSMESHAction( 6016, "SKEW",            "ICON_SKEW",          0, true );
2307   createSMESHAction( 6017, "ASPECT_3D",       "ICON_ASPECT_3D",     0, true );
2308   createSMESHAction( 6018, "LENGTH_2D",       "ICON_LENGTH_2D",     0, true );
2309   createSMESHAction( 6019, "CONNECTION_2D",   "ICON_CONNECTION_2D", 0, true );
2310   createSMESHAction( 6009, "VOLUME_3D",       "ICON_VOLUME_3D",     0, true );
2311   createSMESHAction(  400, "NODE",            "ICON_DLG_NODE" );
2312   createSMESHAction(  401, "EDGE",            "ICON_DLG_EDGE" );
2313   createSMESHAction( 4021, "TRIANGLE",        "ICON_DLG_TRIANGLE" );
2314   createSMESHAction( 4022, "QUAD",            "ICON_DLG_QUADRANGLE" );
2315   createSMESHAction( 4023, "POLYGON",         "ICON_DLG_POLYGON" );
2316   createSMESHAction( 4031, "TETRA",           "ICON_DLG_TETRAS" );
2317   createSMESHAction( 4032, "HEXA",            "ICON_DLG_HEXAS" );
2318   createSMESHAction( 4041, "REMOVE_NODES",    "ICON_DLG_REM_NODE" );
2319   createSMESHAction( 4042, "REMOVE_ELEMENTS", "ICON_DLG_REM_ELEMENT" );
2320   createSMESHAction( 4051, "RENUM_NODES",     "ICON_DLG_RENUMBERING_NODES" );
2321   createSMESHAction( 4052, "RENUM_ELEMENTS",  "ICON_DLG_RENUMBERING_ELEMENTS" );
2322   createSMESHAction( 4061, "TRANS",           "ICON_SMESH_TRANSLATION_VECTOR" );
2323   createSMESHAction( 4062, "ROT",             "ICON_DLG_ROTATION" );
2324   createSMESHAction( 4063, "SYM",             "ICON_SMESH_SYMMETRY_PLANE" );
2325   createSMESHAction( 4064, "SEW",             "ICON_SMESH_SEWING_FREEBORDERS" );
2326   createSMESHAction( 4065, "MERGE",           "ICON_SMESH_MERGE_NODES" );
2327   createSMESHAction( 4066, "MERGE_ELEMENTS",  "ICON_DLG_MERGE_ELEMENTS" );
2328   createSMESHAction(  406, "MOVE",            "ICON_DLG_MOVE_NODE" );
2329   createSMESHAction(  407, "INV",             "ICON_DLG_MESH_DIAGONAL" );
2330   createSMESHAction(  408, "UNION2",          "ICON_UNION2TRI" );
2331   createSMESHAction(  409, "ORIENT",          "ICON_DLG_MESH_ORIENTATION" );
2332   createSMESHAction(  410, "UNION",           "ICON_UNIONTRI" );
2333   createSMESHAction(  411, "CUT",             "ICON_CUTQUAD" );
2334   createSMESHAction(  412, "SMOOTH",          "ICON_DLG_SMOOTHING" );
2335   createSMESHAction(  413, "EXTRUSION",       "ICON_EXTRUSION" );
2336   createSMESHAction(  414, "REVOLUTION",      "ICON_REVOLUTION" );
2337   createSMESHAction(  415, "MAP",             "ICON_MAP" );
2338   createSMESHAction(  416, "EXTRUSION_ALONG", "ICON_EXTRUSION_ALONG" );
2339   createSMESHAction(  200, "RESET" );
2340   createSMESHAction(  201, "SCALAR_BAR_PROP" );
2341   createSMESHAction(  211, "WIRE",           "ICON_WIRE", 0, true );
2342   createSMESHAction(  212, "SHADE",          "ICON_SHADE", 0, true );
2343   createSMESHAction(  213, "SHRINK",         "ICON_SHRINK", 0, true );
2344   createSMESHAction(  214, "UPDATE",         "ICON_UPDATE" );
2345   createSMESHAction(  215, "NODES",          "ICON_POINTS", 0, true );
2346   createSMESHAction(  217, "EDGES",          "ICON_DLG_EDGE", 0, true );
2347   createSMESHAction(  218, "FACES",          "ICON_DLG_TRIANGLE", 0, true );
2348   createSMESHAction(  219, "VOLUMES",        "ICON_DLG_TETRAS", 0, true );
2349   createSMESHAction(  220, "ALL" );
2350   createSMESHAction( 1100, "EDIT_HYPO" );
2351   createSMESHAction( 1101, "RENAME" );
2352   createSMESHAction( 1102, "UNASSIGN" );
2353   createSMESHAction( 9010, "NUM_NODES", "", 0, true );
2354   createSMESHAction( 9011, "NUM_ELEMENTS", "", 0, true );
2355   createSMESHAction( 1131, "DISPMODE" );
2356   createSMESHAction( 1132, "COLORS" );
2357   createSMESHAction( 1133, "TRANSP" );
2358   createSMESHAction( 1134, "CLIP" );
2359   createSMESHAction( 1135, "DISP_ENT" );
2360   createSMESHAction( 2000, "CTRL" );
2361
2362   createSMESHAction( 300, "ERASE" );
2363   createSMESHAction( 301, "DISPLAY" );
2364   createSMESHAction( 302, "DISPLAY_ONLY" );
2365   createSMESHAction( 4033, "POLYHEDRON", "ICON_DLG_POLYHEDRON" );
2366   createSMESHAction( 4034, "QUADRATIC_EDGE", "ICON_DLG_QUADRATIC_EDGE" );
2367   createSMESHAction( 4035, "QUADRATIC_TRIANGLE", "ICON_DLG_QUADRATIC_TRIANGLE" );
2368   createSMESHAction( 4036, "QUADRATIC_QUADRANGLE", "ICON_DLG_QUADRATIC_QUADRANGLE" );
2369   createSMESHAction( 4037, "QUADRATIC_TETRAHEDRON", "ICON_DLG_QUADRATIC_TETRAHEDRON" );
2370   createSMESHAction( 4038, "QUADRATIC_PYRAMID", "ICON_DLG_QUADRATIC_PYRAMID" );
2371   createSMESHAction( 4039, "QUADRATIC_PENTAHEDRON", "ICON_DLG_QUADRATIC_PENTAHEDRON" );
2372   createSMESHAction( 4040, "QUADRATIC_HEXAHEDRON", "ICON_DLG_QUADRATIC_HEXAHEDRON" );
2373
2374   // ----- create menu --------------
2375   int fileId   = createMenu( tr( "MEN_FILE" ),   -1,  1 ),
2376       editId   = createMenu( tr( "MEN_EDIT" ),   -1,  3 ),
2377       toolsId  = createMenu( tr( "MEN_TOOLS" ),  -1,  5, 50 ),
2378       meshId   = createMenu( tr( "MEN_MESH" ),   -1, 70, 10 ),
2379       ctrlId   = createMenu( tr( "MEN_CTRL" ),   -1, 60, 10 ),
2380       modifyId = createMenu( tr( "MEN_MODIFY" ), -1, 40, 10 ),
2381       viewId   = createMenu( tr( "MEN_VIEW" ),   -1,  2 );
2382
2383   createMenu( separator(), fileId );
2384
2385   int importId = createMenu( tr( "MEN_IMPORT" ), fileId, 11, 10 ),
2386       exportId = createMenu( tr( "MEN_EXPORT" ), fileId, 12, 10 ),
2387       addId    = createMenu( tr( "MEN_ADD" ),    modifyId, 402 ),
2388       removeId = createMenu( tr( "MEN_REMOVE" ), modifyId, 403 ),
2389       renumId  = createMenu( tr( "MEN_RENUM" ),  modifyId, 404 ),
2390       transfId = createMenu( tr( "MEN_TRANSF" ), modifyId, 405 );
2391
2392   createMenu( 111, importId, -1 );
2393   createMenu( 112, importId, -1 );
2394   createMenu( 113, importId, -1 );
2395
2396   createMenu( 121, exportId, -1 );
2397   createMenu( 122, exportId, -1 );
2398   createMenu( 123, exportId, -1 );
2399
2400   createMenu( separator(), fileId, 10 );
2401
2402   createMenu( 33, editId, -1 );
2403
2404   createMenu( 5105, toolsId, -1 );
2405
2406   createMenu( 702, meshId, -1 );
2407   createMenu( 703, meshId, -1 );
2408   createMenu( 704, meshId, -1 );
2409   createMenu( separator(), meshId, -1 );
2410   createMenu( 701, meshId, -1 );
2411   createMenu( separator(), meshId, -1 );
2412   createMenu( 801, meshId, -1 );
2413   createMenu( 802, meshId, -1 );
2414   createMenu( 803, meshId, -1 );
2415   createMenu( separator(), meshId, -1 );
2416   createMenu( 810, meshId, -1 );
2417   createMenu( 811, meshId, -1 );
2418   createMenu( 812, meshId, -1 );
2419   createMenu( separator(), meshId, -1 );
2420   createMenu( 813, meshId, -1 );
2421   createMenu( separator(), meshId, -1 );
2422   createMenu( 900, meshId, -1 );
2423   createMenu( 902, meshId, -1 );
2424   createMenu( separator(), meshId, -1 );
2425
2426   createMenu( 6003, ctrlId, -1 );
2427   createMenu( 6001, ctrlId, -1 );
2428   createMenu( 6004, ctrlId, -1 );
2429   createMenu( separator(), ctrlId, -1 );
2430   createMenu( 6002, ctrlId, -1 );
2431   createMenu( 6018, ctrlId, -1 );
2432   createMenu( 6019, ctrlId, -1 );
2433   createMenu( 6011, ctrlId, -1 );
2434   createMenu( 6012, ctrlId, -1 );
2435   createMenu( 6013, ctrlId, -1 );
2436   createMenu( 6014, ctrlId, -1 );
2437   createMenu( 6015, ctrlId, -1 );
2438   createMenu( 6016, ctrlId, -1 );
2439   createMenu( separator(), ctrlId, -1 );
2440   createMenu( 6017, ctrlId, -1 );
2441   createMenu( 6009, ctrlId, -1 );
2442   createMenu( separator(), ctrlId, -1 );
2443
2444   createMenu( 400, addId, -1 );
2445   createMenu( 401, addId, -1 );
2446   createMenu( 4021, addId, -1 );
2447   createMenu( 4022, addId, -1 );
2448   createMenu( 4023, addId, -1 );
2449   createMenu( 4031, addId, -1 );
2450   createMenu( 4032, addId, -1 );
2451   createMenu( 4033, addId, -1 );
2452   createMenu( separator(), addId, -1 );
2453   createMenu( 4034, addId, -1 );
2454   createMenu( 4035, addId, -1 );
2455   createMenu( 4036, addId, -1 );
2456   createMenu( 4037, addId, -1 );
2457   createMenu( 4038, addId, -1 );
2458   createMenu( 4039, addId, -1 );
2459   createMenu( 4040, addId, -1 );
2460
2461   createMenu( 4041, removeId, -1 );
2462   createMenu( 4042, removeId, -1 );
2463
2464   createMenu( 4051, renumId, -1 );
2465   createMenu( 4052, renumId, -1 );
2466
2467   createMenu( 4061, transfId, -1 );
2468   createMenu( 4062, transfId, -1 );
2469   createMenu( 4063, transfId, -1 );
2470   createMenu( 4064, transfId, -1 );
2471   createMenu( 4065, transfId, -1 );
2472   createMenu( 4066, transfId, -1 );
2473
2474   createMenu( 406, modifyId, -1 );
2475   createMenu( 407, modifyId, -1 );
2476   createMenu( 408, modifyId, -1 );
2477   createMenu( 409, modifyId, -1 );
2478   createMenu( 410, modifyId, -1 );
2479   createMenu( 411, modifyId, -1 );
2480   createMenu( 412, modifyId, -1 );
2481   createMenu( 413, modifyId, -1 );
2482   createMenu( 416, modifyId, -1 );
2483   createMenu( 414, modifyId, -1 );
2484   createMenu( 415, modifyId, -1 );
2485
2486   createMenu( 214, viewId, -1 );
2487
2488   // ----- create toolbars --------------
2489   int meshTb     = createTool( tr( "TB_MESH" ) ),
2490       ctrlTb     = createTool( tr( "TB_CTRL" ) ),
2491       addRemTb   = createTool( tr( "TB_ADD_REMOVE" ) ),
2492       modifyTb   = createTool( tr( "TB_MODIFY" ) ),
2493       dispModeTb = createTool( tr( "TB_DISP_MODE" ) );
2494
2495   createTool( 702, meshTb );
2496   createTool( 703, meshTb );
2497   createTool( 704, meshTb );
2498   createTool( separator(), meshTb );
2499   createTool( 701, meshTb );
2500   createTool( separator(), meshTb );
2501   createTool( 801, meshTb );
2502   createTool( 802, meshTb );
2503   createTool( 803, meshTb );
2504   createTool( separator(), meshTb );
2505   createTool( 900, meshTb );
2506   createTool( 902, meshTb );
2507   createTool( separator(), meshTb );
2508
2509   createTool( 6001, ctrlTb );
2510   createTool( 6003, ctrlTb );
2511   createTool( 6004, ctrlTb );
2512   createTool( separator(), ctrlTb );
2513   createTool( 6002, ctrlTb );
2514   createTool( 6018, ctrlTb );
2515   createTool( 6019, ctrlTb );
2516   createTool( 6011, ctrlTb );
2517   createTool( 6012, ctrlTb );
2518   createTool( 6013, ctrlTb );
2519   createTool( 6014, ctrlTb );
2520   createTool( 6015, ctrlTb );
2521   createTool( 6016, ctrlTb );
2522   createTool( separator(), ctrlTb );
2523   createTool( 6017, ctrlTb );
2524   createTool( 6009, ctrlTb );
2525   createTool( separator(), ctrlTb );
2526
2527   createTool( 400, addRemTb );
2528   createTool( 401, addRemTb );
2529   createTool( 4021, addRemTb );
2530   createTool( 4022, addRemTb );
2531   createTool( 4023, addRemTb );
2532   createTool( 4031, addRemTb );
2533   createTool( 4032, addRemTb );
2534   createTool( 4033, addRemTb );
2535   createTool( separator(), addRemTb );
2536   createTool( 4034, addRemTb );
2537   createTool( 4035, addRemTb );
2538   createTool( 4036, addRemTb );
2539   createTool( 4037, addRemTb );
2540   createTool( 4038, addRemTb );
2541   createTool( 4039, addRemTb );
2542   createTool( 4040, addRemTb );
2543   createTool( separator(), addRemTb );
2544   createTool( 4041, addRemTb );
2545   createTool( 4042, addRemTb );
2546   createTool( separator(), addRemTb );
2547   createTool( 4051, addRemTb );
2548   createTool( 4052, addRemTb );
2549   createTool( separator(), addRemTb );
2550   createTool( 4061, addRemTb );
2551   createTool( 4062, addRemTb );
2552   createTool( 4063, addRemTb );
2553   createTool( 4064, addRemTb );
2554   createTool( 4065, addRemTb );
2555   createTool( 4066, addRemTb );
2556   createTool( separator(), addRemTb );
2557
2558   createTool( 406, modifyTb );
2559   createTool( 407, modifyTb );
2560   createTool( 408, modifyTb );
2561   createTool( 409, modifyTb );
2562   createTool( 410, modifyTb );
2563   createTool( 411, modifyTb );
2564   createTool( 412, modifyTb );
2565   createTool( 413, modifyTb );
2566   createTool( 416, modifyTb );
2567   createTool( 414, modifyTb );
2568   createTool( 415, modifyTb );
2569
2570   createTool( 214, dispModeTb );
2571
2572
2573   myRules.clear();
2574   QString OB = "'ObjectBrowser'",
2575           View = "'" + SVTK_Viewer::Type() + "'",
2576           pat = "'%1'",
2577           mesh    = pat.arg( SMESHGUI_Selection::typeName( MESH ) ),
2578           group   = pat.arg( SMESHGUI_Selection::typeName( GROUP ) ),
2579           hypo    = pat.arg( SMESHGUI_Selection::typeName( HYPOTHESIS ) ),
2580           algo    = pat.arg( SMESHGUI_Selection::typeName( ALGORITHM ) ),
2581           elems   = QString( "'%1' '%2' '%3' '%4' '%5' '%6'" ).
2582                        arg( SMESHGUI_Selection::typeName( SUBMESH_VERTEX ) ).
2583                        arg( SMESHGUI_Selection::typeName( SUBMESH_EDGE ) ).
2584                        arg( SMESHGUI_Selection::typeName( SUBMESH_FACE ) ).
2585                        arg( SMESHGUI_Selection::typeName( SUBMESH_SOLID ) ).
2586                        arg( SMESHGUI_Selection::typeName( SUBMESH_COMPOUND ) ).
2587                        arg( SMESHGUI_Selection::typeName( SUBMESH ) ),
2588           subMesh = elems,
2589           mesh_group = mesh + " " + subMesh + " " + group,
2590           hyp_alg = hypo + " " + algo;
2591
2592   // popup for object browser
2593
2594   createPopupItem( 704, OB, mesh, "&& isComputable");      // EDIT_MESHSUBMESH
2595   createPopupItem( 704, OB, subMesh, "&& isComputable" );  // EDIT_MESHSUBMESH
2596   createPopupItem( 803, OB, group );                       // EDIT_GROUP
2597   popupMgr()->insert( separator(), -1, 0 );
2598   createPopupItem( 701, OB, mesh, "&& isComputable" );     // COMPUTE
2599   createPopupItem( 214, OB, mesh_group );                  // UPDATE
2600   createPopupItem( 900, OB, mesh_group );                  // ADV_INFO
2601   createPopupItem( 902, OB, mesh );                        // STD_INFO
2602   popupMgr()->insert( separator(), -1, 0 );
2603   createPopupItem( 801, OB, mesh );                        // CREATE_GROUP
2604   createPopupItem( 802, OB, subMesh );                     // CONSTRUCT_GROUP
2605   popupMgr()->insert( separator(), -1, 0 );
2606   createPopupItem( 1100, OB, hypo, "" /*"&& $hasReference={false}"*/ );   // EDIT HYPOTHESIS
2607   createPopupItem( 1102, OB, hyp_alg ); // REMOVE HYPOTHESIS / ALGORITHMS
2608   createPopupItem( 1101, OB, mesh_group + " " + hyp_alg, "" /*"&& $hasReference={false}"*/ ); // RENAME
2609   popupMgr()->insert( separator(), -1, 0 );
2610
2611   QString only_one_non_empty = QString( " && %1=1 && numberOfNodes>0" ).arg( QtxPopupMgr::Selection::defSelCountParam() );
2612   createPopupItem( 125, OB, mesh, only_one_non_empty );    // EXPORT_MED
2613   createPopupItem( 126, OB, mesh, only_one_non_empty );    // EXPORT_UNV
2614   createPopupItem( 33, OB, subMesh + " " + group );        // DELETE
2615   popupMgr()->insert( separator(), -1, 0 );
2616
2617   // popup for viewer
2618   createPopupItem( 803, View, group ); // EDIT_GROUP
2619   createPopupItem( 804, View, elems ); // ADD
2620   createPopupItem( 805, View, elems ); // REMOVE
2621   popupMgr()->insert( separator(), -1, 0 );
2622   createPopupItem( 214, View, mesh_group ); // UPDATE
2623   createPopupItem( 900, View, mesh_group ); // ADV_INFO
2624   createPopupItem( 902, View, mesh );       // STD_INFO
2625   popupMgr()->insert( separator(), -1, 0 );
2626
2627   int anId;
2628   QString
2629     isInvisible("not( isVisible )"),
2630     isEmpty("numberOfNodes = 0"),
2631     isNotEmpty("numberOfNodes <> 0"),
2632
2633     // has nodes, edges, etc in VISIBLE! actor
2634     hasNodes("(numberOfNodes > 0 )"),//&& isVisible)"),
2635     hasElems("(count( elemTypes ) > 0)"),
2636     hasDifferentElems("(count( elemTypes ) > 1)"),
2637     hasEdges("({'Edge'} in elemTypes)"),
2638     hasFaces("({'Face'} in elemTypes)"),
2639     hasVolumes("({'Volume'} in elemTypes)");
2640
2641   QString lc = QtxPopupMgr::Selection::defEquality();
2642   QString aClient = QString( "%1client in {%2}" ).arg( lc ).arg( "'VTKViewer'" );
2643   QString aType = QString( "%1type in {%2}" ).arg( QtxPopupMgr::Selection::defEquality() );
2644   aType = aType.arg( mesh_group );
2645   QString aMeshInVTK = aClient + "&&" + aType;
2646
2647   //-------------------------------------------------
2648   // Numbering
2649   //-------------------------------------------------
2650   anId = popupMgr()->insert( tr( "MEN_NUM" ), -1, -1 );
2651
2652   popupMgr()->insert( action( 9010 ), anId, -1 );
2653   popupMgr()->setRule( action( 9010 ), aMeshInVTK + "&& isVisible &&" + hasNodes, true );
2654   popupMgr()->setRule( action( 9010 ), "{'Point'} in labeledTypes", false );
2655
2656   popupMgr()->insert( action( 9011 ), anId, -1 );
2657   popupMgr()->setRule( action( 9011 ), aMeshInVTK + "&& isVisible &&" + hasElems, true );
2658   popupMgr()->setRule( action( 9011 ), "{'Cell'} in labeledTypes", false );
2659
2660   popupMgr()->insert( separator(), -1, -1 );
2661
2662   //-------------------------------------------------
2663   // Display Mode
2664   //-------------------------------------------------
2665   anId = popupMgr()->insert( tr( "MEN_DISPMODE" ), -1, -1 );
2666
2667   popupMgr()->insert( action( 211 ), anId, -1 ); // WIRE
2668   popupMgr()->setRule( action( 211 ), aMeshInVTK + "&&" + hasElems, true );
2669   popupMgr()->setRule( action( 211 ), "displayMode = 'eEdge'", false );
2670
2671   popupMgr()->insert( action( 212 ), anId, -1 ); // SHADE
2672   popupMgr()->setRule( action( 212 ),aMeshInVTK+ "&& (" + hasFaces + "||" + hasVolumes + ")",true);
2673   popupMgr()->setRule( action( 212 ), "displayMode = 'eSurface'", false );
2674
2675   popupMgr()->insert( action( 215 ), anId, -1 ); // POINTS
2676   popupMgr()->setRule( action( 215 ), aMeshInVTK + "&&" + hasNodes, true );
2677   popupMgr()->setRule( action( 215 ), "displayMode = 'ePoint'", false );
2678
2679   popupMgr()->insert( separator(), anId, -1 );
2680
2681   popupMgr()->insert( action( 213 ), anId, -1 ); // SHRINK
2682   popupMgr()->setRule( action( 213 ), aMeshInVTK + "&& shrinkMode <> 'IsNotShrinkable' && displayMode <> 'ePoint'",true);
2683   popupMgr()->setRule( action( 213 ), "shrinkMode = 'IsShrunk'", false );
2684
2685   //-------------------------------------------------
2686   // Display Entity
2687   //-------------------------------------------------
2688   QString aDiffElemsInVTK = aMeshInVTK + "&&" + hasDifferentElems;
2689
2690   anId = popupMgr()->insert( tr( "MEN_DISP_ENT" ), -1, -1 );
2691
2692   popupMgr()->insert( action( 217 ), anId, -1 ); // EDGES
2693   popupMgr()->setRule( action( 217 ), aDiffElemsInVTK + "&& isVisible &&" + hasEdges, true );
2694   popupMgr()->setRule( action( 217 ), "{'Edge'} in entityMode", false );
2695
2696   popupMgr()->insert( action( 218 ), anId, -1 ); // FACES
2697   popupMgr()->setRule( action( 218 ), aDiffElemsInVTK + "&& isVisible &&" + hasFaces, true );
2698   popupMgr()->setRule( action( 218 ), "{'Face'} in entityMode", false );
2699
2700   popupMgr()->insert( action( 219 ), anId, -1 ); // VOLUMES
2701   popupMgr()->setRule( action( 219 ), aDiffElemsInVTK + "&& isVisible &&" + hasVolumes, true );
2702   popupMgr()->setRule( action( 219 ), "{'Volume'} in entityMode", false );
2703
2704   popupMgr()->insert( separator(), anId, -1 );
2705
2706   popupMgr()->insert( action( 220 ), anId, -1 ); // ALL
2707   popupMgr()->setRule( action( 220 ), aDiffElemsInVTK + "&& isVisible && not( elemTypes in entityMode )", true );
2708
2709   //-------------------------------------------------
2710   // Color / Size
2711   //-------------------------------------------------
2712   popupMgr()->insert( action( 1132 ), -1, -1 );
2713   popupMgr()->setRule( action( 1132 ), aMeshInVTK + "&& isVisible", true );
2714
2715   //-------------------------------------------------
2716   // Transparency
2717   //-------------------------------------------------
2718   popupMgr()->insert( action( 1133 ), -1, -1 );
2719   popupMgr()->setRule( action( 1133 ), aMeshInVTK + "&& isVisible", true );
2720
2721   //-------------------------------------------------
2722   // Clipping
2723   //-------------------------------------------------
2724   popupMgr()->insert( action( 1134 ), -1, -1 );
2725   popupMgr()->setRule( action( 1134 ), aMeshInVTK + "&& isVisible", true );
2726
2727   popupMgr()->insert( separator(), -1, -1 );
2728
2729   //-------------------------------------------------
2730   // Controls
2731   //-------------------------------------------------
2732   QString
2733     aMeshInVtkHasEdges = aMeshInVTK + "&&" + hasEdges,
2734     aMeshInVtkHasFaces = aMeshInVTK + "&&" + hasFaces,
2735     aMeshInVtkHasVolumes = aMeshInVTK + "&&" + hasVolumes;
2736
2737   anId = popupMgr()->insert( tr( "MEN_CTRL" ), -1, -1 );
2738
2739   popupMgr()->insert( action( 200 ), anId, -1 ); // RESET
2740   popupMgr()->setRule( action( 200 ), aMeshInVTK + "&& controlMode <> 'eNone'", true );
2741
2742   popupMgr()->insert( separator(), anId, -1 );
2743
2744   popupMgr()->insert( action( 6003 ), anId, -1 ); // FREE_BORDER
2745   popupMgr()->setRule( action( 6003 ), aMeshInVtkHasEdges, true );
2746   popupMgr()->setRule( action( 6003 ), "controlMode = 'eFreeBorders'", false );
2747
2748   popupMgr()->insert( action( 6001 ), anId, -1 ); // LENGTH
2749   popupMgr()->setRule( action( 6001 ), aMeshInVtkHasEdges, true );
2750   popupMgr()->setRule( action( 6001 ), "controlMode = 'eLength'", false );
2751
2752   popupMgr()->insert( action( 6004 ), anId, -1 ); // CONNECTION
2753   popupMgr()->setRule( action( 6004 ), aMeshInVtkHasEdges, true );
2754   popupMgr()->setRule( action( 6004 ), "controlMode = 'eMultiConnection'", false );
2755
2756   popupMgr()->insert( separator(), anId, -1 );
2757
2758   popupMgr()->insert( action( 6002 ), anId, -1 ); // FREE_EDGE
2759   popupMgr()->setRule( action( 6002 ), aMeshInVtkHasFaces, true );
2760   popupMgr()->setRule( action( 6002 ), "controlMode = 'eFreeEdges'", false );
2761
2762   popupMgr()->insert( action( 6018 ), anId, -1 ); // LENGTH_2D
2763   popupMgr()->setRule( action( 6018 ), aMeshInVtkHasFaces, true );
2764   popupMgr()->setRule( action( 6018 ), "controlMode = 'eLength2D'", false );
2765
2766   popupMgr()->insert( action( 6019 ), anId, -1 ); // CONNECTION_2D
2767   popupMgr()->setRule( action( 6019 ), aMeshInVtkHasFaces, true );
2768   popupMgr()->setRule( action( 6019 ), "controlMode = 'eMultiConnection2D'", false );
2769
2770   popupMgr()->insert( action( 6011 ), anId, -1 ); // AREA
2771   popupMgr()->setRule( action( 6011 ), aMeshInVtkHasFaces, true );
2772   popupMgr()->setRule( action( 6011 ), "controlMode = 'eArea'", false );
2773
2774   popupMgr()->insert( action( 6012 ), anId, -1 ); // TAPER
2775   popupMgr()->setRule( action( 6012 ), aMeshInVtkHasFaces, true );
2776   popupMgr()->setRule( action( 6012 ), "controlMode = 'eTaper'", false );
2777
2778   popupMgr()->insert( action( 6013 ), anId, -1 ); // ASPECT
2779   popupMgr()->setRule( action( 6013 ), aMeshInVtkHasFaces, true );
2780   popupMgr()->setRule( action( 6013 ), "controlMode = 'eAspectRatio'", false );
2781
2782   popupMgr()->insert( action( 6014 ), anId, -1 ); // MIN_ANG
2783   popupMgr()->setRule( action( 6014 ), aMeshInVtkHasFaces, true );
2784   popupMgr()->setRule( action( 6014 ), "controlMode = 'eMinimumAngle'", false );
2785
2786   popupMgr()->insert( action( 6015 ), anId, -1 ); // WARP
2787   popupMgr()->setRule( action( 6015 ), aMeshInVtkHasFaces, true );
2788   popupMgr()->setRule( action( 6015 ), "controlMode = 'eWarping'", false );
2789
2790   popupMgr()->insert( action( 6016 ), anId, -1 ); // SKEW
2791   popupMgr()->setRule( action( 6016 ), aMeshInVtkHasFaces, true );
2792   popupMgr()->setRule( action( 6016 ), "controlMode = 'eSkew'", false );
2793
2794   popupMgr()->insert( separator(), anId, -1 );
2795
2796   popupMgr()->insert( action( 6017 ), anId, -1 ); // ASPECT_3D
2797   popupMgr()->setRule( action( 6017 ), aMeshInVtkHasVolumes, true );
2798   popupMgr()->setRule( action( 6017 ), "controlMode = 'eAspectRatio3D'", false );
2799
2800   popupMgr()->insert ( action( 6009 ), anId, -1 ); // VOLUME_3D
2801   popupMgr()->setRule( action( 6009 ), aMeshInVtkHasVolumes, true );
2802   popupMgr()->setRule( action( 6009 ), "controlMode = 'eVolume3D'", false );
2803
2804   popupMgr()->insert( separator(), anId, -1 );
2805
2806   popupMgr()->insert( action( 201 ), anId, -1 ); // SCALAR_BAR_PROP
2807   popupMgr()->setRule( action( 201 ), aMeshInVTK + "&& controlMode <> 'eNone'", true );
2808
2809   popupMgr()->insert( separator(), -1, -1 );
2810
2811   //-------------------------------------------------
2812   // Display / Erase
2813   //-------------------------------------------------
2814   aClient = "($client in {'VTKViewer' 'ObjectBrowser'})";
2815   QString anActiveVTK = QString("activeView = '%1'").arg(SVTK_Viewer::Type());
2816   QString aSelCount = QString( "%1 > 0" ).arg( QtxPopupMgr::Selection::defSelCountParam() );
2817
2818   QString aRule = "$component={'SMESH'} and ( type='Component' or (" + aClient + " and " +
2819     aType + " and " + aSelCount + " and " + anActiveVTK + " and " + isNotEmpty + " %1 ) )";
2820   popupMgr()->insert( action( 301 ), -1, -1 ); // DISPLAY
2821   popupMgr()->setRule( action( 301 ), aRule.arg( "and (not isVisible)" ), true);
2822
2823   popupMgr()->insert( action( 300 ), -1, -1 ); // ERASE
2824   popupMgr()->setRule( action( 300 ), aRule.arg( "and isVisible" ), true );
2825
2826   popupMgr()->insert( action( 302 ), -1, -1 ); // DISPLAY_ONLY
2827   popupMgr()->setRule( action( 302 ), aRule.arg( "" ), true );
2828
2829   popupMgr()->insert( separator(), -1, -1 );
2830
2831   connect( application(), SIGNAL( viewManagerActivated( SUIT_ViewManager* ) ),
2832            this, SLOT( onViewManagerActivated( SUIT_ViewManager* ) ) );
2833 }
2834
2835 bool SMESHGUI::activateModule( SUIT_Study* study )
2836 {
2837   bool res = SalomeApp_Module::activateModule( study );
2838
2839   setMenuShown( true );
2840   setToolShown( true );
2841
2842   return res;
2843 }
2844
2845 bool SMESHGUI::deactivateModule( SUIT_Study* study )
2846 {
2847   setMenuShown( false );
2848   setToolShown( false );
2849
2850   EmitSignalCloseAllDialogs();
2851
2852   return SalomeApp_Module::deactivateModule( study );
2853 }
2854
2855 void SMESHGUI::OnGUIEvent()
2856 {
2857   const QObject* obj = sender();
2858   if ( !obj || !obj->inherits( "QAction" ) )
2859     return;
2860   int id = actionId((QAction*)obj);
2861   if ( id != -1 )
2862     OnGUIEvent( id );
2863 }
2864
2865 SMESH::SMESH_Gen_var SMESHGUI::GetSMESHGen()
2866 {
2867   _PTR(Study) aStudy = SMESH::GetActiveStudyDocument(); //Document OCAF de l'etude active
2868   if ( CORBA::is_nil( myComponentSMESH ) )
2869     {
2870       SMESHGUI aGUI; //SRN BugID: IPAL9186: Create an instance of SMESHGUI to initialize myComponentSMESH
2871       if ( aStudy )
2872         aGUI.myComponentSMESH->SetCurrentStudy(_CAST(Study,aStudy)->GetStudy());
2873       return aGUI.myComponentSMESH;
2874     }
2875   if ( aStudy )
2876     myComponentSMESH->SetCurrentStudy(_CAST(Study,aStudy)->GetStudy());
2877   return myComponentSMESH;
2878 }
2879
2880 QString SMESHGUI::engineIOR() const
2881 {
2882   CORBA::ORB_var anORB = getApp()->orb();
2883   CORBA::String_var anIOR = anORB->object_to_string(GetSMESHGen());
2884   return anIOR.in();
2885 }
2886
2887 void SMESHGUI::contextMenuPopup( const QString& client, QPopupMenu* menu, QString& /*title*/ )
2888 {
2889   SMESHGUI_Selection sel;
2890   sel.init( client, selectionMgr() );
2891   popupMgr()->updatePopup( menu, &sel );
2892 }
2893
2894 void SMESHGUI::windows( QMap<int, int>& aMap ) const
2895 {
2896   aMap.insert( SalomeApp_Application::WT_ObjectBrowser, Qt::DockLeft );
2897   aMap.insert( SalomeApp_Application::WT_PyConsole, Qt::DockBottom );
2898 }
2899
2900 void SMESHGUI::viewManagers( QStringList& list ) const
2901 {
2902   list.append( SVTK_Viewer::Type() );
2903 }
2904
2905 void SMESHGUI::onViewManagerActivated( SUIT_ViewManager* mgr )
2906 {
2907   if ( dynamic_cast<SVTK_ViewManager*>( mgr ) )
2908     SMESH::UpdateSelectionProp( this );
2909 }
2910
2911 void SMESHGUI::createPreferences()
2912 {
2913   int genTab = addPreference( tr( "PREF_TAB_GENERAL" ) );
2914
2915   int updateGroup = addPreference( tr( "PREF_GROUP_UPDATE" ), genTab );
2916   addPreference( tr( "PREF_AUTO_UPDATE" ), updateGroup, LightApp_Preferences::Bool, "SMESH", "auto_update" );
2917
2918   int qaGroup = addPreference( tr( "PREF_GROUP_QUALITY" ), genTab );
2919   addPreference( tr( "PREF_DISPLAY_ENTITY" ), qaGroup, LightApp_Preferences::Bool, "SMESH", "display_entity" );
2920   addPreference( tr( "PREF_PRECISION_USE" ), qaGroup, LightApp_Preferences::Bool, "SMESH", "use_precision" );
2921
2922   int precGroup = addPreference( tr( "PREF_GROUP_PRECISION" ), genTab );
2923   setPreferenceProperty( precGroup, "columns", 1 );
2924
2925   int prec = addPreference( tr( "PREF_PRECISION_VALUE" ), precGroup, LightApp_Preferences::IntSpin, "SMESH", "controls_precision" );
2926
2927   setPreferenceProperty( prec, "min", 0 );
2928   setPreferenceProperty( prec, "max", 16 );
2929
2930   int dispgroup = addPreference( tr( "PREF_DISPLAY_MODE" ), genTab );
2931   int dispmode = addPreference( tr( "PREF_DISPLAY_MODE" ), dispgroup, LightApp_Preferences::Selector, "SMESH", "display_mode" );
2932   QStringList modes;
2933   modes.append( "Wireframe" );
2934   modes.append( "Shading" );
2935   modes.append( "Nodes" );
2936   modes.append( "Shrink" );
2937   QValueList<QVariant> indices;
2938   indices.append( 0 );
2939   indices.append( 1 );
2940   indices.append( 2 );
2941   indices.append( 3 );
2942   setPreferenceProperty( dispmode, "strings", modes );
2943   setPreferenceProperty( dispmode, "indexes", indices );
2944
2945   int exportgroup = addPreference( tr( "PREF_GROUP_EXPORT" ), genTab );
2946   addPreference( tr( "PREF_AUTO_GROUPS" ), exportgroup, LightApp_Preferences::Bool, "SMESH", "auto_groups" );
2947   
2948   int meshTab = addPreference( tr( "PREF_TAB_MESH" ) );
2949   int nodeGroup = addPreference( tr( "PREF_GROUP_NODES" ), meshTab );
2950
2951   addPreference( tr( "PREF_COLOR" ), nodeGroup, LightApp_Preferences::Color, "SMESH", "node_color" );
2952   int nodeSz = addPreference( tr( "PREF_SIZE" ), nodeGroup, LightApp_Preferences::IntSpin, "SMESH", "node_size" );
2953
2954   setPreferenceProperty( nodeSz, "min", 1 );
2955   setPreferenceProperty( nodeSz, "max", 5 );
2956
2957   int elemGroup = addPreference( tr( "PREF_GROUP_ELEMENTS" ), meshTab );
2958
2959   addPreference( tr( "PREF_FILL" ), elemGroup, LightApp_Preferences::Color, "SMESH", "fill_color" );
2960   addPreference( tr( "PREF_OUTLINE" ), elemGroup, LightApp_Preferences::Color, "SMESH", "outline_color" );
2961   addPreference( tr( "PREF_BACKFACE" ), elemGroup, LightApp_Preferences::Color, "SMESH", "backface_color" );
2962   addPreference( "", elemGroup, LightApp_Preferences::Space );
2963
2964   int elemW = addPreference( tr( "PREF_WIDTH" ), elemGroup, LightApp_Preferences::IntSpin, "SMESH", "element_width" );
2965   int shrink = addPreference( tr( "PREF_SHRINK_COEFF" ), elemGroup, LightApp_Preferences::IntSpin, "SMESH", "shrink_coeff" );
2966
2967   setPreferenceProperty( elemW, "min", 1 );
2968   setPreferenceProperty( elemW, "max", 5 );
2969
2970   setPreferenceProperty( shrink, "min", 0 );
2971   setPreferenceProperty( shrink, "max", 100 );
2972
2973   int selTab = addPreference( tr( "PREF_TAB_SELECTION" ) );
2974
2975   int selGroup = addPreference( tr( "PREF_GROUP_SELECTION" ), selTab );
2976
2977   addPreference( tr( "PREF_OBJECT_COLOR" ), selGroup, LightApp_Preferences::Color, "SMESH", "selection_object_color" );
2978   addPreference( tr( "PREF_ELEMENT_COLOR" ), selGroup, LightApp_Preferences::Color, "SMESH", "selection_element_color" );
2979   int selW = addPreference( tr( "PREF_WIDTH" ), selGroup, LightApp_Preferences::IntSpin, "SMESH", "selection_width" );
2980
2981   setPreferenceProperty( selW, "min", 1 );
2982   setPreferenceProperty( selW, "max", 5 );
2983
2984   int preGroup = addPreference( tr( "PREF_GROUP_PRESELECTION" ), selTab );
2985
2986   addPreference( tr( "PREF_HIGHLIGHT_COLOR" ), preGroup, LightApp_Preferences::Color, "SMESH", "highlight_color" );
2987   int preW = addPreference( tr( "PREF_WIDTH" ), preGroup, LightApp_Preferences::IntSpin, "SMESH", "highlight_width" );
2988
2989   setPreferenceProperty( preW, "min", 1 );
2990   setPreferenceProperty( preW, "max", 5 );
2991
2992   int precSelGroup = addPreference( tr( "PREF_GROUP_PRECISION" ), selTab );
2993
2994   addPreference( tr( "PREF_NODES" ), precSelGroup, LightApp_Preferences::Double, "SMESH", "selection_precision_node" );
2995   addPreference( tr( "PREF_ELEMENTS" ), precSelGroup, LightApp_Preferences::Double, "SMESH", "selection_precision_element" );
2996
2997   int sbarTab = addPreference( tr( "SMESH_SCALARBAR" ) );
2998   int fontGr = addPreference( tr( "SMESH_FONT_SCALARBAR" ), sbarTab );
2999
3000   int tfont = addPreference( tr( "SMESH_TITLE" ), fontGr, LightApp_Preferences::Font, "SMESH", "scalar_bar_title_font" );
3001   addPreference( tr( "SMESH_TITLE" ), fontGr, LightApp_Preferences::Color, "SMESH", "scalar_bar_title_color" );
3002   int lfont = addPreference( tr( "SMESH_LABELS" ), fontGr, LightApp_Preferences::Font, "SMESH", "scalar_bar_label_font" );
3003   addPreference( tr( "SMESH_LABELS" ), fontGr, LightApp_Preferences::Color, "SMESH", "scalar_bar_label_color" );
3004
3005   QStringList fam;
3006   fam.append( tr( "SMESH_FONT_ARIAL" ) );
3007   fam.append( tr( "SMESH_FONT_COURIER" ) );
3008   fam.append( tr( "SMESH_FONT_TIMES" ) );
3009   int wflag = ( QtxListResourceEdit::FontItem::All & ( ~( QtxListResourceEdit::FontItem::Size | QtxListResourceEdit::FontItem::UserSize ) ) );
3010
3011   setPreferenceProperty( tfont, "families", fam );
3012   setPreferenceProperty( tfont, "system", false );
3013   setPreferenceProperty( tfont, "widget_flags", wflag );
3014   setPreferenceProperty( lfont, "families", fam );
3015   setPreferenceProperty( lfont, "system", false );
3016   setPreferenceProperty( lfont, "widget_flags", wflag );
3017
3018   int colorsLabelsGr = addPreference( tr( "SMESH_LABELS_COLORS_SCALARBAR" ), sbarTab );
3019
3020   int numcol = addPreference( tr( "SMESH_NUMBEROFCOLORS" ), colorsLabelsGr, LightApp_Preferences::IntSpin, "SMESH", "scalar_bar_num_colors" );
3021   setPreferenceProperty( numcol, "min", 2 );
3022   setPreferenceProperty( numcol, "max", 256 );
3023
3024   int numlab = addPreference( tr( "SMESH_NUMBEROFLABELS" ), colorsLabelsGr, LightApp_Preferences::IntSpin, "SMESH", "scalar_bar_num_labels" );
3025   setPreferenceProperty( numlab, "min", 2 );
3026   setPreferenceProperty( numlab, "max", 65 );
3027
3028   int orientGr = addPreference( tr( "SMESH_ORIENTATION" ), sbarTab );
3029   int orient = addPreference( tr( "SMESH_ORIENTATION" ), orientGr, LightApp_Preferences::Selector, "SMESH", "scalar_bar_orientation" );
3030   QStringList orients;
3031   orients.append( tr( "SMESH_VERTICAL" ) );
3032   orients.append( tr( "SMESH_HORIZONTAL" ) );
3033   indices.clear(); indices.append( 0 ); indices.append( 1 );
3034   setPreferenceProperty( orient, "strings", orients );
3035   setPreferenceProperty( orient, "indexes", indices );
3036
3037   int posVSizeGr = addPreference( tr( "SMESH_POSITION_SIZE_SCALARBAR" ) + " " + tr( "SMESH_VERTICAL" ), sbarTab );
3038   int xv = addPreference( tr( "SMESH_X_SCALARBAR" ), posVSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_vertical_x" );
3039   int yv = addPreference( tr( "SMESH_Y_SCALARBAR" ), posVSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_vertical_y" );
3040   int wv = addPreference( tr( "SMESH_WIDTH" ), posVSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_vertical_width" );
3041   int hv = addPreference( tr( "SMESH_HEIGHT" ), posVSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_vertical_height" );
3042   setPreferenceProperty( xv, "step", 0.1 );
3043   setPreferenceProperty( xv, "min", 0.0 );
3044   setPreferenceProperty( xv, "max", 1.0 );
3045   setPreferenceProperty( yv, "step", 0.1 );
3046   setPreferenceProperty( yv, "min", 0.0 );
3047   setPreferenceProperty( yv, "max", 1.0 );
3048   setPreferenceProperty( wv, "step", 0.1 );
3049   setPreferenceProperty( wv, "min", 0.0 );
3050   setPreferenceProperty( wv, "max", 1.0 );
3051   setPreferenceProperty( hv, "min", 0.0 );
3052   setPreferenceProperty( hv, "max", 1.0 );
3053   setPreferenceProperty( hv, "step", 0.1 );
3054
3055   int posHSizeGr = addPreference( tr( "SMESH_POSITION_SIZE_SCALARBAR" ) + " " + tr( "SMESH_HORIZONTAL" ), sbarTab );
3056   int xh = addPreference( tr( "SMESH_X_SCALARBAR" ), posHSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_horizontal_x" );
3057   int yh = addPreference( tr( "SMESH_Y_SCALARBAR" ), posHSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_horizontal_y" );
3058   int wh = addPreference( tr( "SMESH_WIDTH" ), posHSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_horizontal_width" );
3059   int hh = addPreference( tr( "SMESH_HEIGHT" ), posHSizeGr, LightApp_Preferences::DblSpin, "SMESH", "scalar_bar_horizontal_height" );
3060   setPreferenceProperty( xv, "min", 0.0 );
3061   setPreferenceProperty( xv, "max", 1.0 );
3062   setPreferenceProperty( xv, "step", 0.1 );
3063   setPreferenceProperty( xh, "min", 0.0 );
3064   setPreferenceProperty( xh, "max", 1.0 );
3065   setPreferenceProperty( xh, "step", 0.1 );
3066   setPreferenceProperty( yh, "min", 0.0 );
3067   setPreferenceProperty( yh, "max", 1.0 );
3068   setPreferenceProperty( yh, "step", 0.1 );
3069   setPreferenceProperty( wh, "min", 0.0 );
3070   setPreferenceProperty( wh, "max", 1.0 );
3071   setPreferenceProperty( wh, "step", 0.1 );
3072   setPreferenceProperty( hh, "min", 0.0 );
3073   setPreferenceProperty( hh, "max", 1.0 );
3074   setPreferenceProperty( hh, "step", 0.1 );
3075 }
3076
3077 void SMESHGUI::preferencesChanged( const QString& sect, const QString& name )
3078 {
3079   if( sect=="SMESH" ){
3080     float sbX1,sbY1,sbW,sbH;
3081     float aTol = 1.00000009999999;
3082     std::string aWarning;
3083     SUIT_ResourceMgr* aResourceMgr = SMESH::GetResourceMgr(this);
3084     if( name=="selection_object_color" || name=="selection_element_color" || 
3085         name=="selection_width" || name=="highlight_color" || name=="highlight_width" ||
3086         name=="selection_precision_node" || name=="selection_precision_element" )
3087       SMESH::UpdateSelectionProp( this );
3088     else if (name == QString("scalar_bar_vertical_x") || name == QString("scalar_bar_vertical_width")){
3089       sbX1 = aResourceMgr->doubleValue("SMESH", "scalar_bar_vertical_x", sbX1);
3090       sbW = aResourceMgr->doubleValue("SMESH", "scalar_bar_vertical_width", sbW);
3091       if(sbX1+sbW > aTol){
3092         aWarning = "Origin and Size Vertical: X+Width > 1\n";   
3093         sbX1=0.01;
3094         sbW=0.05;
3095         aResourceMgr->setValue("SMESH", "scalar_bar_vertical_x", sbX1);
3096         aResourceMgr->setValue("SMESH", "scalar_bar_vertical_width", sbW);
3097       }
3098     }
3099     else if(name == QString("scalar_bar_vertical_y") || name == QString("scalar_bar_vertical_height")){
3100       sbY1 = aResourceMgr->doubleValue("SMESH", "scalar_bar_vertical_y", sbY1);
3101       sbH = aResourceMgr->doubleValue("SMESH", "scalar_bar_vertical_height",sbH);
3102       if(sbY1+sbH > aTol){
3103         aWarning = "Origin and Size Vertical: Y+Height > 1\n";
3104         sbY1=0.01;
3105         sbH=0.5;
3106         aResourceMgr->setValue("SMESH", "scalar_bar_vertical_y", sbY1);
3107         aResourceMgr->setValue("SMESH", "scalar_bar_vertical_height",sbH);
3108       }
3109     }
3110     else if(name ==  QString("scalar_bar_horizontal_x") || name ==  QString("scalar_bar_horizontal_width")){
3111       sbX1 = aResourceMgr->doubleValue("SMESH", "scalar_bar_horizontal_x", sbX1);
3112       sbW = aResourceMgr->doubleValue("SMESH", "scalar_bar_horizontal_width", sbW);
3113       if(sbX1+sbW > aTol){
3114         aWarning = "Origin and Size Horizontal: X+Width > 1\n";
3115         sbX1=0.2;
3116         sbW=0.6;
3117         aResourceMgr->setValue("SMESH", "scalar_bar_horizontal_x", sbX1);
3118         aResourceMgr->setValue("SMESH", "scalar_bar_horizontal_width", sbW);
3119       }
3120     }
3121     else if(name ==  QString("scalar_bar_horizontal_y") || name ==  QString("scalar_bar_horizontal_height")){
3122       sbY1 = aResourceMgr->doubleValue("SMESH", "scalar_bar_horizontal_y", sbY1);
3123       sbH = aResourceMgr->doubleValue("SMESH", "scalar_bar_horizontal_height",sbH);
3124       if(sbY1+sbH > aTol){
3125         aWarning = "Origin and Size Horizontal: Y+Height > 1\n";
3126         sbY1=0.01;
3127         sbH=0.12;
3128         aResourceMgr->setValue("SMESH", "scalar_bar_horizontal_y", sbY1);
3129         aResourceMgr->setValue("SMESH", "scalar_bar_horizontal_height",sbH);
3130       }
3131     }
3132     
3133     if(aWarning.size() != 0){
3134       aWarning += "The default values are applied instead.";
3135       SUIT_MessageBox::warn1(SMESHGUI::desktop(),
3136                              QObject::tr("SMESH_ERR_SCALARBAR_PARAMS"),
3137                              QObject::tr(aWarning.c_str()),
3138                              QObject::tr("SMESH_BUT_OK"));
3139     }
3140   }
3141 }
3142
3143 //================================================================================
3144 /*!
3145  * \brief Update something in accordance with update flags
3146   * \param theFlags - update flags
3147 *
3148 * Update viewer or/and object browser etc. in accordance with update flags ( see
3149 * LightApp_UpdateFlags enumeration ).
3150 */
3151 //================================================================================
3152 void SMESHGUI::update( const int flags )
3153 {
3154   if ( flags & UF_Viewer | flags & UF_Forced )
3155     SMESH::UpdateView();
3156   else
3157     SalomeApp_Module::update( flags );
3158 }
3159
3160 //================================================================================
3161 /*!
3162  * \brief Set default selection mode
3163 *
3164 * SLOT called when operation commited. Sets default selection mode
3165 */
3166 //================================================================================
3167 void SMESHGUI::onOperationCommited( SUIT_Operation* )
3168 {
3169   SVTK_ViewWindow* vtkWnd =
3170     dynamic_cast<SVTK_ViewWindow*>( application()->desktop()->activeWindow() );
3171   if ( vtkWnd )
3172     vtkWnd->SetSelectionMode( ActorSelection );
3173 }
3174
3175 //================================================================================
3176 /*!
3177  * \brief Set default selection mode
3178 *
3179 * SLOT called when operation aborted. Sets default selection mode
3180 */
3181 //================================================================================
3182 void SMESHGUI::onOperationAborted( SUIT_Operation* )
3183 {
3184   SVTK_ViewWindow* vtkWnd =
3185     dynamic_cast<SVTK_ViewWindow*>( application()->desktop()->activeWindow() );
3186   if ( vtkWnd )
3187     vtkWnd->SetSelectionMode( ActorSelection );
3188 }
3189
3190 //================================================================================
3191 /*!
3192  * \brief Creates operation with given identifier
3193   * \param id - identifier of operation to be started
3194   * \return Pointer on created operation or NULL if operation is not created
3195 *
3196 * Virtual method redefined from the base class creates operation with given id.
3197 * It is called called automatically from startOperation method of base class.
3198 */
3199 //================================================================================
3200 LightApp_Operation* SMESHGUI::createOperation( const int id ) const
3201 {
3202   LightApp_Operation* op = 0;
3203   // to do : create operation here
3204   switch( id )
3205   {
3206     case 702: // Create mesh
3207       op = new SMESHGUI_MeshOp( true, true );
3208     break;
3209     case 703: // Create sub-mesh
3210       op = new SMESHGUI_MeshOp( true, false );
3211     break;
3212     case 704: // Edit mesh/sub-mesh
3213       op = new SMESHGUI_MeshOp( false );
3214     break;
3215     default:
3216     break;
3217   }
3218
3219   if( !op )
3220     op = SalomeApp_Module::createOperation( id );
3221   return op;
3222 }
3223
3224 //================================================================================
3225 /*!
3226  * \brief Stops current operations and starts a given one
3227   * \param id - The id of the operation to start
3228  */
3229 //================================================================================
3230
3231 void SMESHGUI::switchToOperation(int id)
3232 {
3233   if ( _PTR(Study) aStudy = SMESH::GetActiveStudyDocument() )
3234     activeStudy()->abortAllOperations();
3235   startOperation( id );
3236 }
3237
3238 LightApp_Displayer* SMESHGUI::displayer()
3239 {
3240   if( !myDisplayer )
3241     myDisplayer = new SMESHGUI_Displayer( getApp() );
3242   return myDisplayer;
3243 }