Salome HOME
23061: [CEA 1488] Import 1D-2D fails sometimes in relation with the source face discr...
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddMeshElementDlg.cxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_AddMeshElementDlg.cxx
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 //  SMESH includes
27 //
28 #include "SMESHGUI_AddMeshElementDlg.h"
29
30 #include "SMESHGUI.h"
31 #include "SMESHGUI_GroupUtils.h"
32 #include "SMESHGUI_IdValidator.h"
33 #include "SMESHGUI_MeshUtils.h"
34 #include "SMESHGUI_SpinBox.h"
35 #include "SMESHGUI_Utils.h"
36 #include "SMESHGUI_VTKUtils.h"
37
38 #include <SMESH_Actor.h>
39 #include <SMESH_ActorUtils.h>
40 #include <SMESH_FaceOrientationFilter.h>
41 #include <SMDS_Mesh.hxx>
42
43 // SALOME GUI inclues
44 #include <SUIT_Desktop.h>
45 #include <SUIT_Session.h>
46 #include <SUIT_ResourceMgr.h>
47 #include <SUIT_MessageBox.h>
48 #include <SUIT_ViewManager.h>
49 #include <LightApp_SelectionMgr.h>
50 #include <SALOME_ListIO.hxx>
51 #include <SalomeApp_Application.h>
52 #include <SVTK_ViewModel.h>
53 #include <SVTK_ViewWindow.h>
54 #include <VTKViewer_PolyDataMapper.h>
55 #include <SVTK_Renderer.h>
56 #include <Qtx.h>
57
58
59 // IDL incldues
60 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
61
62 // OCCT includes
63 #include <TColStd_MapOfInteger.hxx>
64
65 // VTK includes
66 #include <vtkCell.h>
67 #include <vtkIdList.h>
68 #include <vtkUnstructuredGrid.h>
69 #include <vtkDataSetMapper.h>
70 #include <vtkPolyDataMapper.h>
71 #include <vtkProperty.h>
72 #include <vtkCellData.h>
73
74 // Qt includes
75 #include <QComboBox>
76 #include <QGroupBox>
77 #include <QLabel>
78 #include <QLineEdit>
79 #include <QPushButton>
80 #include <QRadioButton>
81 #include <QHBoxLayout>
82 #include <QVBoxLayout>
83 #include <QGridLayout>
84 #include <QVariant>
85 #include <QCheckBox>
86 #include <QKeyEvent>
87 #include <QButtonGroup>
88
89 #define SPACING 6
90 #define MARGIN  11
91
92 namespace SMESH
93 {
94   class TElementSimulation
95   {
96     SalomeApp_Application* myApplication;
97     SUIT_ViewWindow* myViewWindow;
98     SVTK_ViewWindow* myVTKViewWindow;
99
100     SALOME_Actor* myPreviewActor;
101     vtkDataSetMapper* myMapper;
102     vtkUnstructuredGrid* myGrid;
103     
104     SALOME_Actor* myBallActor;
105     VTKViewer_PolyDataMapper* myBallMapper;
106     vtkPolyData* myBallPolyData; 
107
108     SALOME_Actor* myFaceOrientation;
109     vtkPolyDataMapper* myFaceOrientationDataMapper;
110     SMESH_FaceOrientationFilter* myFaceOrientationFilter;
111
112   public:
113     TElementSimulation (SalomeApp_Application* theApplication)
114     {
115       myApplication = theApplication;
116       SUIT_ViewManager* mgr = theApplication->activeViewManager();
117       if (!mgr) return;
118       myViewWindow = mgr->getActiveView();
119       myVTKViewWindow = GetVtkViewWindow(myViewWindow);
120
121       myGrid = vtkUnstructuredGrid::New();
122
123       // Create and display actor
124       myMapper = vtkDataSetMapper::New();
125       myMapper->SetInputData(myGrid);
126
127       myPreviewActor = SALOME_Actor::New();
128       myPreviewActor->PickableOff();
129       myPreviewActor->VisibilityOff();
130       myPreviewActor->SetMapper(myMapper);
131
132       QColor ffc, bfc;
133       int delta;
134
135       vtkProperty* aProp = vtkProperty::New();
136       SMESH::GetColor( "SMESH", "preview_color", ffc, delta, "0, 255, 0|-100" ) ;
137       aProp->SetColor( ffc.red() / 255. , ffc.green() / 255. , ffc.blue() / 255. );
138       myPreviewActor->SetProperty( aProp );
139       aProp->Delete();
140
141       vtkProperty* aBackProp = vtkProperty::New();
142       bfc = Qtx::mainColorToSecondary(ffc, delta);
143       aBackProp->SetColor( bfc.red() / 255. , bfc.green() / 255. , bfc.blue() / 255. );
144       myPreviewActor->SetBackfaceProperty( aBackProp );
145       aBackProp->Delete();
146
147       myVTKViewWindow->AddActor(myPreviewActor);
148
149       // Orientation of faces
150       myFaceOrientationFilter = SMESH_FaceOrientationFilter::New();
151       myFaceOrientationFilter->SetInputData(myGrid);
152
153       myFaceOrientationDataMapper = vtkPolyDataMapper::New();
154       myFaceOrientationDataMapper->SetInputConnection(myFaceOrientationFilter->GetOutputPort());
155
156       myFaceOrientation = SALOME_Actor::New();
157       myFaceOrientation->PickableOff();
158       myFaceOrientation->VisibilityOff();
159       myFaceOrientation->SetMapper(myFaceOrientationDataMapper);
160
161       vtkProperty* anOrientationProp = vtkProperty::New();
162       double anRGB[3];
163       GetColor( "SMESH", "orientation_color", anRGB[0], anRGB[1], anRGB[2], QColor( 255, 255, 255 ) );
164       anOrientationProp->SetColor( anRGB[0], anRGB[1], anRGB[2] );
165       myFaceOrientation->SetProperty( anOrientationProp );
166       anOrientationProp->Delete();
167       myVTKViewWindow->AddActor(myFaceOrientation);
168
169       // Preview for the balls
170       vtkProperty* aBallProp = vtkProperty::New();
171       aBallProp->SetColor(ffc.red() / 255. , ffc.green() / 255. , ffc.blue() / 255.);
172       //double aBallElemSize = SMESH::GetFloat("SMESH:ball_elem_size",10);
173       double aBallElemSize = SMESH::GetFloat("SMESH:ball_elem_diameter",1);
174       aBallProp->SetPointSize(aBallElemSize);
175
176       myBallPolyData = vtkPolyData::New();
177       myBallPolyData->Allocate();
178
179       myBallMapper = VTKViewer_PolyDataMapper::New();
180       myBallMapper->SetInputData(myBallPolyData);
181       myBallMapper->SetBallEnabled(true);
182
183       myBallActor = SALOME_Actor::New();
184       myBallActor->PickableOff();
185       myBallActor->SetVisibility(false);
186       myBallActor->SetProperty(aBallProp);
187       myBallActor->SetMapper(myBallMapper);
188       aBallProp->Delete();
189       
190       myVTKViewWindow->AddActor(myBallActor);
191     }
192
193     typedef std::vector<vtkIdType> TVTKIds;
194     void SetPosition (SMESH_Actor* theActor,
195                       vtkIdType    theType,
196                       TVTKIds&     theIds)
197     {
198       vtkUnstructuredGrid *aGrid = theActor->GetUnstructuredGrid();
199       myGrid->SetPoints(aGrid->GetPoints());
200       myGrid->Reset();      
201
202       const std::vector<int>& interlace = SMDS_MeshCell::toVtkOrder( VTKCellType( theType ));
203       SMDS_MeshCell::applyInterlace( interlace, theIds );
204
205       vtkIdList *anIds = vtkIdList::New();
206       for (int i = 0, iEnd = theIds.size(); i < iEnd; i++)
207         anIds->InsertId(i,theIds[i]);
208
209       myGrid->InsertNextCell(theType,anIds);
210       anIds->Delete();
211
212       myGrid->Modified();
213
214       SetVisibility(true, theActor->GetFacesOriented(), false);
215     }
216
217     void SetBallPosition(SMESH_Actor* theActor,TVTKIds& theIds, double theDiameter) {
218       vtkUnstructuredGrid *aGrid = theActor->GetUnstructuredGrid();
219       myBallPolyData->Reset();
220       myBallPolyData->DeleteCells();
221       myBallPolyData->SetPoints(aGrid->GetPoints());
222       
223       vtkDataArray* aScalars = vtkDataArray::CreateDataArray(VTK_DOUBLE);
224       aScalars->SetNumberOfComponents(1);
225       aScalars->SetNumberOfTuples(theIds.size());
226       myBallPolyData->GetCellData()->SetScalars(aScalars);
227       aScalars->Delete();
228
229       vtkIdList *anIds = vtkIdList::New();
230       anIds->SetNumberOfIds(1);
231       for (int i = 0, iEnd = theIds.size(); i < iEnd; i++){
232         anIds->InsertId(0,theIds[i]);
233         vtkIdType anId = myBallPolyData->InsertNextCell(VTK_POLY_VERTEX,anIds);
234         double d = theDiameter * theActor->GetBallScale();
235         aScalars->SetTuple(anId,&d);
236         anIds->Reset();
237       }
238       
239       anIds->Delete();
240       myBallPolyData->Modified();
241       SetVisibility (false, false, true);
242     }
243
244     void SetVisibility (bool theVisibility, bool theShowOrientation = false, bool theShowBalls = false)
245     {
246       myPreviewActor->SetVisibility(theVisibility);
247       myFaceOrientation->SetVisibility(theShowOrientation);
248       myBallActor->SetVisibility(theShowBalls);
249       RepaintCurrentView();
250     }
251
252
253     ~TElementSimulation()
254     {
255       myMapper->RemoveAllInputs();
256       myFaceOrientationDataMapper->RemoveAllInputs();
257       myBallMapper->RemoveAllInputs();
258
259       if (FindVtkViewWindow(myApplication->activeViewManager(), myViewWindow)) {
260         myVTKViewWindow->RemoveActor(myPreviewActor,false,false);
261         myVTKViewWindow->RemoveActor(myFaceOrientation,false,false);
262         myVTKViewWindow->RemoveActor(myBallActor,false,false);
263       }
264
265       myMapper->Delete();
266       myGrid->Delete();
267       myPreviewActor->Delete();
268             
269       myFaceOrientationFilter->Delete();      
270       myFaceOrientationDataMapper->Delete();
271       myFaceOrientation->Delete();
272
273       myBallMapper->Delete();
274       myBallPolyData->Delete();
275       myBallActor->Delete();
276     }
277   };
278 }
279
280 //=================================================================================
281 // function : SMESHGUI_AddMeshElementDlg()
282 // purpose  : constructor
283 //=================================================================================
284 SMESHGUI_AddMeshElementDlg::SMESHGUI_AddMeshElementDlg( SMESHGUI*          theModule,
285                                                         SMDSAbs_EntityType ElementType)
286   : QDialog( SMESH::GetDesktop( theModule ) ),
287     mySMESHGUI( theModule ),
288     mySelectionMgr( SMESH::GetSelectionMgr( theModule ) ),
289     myBusy ( false )
290 {
291   setModal( false );
292   setAttribute( Qt::WA_DeleteOnClose, true );
293
294   SalomeApp_Application* anApp = dynamic_cast<SalomeApp_Application*>
295     (SUIT_Session::session()->activeApplication());
296   myIsPoly = false;
297   mySimulation = new SMESH::TElementSimulation (anApp);
298   mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
299   myGeomType = ElementType;
300   myElementType = SMDSAbs_Volume;
301
302   // verify nb nodes and type
303   QString elemName;
304   switch ( myGeomType ) {
305   case SMDSEntity_0D:
306     myNbNodes = 1;
307     myElementType = SMDSAbs_0DElement;
308     elemName = "ELEM0D";
309     myHelpFileName = "adding_nodes_and_elements_page.html#adding_0delems_anchor";
310     break;
311   case SMDSEntity_Ball:
312     myNbNodes = 1;
313     myElementType = SMDSAbs_Ball;
314     elemName = "BALL";
315     myHelpFileName = "adding_nodes_and_elements_page.html#adding_ball_anchor";
316     break;
317   case SMDSEntity_Edge:
318     myNbNodes = 2;
319     myElementType = SMDSAbs_Edge;
320     elemName = "EDGE";
321     myHelpFileName = "adding_nodes_and_elements_page.html#adding_edges_anchor";
322     break;
323   case SMDSEntity_Triangle:
324     myNbNodes = 3;
325     elemName = "TRIANGLE";
326     myElementType = SMDSAbs_Face;
327     myHelpFileName = "adding_nodes_and_elements_page.html#adding_triangles_anchor";
328     break;
329   case SMDSEntity_Quadrangle:
330     myNbNodes = 4;
331     myElementType = SMDSAbs_Face;
332     elemName = "QUADRANGLE";
333     myHelpFileName = "adding_nodes_and_elements_page.html#adding_quadrangles_anchor";
334     break;
335   case SMDSEntity_Polygon:
336     myNbNodes = 0;
337     myElementType = SMDSAbs_Face;
338     elemName = "POLYGON";
339     myIsPoly = true;
340     myHelpFileName = "adding_nodes_and_elements_page.html#adding_polygons_anchor";
341     break;
342   case SMDSEntity_Tetra:
343     myNbNodes = 4;
344     elemName = "TETRAS";
345     myHelpFileName = "adding_nodes_and_elements_page.html#adding_tetrahedrons_anchor";
346     break;
347   case SMDSEntity_Pyramid:
348     myNbNodes = 5;
349     elemName = "PYRAMID";
350     myHelpFileName = "adding_nodes_and_elements_page.html#adding_pyramids_anchor";
351     break;
352   case SMDSEntity_Hexa:
353     myNbNodes = 8;
354     elemName = "HEXAS";
355     myHelpFileName = "adding_nodes_and_elements_page.html#adding_hexahedrons_anchor";
356     break;
357   case SMDSEntity_Penta:
358     myNbNodes = 6;
359     elemName = "PENTA";
360     myHelpFileName = "adding_nodes_and_elements_page.html#adding_pentahedrons_anchor";
361     break;
362   case SMDSEntity_Hexagonal_Prism:
363     myNbNodes = 12;
364     elemName = "OCTA";
365     myHelpFileName = "adding_nodes_and_elements_page.html#adding_octahedrons_anchor";
366     break;
367   default:
368     myNbNodes = 2;
369     elemName = "EDGE";
370     myHelpFileName = "adding_nodes_and_elements_page.html#adding_edges_anchor";
371   }
372
373   QString iconName      = tr(QString("ICON_DLG_%1").arg(elemName).toLatin1().data());
374   QString buttonGrTitle = tr(QString("SMESH_%1").arg(elemName).toLatin1().data());
375   QString caption       = tr(QString("SMESH_ADD_%1_TITLE").arg(elemName).toLatin1().data());
376   QString grBoxTitle    = tr(QString("SMESH_ADD_%1").arg(elemName).toLatin1().data());
377
378   QPixmap image0 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", iconName));
379   QPixmap image1 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SELECT")));
380
381   setWindowTitle(caption);
382   setSizeGripEnabled(true);
383
384   QVBoxLayout* aTopLayout = new QVBoxLayout(this);
385   aTopLayout->setSpacing(SPACING);
386   aTopLayout->setMargin(MARGIN);
387
388   /* Constructor *************************************************/
389   GroupConstructors = new QGroupBox(buttonGrTitle, this);
390   QButtonGroup* ButtonGroup = new QButtonGroup(this);
391   QHBoxLayout* GroupConstructorsLayout = new QHBoxLayout(GroupConstructors);
392   GroupConstructorsLayout->setSpacing(SPACING);
393   GroupConstructorsLayout->setMargin(MARGIN);
394
395   Constructor1 = new QRadioButton(GroupConstructors);
396   Constructor1->setIcon(image0);
397   Constructor1->setChecked(true);
398
399   GroupConstructorsLayout->addWidget(Constructor1);
400   ButtonGroup->addButton( Constructor1, 0 );
401
402   /* Nodes & Reverse *********************************************/
403   GroupC1 = new QGroupBox(grBoxTitle, this);
404   QGridLayout* GroupC1Layout = new QGridLayout(GroupC1);
405   GroupC1Layout->setSpacing(SPACING);
406   GroupC1Layout->setMargin(MARGIN);
407
408   TextLabelC1A1 = new QLabel(tr("SMESH_ID_NODES"), GroupC1);
409   SelectButtonC1A1 = new QPushButton(GroupC1);
410   SelectButtonC1A1->setIcon(image1);
411   LineEditC1A1 = new QLineEdit(GroupC1);
412   LineEditC1A1->setValidator
413     (new SMESHGUI_IdValidator(this, ( myIsPoly || myNbNodes == 1 ) ? 1000 : myNbNodes));
414
415   Reverse = (myElementType == SMDSAbs_Face || myElementType == SMDSAbs_Volume ) ? new QCheckBox(tr("SMESH_REVERSE"), GroupC1) : 0;
416
417   DiameterSpinBox = ( myGeomType == SMDSEntity_Ball ) ? new SMESHGUI_SpinBox(GroupC1) : 0;
418   QLabel* diameterLabel = DiameterSpinBox ? new QLabel( tr("BALL_DIAMETER"),GroupC1) : 0;
419
420   GroupC1Layout->addWidget(TextLabelC1A1,    0, 0);
421   GroupC1Layout->addWidget(SelectButtonC1A1, 0, 1);
422   GroupC1Layout->addWidget(LineEditC1A1,     0, 2);
423   if ( Reverse ) {
424     GroupC1Layout->addWidget(Reverse, 1, 0, 1, 3);
425   }
426   if ( DiameterSpinBox ) {
427     GroupC1Layout->addWidget(diameterLabel,   1, 0);
428     GroupC1Layout->addWidget(DiameterSpinBox, 1, 1, 1, 2);
429
430     DiameterSpinBox->RangeStepAndValidator( 1e-7, 1e+9, 0.1 );
431     DiameterSpinBox->SetValue( SMESH::GetFloat("SMESH:ball_elem_diameter", 1) );
432     connect( DiameterSpinBox, SIGNAL( valueChanged ( double ) ), this, SLOT( onDiameterChanged( ) ) );
433   }
434   /* Add to group ************************************************/
435   GroupGroups = new QGroupBox( tr( "SMESH_ADD_TO_GROUP" ), this );
436   GroupGroups->setCheckable( true );
437   QHBoxLayout* GroupGroupsLayout = new QHBoxLayout(GroupGroups);
438   GroupGroupsLayout->setSpacing(SPACING);
439   GroupGroupsLayout->setMargin(MARGIN);
440
441   TextLabel_GroupName = new QLabel( tr( "SMESH_GROUP" ), GroupGroups );
442   ComboBox_GroupName = new QComboBox( GroupGroups );
443   ComboBox_GroupName->setEditable( true );
444   ComboBox_GroupName->setInsertPolicy( QComboBox::NoInsert );
445
446   GroupGroupsLayout->addWidget( TextLabel_GroupName );
447   GroupGroupsLayout->addWidget( ComboBox_GroupName, 1 );
448
449   /* Apply etc ***************************************************/
450   GroupButtons = new QGroupBox(this);
451   QHBoxLayout* GroupButtonsLayout = new QHBoxLayout(GroupButtons);
452   GroupButtonsLayout->setSpacing(SPACING);
453   GroupButtonsLayout->setMargin(MARGIN);
454
455   buttonOk = new QPushButton(tr("SMESH_BUT_APPLY_AND_CLOSE"), GroupButtons);
456   buttonOk->setAutoDefault(true);
457   buttonOk->setDefault(true);
458   buttonApply = new QPushButton(tr("SMESH_BUT_APPLY"), GroupButtons);
459   buttonApply->setAutoDefault(true);
460   buttonCancel = new QPushButton(tr("SMESH_BUT_CLOSE"), GroupButtons);
461   buttonCancel->setAutoDefault(true);
462   buttonHelp = new QPushButton(tr("SMESH_BUT_HELP"), GroupButtons);
463   buttonHelp->setAutoDefault(true);
464
465   GroupButtonsLayout->addWidget(buttonOk);
466   GroupButtonsLayout->addSpacing(10);
467   GroupButtonsLayout->addWidget(buttonApply);
468   GroupButtonsLayout->addSpacing(10);
469   GroupButtonsLayout->addStretch();
470   GroupButtonsLayout->addWidget(buttonCancel);
471   GroupButtonsLayout->addWidget(buttonHelp);
472
473   /***************************************************************/
474   aTopLayout->addWidget(GroupConstructors);
475   aTopLayout->addWidget(GroupC1);
476   aTopLayout->addWidget(GroupGroups);
477   aTopLayout->addWidget(GroupButtons);
478
479   Init(); /* Initialisations */
480 }
481
482 //=================================================================================
483 // function : ~SMESHGUI_AddMeshElementDlg()
484 // purpose  : Destroys the object and frees any allocated resources
485 //=================================================================================
486 SMESHGUI_AddMeshElementDlg::~SMESHGUI_AddMeshElementDlg()
487 {
488   delete mySimulation;
489 }
490
491 //=================================================================================
492 // function : Init()
493 // purpose  :
494 //=================================================================================
495 void SMESHGUI_AddMeshElementDlg::Init()
496 {
497   GroupC1->show();
498   Constructor1->setChecked(true);
499   myEditCurrentArgument = LineEditC1A1;
500   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
501
502   /* reset "Add to group" control */
503   GroupGroups->setChecked( false );
504   //GroupGroups->setVisible( myElementType != SMDSAbs_0DElement );
505
506   myNbOkNodes = 0;
507   myActor = 0;
508
509   /* signals and slots connections */
510   connect(buttonOk,        SIGNAL(clicked()),                     SLOT(ClickOnOk()));
511   connect(buttonCancel,    SIGNAL(clicked()),                     SLOT(reject()));
512   connect(buttonApply,     SIGNAL(clicked()),                     SLOT(ClickOnApply()));
513   connect(buttonHelp,      SIGNAL(clicked()),                     SLOT(ClickOnHelp()));
514
515   connect(SelectButtonC1A1,SIGNAL(clicked()),                     SLOT(SetEditCurrentArgument()));
516   connect(LineEditC1A1,    SIGNAL(textChanged(const QString&)),   SLOT(onTextChange(const QString&)));
517   connect(mySMESHGUI,      SIGNAL(SignalDeactivateActiveDialog()),SLOT(DeactivateActiveDialog()));
518   connect(mySelectionMgr,  SIGNAL(currentSelectionChanged()),     SLOT(SelectionIntoArgument()));
519   /* to close dialog if study frame change */
520   connect(mySMESHGUI,      SIGNAL(SignalStudyFrameChanged()),     SLOT(reject()));
521   connect(mySMESHGUI,      SIGNAL(SignalCloseAllDialogs()),       SLOT(reject()));    
522
523   if (Reverse)
524     connect(Reverse,       SIGNAL(stateChanged(int)),             SLOT(CheckBox(int)));
525
526   // set selection mode
527   SMESH::SetPointRepresentation(true);
528
529   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
530     aViewWindow->SetSelectionMode( NodeSelection );
531
532   myBusy = false;
533
534   SelectionIntoArgument();
535 }
536
537 //=================================================================================
538 // function : ClickOnApply()
539 // purpose  :
540 //=================================================================================
541 void SMESHGUI_AddMeshElementDlg::ClickOnApply()
542 {
543   if( !isValid() )
544     return;
545
546   if (myNbOkNodes && !mySMESHGUI->isActiveStudyLocked()) {
547     myBusy = true;
548     QStringList aListId = myEditCurrentArgument->text().split(" ", QString::SkipEmptyParts);
549     SMESH::long_array_var anArrayOfIndices = new SMESH::long_array;
550     anArrayOfIndices->length(aListId.count());
551     const std::vector<int>& revIndex = SMDS_MeshCell::reverseSmdsOrder( myGeomType );
552     if ( Reverse && Reverse->isChecked() && !revIndex.empty() )
553       for (int i = 0; i < aListId.count(); i++)
554         anArrayOfIndices[i] = aListId[ revIndex[i] ].toInt();
555     else if ( Reverse && Reverse->isChecked() && revIndex.empty() ) // polygon
556       for (int i = 0; i < aListId.count(); i++)
557         anArrayOfIndices[i] = aListId[ aListId.count()-1 - i ].toInt();
558     else
559       for (int i = 0; i < aListId.count(); i++)
560         anArrayOfIndices[i] = aListId[ i ].toInt();
561
562     bool addToGroup = GroupGroups->isChecked();
563     QString aGroupName;
564
565     SMESH::SMESH_GroupBase_var aGroup;
566     int idx = 0;
567     if( addToGroup ) {
568       aGroupName = ComboBox_GroupName->currentText();
569       for ( int i = 1; i <= ComboBox_GroupName->count(); i++ ) {
570         QString aName = ComboBox_GroupName->itemText( i );
571         if ( aGroupName == aName && ( i == ComboBox_GroupName->currentIndex() || idx == 0 ) )
572           idx = i;
573       }
574       if ( idx > 0 && idx <= myGroups.count() ) {
575         SMESH::SMESH_GroupOnGeom_var aGeomGroup = SMESH::SMESH_GroupOnGeom::_narrow( myGroups[idx-1] );
576         if ( !aGeomGroup->_is_nil() ) {
577           int res = SUIT_MessageBox::question( this, tr( "SMESH_WRN_WARNING" ),
578                                                tr( "MESH_STANDALONE_GRP_CHOSEN" ).arg( aGroupName ),
579                                                tr( "SMESH_BUT_YES" ), tr( "SMESH_BUT_NO" ), 0, 1 );
580           if ( res == 1 ) return;
581         }
582         aGroup = myGroups[idx-1];
583       }
584     }
585
586     SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
587     SMESH::long_array_var anIdList = new SMESH::long_array;
588     anIdList->length( 1 );
589     anIdList[0] = -1;
590     const bool onlyNodesInMesh = ( myMesh->NbElements() == 0 );
591
592     switch (myElementType) {
593     case SMDSAbs_0DElement:
594       anIdList->length( anArrayOfIndices->length() );
595       for ( size_t i = 0; i < anArrayOfIndices->length(); ++i )
596         anIdList[i] = aMeshEditor->Add0DElement(anArrayOfIndices[i]);
597       break;
598     case SMDSAbs_Ball:
599       if ( myGeomType == SMDSEntity_Ball ) {
600         anIdList->length( anArrayOfIndices->length() );
601         for ( size_t i = 0; i < anArrayOfIndices->length(); ++i )
602           anIdList[i] = aMeshEditor->AddBall(anArrayOfIndices[i],
603                                              DiameterSpinBox->GetValue());
604       }
605       break;
606     case SMDSAbs_Edge:
607       anIdList[0] = aMeshEditor->AddEdge(anArrayOfIndices.inout()); break;
608     case SMDSAbs_Face:
609       if ( myIsPoly )
610         anIdList[0] = aMeshEditor->AddPolygonalFace(anArrayOfIndices.inout());
611       else
612         anIdList[0] = aMeshEditor->AddFace(anArrayOfIndices.inout());
613       break;
614     default:
615       anIdList[0] = aMeshEditor->AddVolume(anArrayOfIndices.inout()); break;
616     }
617
618     if ( anIdList[0] > 0 && addToGroup && !aGroupName.isEmpty() ) {
619       SMESH::SMESH_Group_var aGroupUsed;
620       if ( aGroup->_is_nil() ) {
621         // create new group 
622         aGroupUsed = SMESH::AddGroup( myMesh, (SMESH::ElementType)myElementType, aGroupName );
623         if ( !aGroupUsed->_is_nil() ) {
624           myGroups.append(SMESH::SMESH_GroupBase::_duplicate(aGroupUsed));
625           ComboBox_GroupName->addItem( aGroupName );
626         }
627       }
628       else {
629         SMESH::SMESH_GroupOnGeom_var aGeomGroup = SMESH::SMESH_GroupOnGeom::_narrow( aGroup );
630         if ( !aGeomGroup->_is_nil() ) {
631           aGroupUsed = myMesh->ConvertToStandalone( aGeomGroup );
632           if ( !aGroupUsed->_is_nil() && idx > 0 ) {
633             myGroups[idx-1] = SMESH::SMESH_GroupBase::_duplicate(aGroupUsed);
634             SMESHGUI::GetSMESHGUI()->getApp()->updateObjectBrowser();
635           }
636         }
637         else
638           aGroupUsed = SMESH::SMESH_Group::_narrow( aGroup );
639       }
640
641       if ( !aGroupUsed->_is_nil() )
642         aGroupUsed->Add( anIdList.inout() );
643     }
644
645     SALOME_ListIO aList; aList.Append( myActor->getIO() );
646     mySelector->ClearIndex();
647     mySelectionMgr->setSelectedObjects( aList, false );
648
649     mySimulation->SetVisibility(false);
650     if ( onlyNodesInMesh )
651       myActor->SetRepresentation( SMESH_Actor::eEdge ); // wireframe
652     SMESH::UpdateView();
653
654     buttonOk->setEnabled(false);
655     buttonApply->setEnabled(false);
656
657     myEditCurrentArgument->setText("");
658
659     myBusy = false;
660
661     SMESHGUI::Modified();
662   }
663 }
664
665 //=================================================================================
666 // function : ClickOnOk()
667 // purpose  :
668 //=================================================================================
669 void SMESHGUI_AddMeshElementDlg::ClickOnOk()
670 {
671   ClickOnApply();
672   reject();
673 }
674
675 //=================================================================================
676 // function : reject()
677 // purpose  :
678 //=================================================================================
679 void SMESHGUI_AddMeshElementDlg::reject()
680 {
681   mySimulation->SetVisibility(false);
682   SMESH::SetPointRepresentation(false);
683   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
684     aViewWindow->SetSelectionMode( ActorSelection );
685   disconnect(mySelectionMgr, 0, this, 0);
686   mySMESHGUI->ResetState();
687   QDialog::reject();
688 }
689
690 //=================================================================================
691 // function : ClickOnHelp()
692 // purpose  :
693 //=================================================================================
694 void SMESHGUI_AddMeshElementDlg::ClickOnHelp()
695 {
696   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
697   if (app)
698     app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""),
699                              myHelpFileName);
700   else {
701     QString platform;
702 #ifdef WIN32
703     platform = "winapplication";
704 #else
705     platform = "application";
706 #endif
707     SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
708                              tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
709                              arg(app->resourceMgr()->stringValue("ExternalBrowser",
710                                                                  platform)).
711                              arg(myHelpFileName));
712   }
713 }
714
715 //=================================================================================
716 // function : onTextChange()
717 // purpose  :
718 //=================================================================================
719 void SMESHGUI_AddMeshElementDlg::onTextChange (const QString& theNewText)
720 {
721   if (myBusy) return;
722   myBusy = true;
723
724   myNbOkNodes = 0;
725
726   buttonOk->setEnabled(false);
727   buttonApply->setEnabled(false);
728
729   mySimulation->SetVisibility(false);
730
731   // hilight entered nodes
732   SMDS_Mesh* aMesh = 0;
733   if (myActor)
734     aMesh = myActor->GetObject()->GetMesh();
735
736   if (aMesh) {
737     TColStd_MapOfInteger newIndices;
738
739     QStringList aListId = theNewText.split(" ", QString::SkipEmptyParts);
740     bool allOk = true;
741     for (int i = 0; i < aListId.count(); i++) {
742       if( const SMDS_MeshNode * n = aMesh->FindNode( aListId[ i ].toInt() ) )
743         {
744           newIndices.Add( n->GetID() );
745           myNbOkNodes++;
746         }
747       else
748         allOk = false;  
749     }
750
751     mySelector->AddOrRemoveIndex( myActor->getIO(), newIndices, false );
752     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
753       aViewWindow->highlight( myActor->getIO(), true, true );
754
755     myNbOkNodes = ( allOk && ( myNbNodes == aListId.count() || myNbNodes == 1 ));
756
757     if (myIsPoly)
758       {
759         if ( !allOk || myElementType != SMDSAbs_Face || aListId.count() < 3 )
760           myNbOkNodes = 0;
761         else
762           myNbOkNodes = aListId.count();
763       }
764   }
765
766   if(myNbOkNodes) {
767     buttonOk->setEnabled(true);
768     buttonApply->setEnabled(true);
769     displaySimulation();
770   }
771
772   myBusy = false;
773 }
774
775 //=================================================================================
776 // function : SelectionIntoArgument()
777 // purpose  : Called when selection has changed
778 //=================================================================================
779 void SMESHGUI_AddMeshElementDlg::SelectionIntoArgument()
780 {
781   if (myBusy) return;
782
783   // clear
784   myNbOkNodes = 0;
785   myActor = 0;
786
787   myBusy = true;
788   myEditCurrentArgument->setText("");
789   myBusy = false;
790
791   if (!GroupButtons->isEnabled()) // inactive
792     return;
793
794   buttonOk->setEnabled(false);
795   buttonApply->setEnabled(false);
796
797   mySimulation->SetVisibility(false);
798   //  SMESH::SetPointRepresentation(true);
799
800   QString aCurrentEntry = myEntry;
801
802   // get selected mesh
803   SALOME_ListIO aList;
804   mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
805
806   if (aList.Extent() != 1)
807     return;
808
809   Handle(SALOME_InteractiveObject) anIO = aList.First();
810   myEntry = anIO->getEntry();
811   myMesh = SMESH::GetMeshByIO(anIO);
812   if (myMesh->_is_nil())
813     return;
814
815   // process groups
816   if ( !myMesh->_is_nil() && myEntry != aCurrentEntry ) {
817     myGroups.clear();
818     ComboBox_GroupName->clear();
819     ComboBox_GroupName->addItem( QString() );
820     SMESH::ListOfGroups aListOfGroups = *myMesh->GetGroups();
821     for ( int i = 0, n = aListOfGroups.length(); i < n; i++ ) {
822       SMESH::SMESH_GroupBase_var aGroup = aListOfGroups[i];
823       if ( !aGroup->_is_nil() && aGroup->GetType() == (SMESH::ElementType)myElementType ) {
824         QString aGroupName( aGroup->GetName() );
825         if ( !aGroupName.isEmpty() ) {
826           myGroups.append(SMESH::SMESH_GroupBase::_duplicate(aGroup));
827           ComboBox_GroupName->addItem( aGroupName );
828         }
829       }
830     }
831   }
832
833   myActor = SMESH::FindActorByEntry(anIO->getEntry());
834   if (!myActor)
835     return;
836
837   // get selected nodes
838   QString aString = "";
839   int nbNodes = SMESH::GetNameOfSelectedNodes(mySelector,myActor->getIO(),aString);
840   myBusy = true;
841   myEditCurrentArgument->setText(aString);
842   myBusy = false;
843   if (myIsPoly && myElementType == SMDSAbs_Face && nbNodes >= 3 ) {
844     myNbNodes = nbNodes;
845   } else if (myNbNodes != nbNodes && myNbNodes != 1) {
846     return;
847   }
848
849   // OK
850   myNbOkNodes = nbNodes;
851
852   buttonOk->setEnabled(true);
853   buttonApply->setEnabled(true);
854
855   displaySimulation();
856 }
857
858 //=================================================================================
859 // function : displaySimulation()
860 // purpose  :
861 //=================================================================================
862 void SMESHGUI_AddMeshElementDlg::displaySimulation()
863 {
864   if (myNbOkNodes && GroupButtons->isEnabled()) {
865     SMESH::TElementSimulation::TVTKIds anIds;
866     QStringList aListId = myEditCurrentArgument->text().split(" ", QString::SkipEmptyParts);
867     for (int i = 0; i < aListId.count(); i++)
868       anIds.push_back(myActor->GetObject()->GetNodeVTKId(aListId[ i ].toInt()));
869
870     if (Reverse && Reverse->isChecked())
871     {
872       const std::vector<int>& i = SMDS_MeshCell::reverseSmdsOrder( myGeomType );
873       if ( i.empty() ) // polygon
874         std::reverse( anIds.begin(), anIds.end() );
875       else
876         SMDS_MeshCell::applyInterlace( i, anIds );
877     }
878
879     vtkIdType aType = SMDS_MeshCell::toVtkType( myGeomType );
880     if(aType == VTK_POLY_VERTEX) {
881       mySimulation->SetBallPosition(myActor,anIds,DiameterSpinBox->GetValue());
882     } else {
883       mySimulation->SetPosition(myActor,aType,anIds);
884     }
885     SMESH::UpdateView();
886   }
887 }
888
889 //=================================================================================
890 // function : SetEditCurrentArgument()
891 // purpose  :
892 //=================================================================================
893 void SMESHGUI_AddMeshElementDlg::SetEditCurrentArgument()
894 {
895   QPushButton* send = (QPushButton*)sender();
896   if (send == SelectButtonC1A1) {
897     LineEditC1A1->setFocus();
898     myEditCurrentArgument = LineEditC1A1;
899   }
900   SelectionIntoArgument();
901 }
902
903 //=================================================================================
904 // function : DeactivateActiveDialog()
905 // purpose  :
906 //=================================================================================
907 void SMESHGUI_AddMeshElementDlg::DeactivateActiveDialog()
908 {
909   if (GroupConstructors->isEnabled()) {
910     GroupConstructors->setEnabled(false);
911     GroupC1->setEnabled(false);
912     GroupButtons->setEnabled(false);
913     mySimulation->SetVisibility(false);
914     mySMESHGUI->ResetState();
915     mySMESHGUI->SetActiveDialogBox(0);
916   }
917 }
918
919 //=================================================================================
920 // function : ActivateThisDialog()
921 // purpose  :
922 //=================================================================================
923 void SMESHGUI_AddMeshElementDlg::ActivateThisDialog()
924 {
925   /* Emit a signal to deactivate the active dialog */
926   mySMESHGUI->EmitSignalDeactivateDialog();
927
928   GroupConstructors->setEnabled(true);
929   GroupC1->setEnabled(true);
930   GroupButtons->setEnabled(true);
931
932   SMESH::SetPointRepresentation(true);
933
934   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
935     aViewWindow->SetSelectionMode( NodeSelection );
936   SelectionIntoArgument();
937 }
938
939 //=================================================================================
940 // function : enterEvent()
941 // purpose  :
942 //=================================================================================
943 void SMESHGUI_AddMeshElementDlg::enterEvent (QEvent*)
944 {
945   if (GroupConstructors->isEnabled())
946     return;
947   ActivateThisDialog();
948 }
949
950 //=================================================================================
951 // function : CheckBox()
952 // purpose  :
953 //=================================================================================
954 void SMESHGUI_AddMeshElementDlg::CheckBox (int state)
955 {
956   if (!myNbOkNodes)
957     return;
958
959   if (state >= 0) {
960     mySimulation->SetVisibility(false);
961     displaySimulation();
962   }
963 }
964
965 //=================================================================================
966 // function : keyPressEvent()
967 // purpose  :
968 //=================================================================================
969 void SMESHGUI_AddMeshElementDlg::keyPressEvent( QKeyEvent* e )
970 {
971   QDialog::keyPressEvent( e );
972   if ( e->isAccepted() )
973     return;
974
975   if ( e->key() == Qt::Key_F1 ) {
976     e->accept();
977     ClickOnHelp();
978   }
979 }
980
981 //=================================================================================
982 // function : isValid
983 // purpose  :
984 //=================================================================================
985 void SMESHGUI_AddMeshElementDlg::onDiameterChanged(){
986   displaySimulation();
987 }
988
989 //=================================================================================
990 // function : isValid
991 // purpose  :
992 //=================================================================================
993 bool SMESHGUI_AddMeshElementDlg::isValid()
994 {
995   if( GroupGroups->isChecked() && ComboBox_GroupName->currentText().isEmpty() ) {
996     SUIT_MessageBox::warning( this, tr( "SMESH_WRN_WARNING" ), tr( "GROUP_NAME_IS_EMPTY" ) );
997     return false;
998   }
999   return true;
1000 }