Salome HOME
PAL13460 (force the mesh to go through a point)
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_RotationDlg.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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : SMESHGUI_RotationDlg.cxx
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header:
28
29 #include "SMESHGUI_RotationDlg.h"
30
31 #include "SMESHGUI.h"
32 #include "SMESHGUI_SpinBox.h"
33 #include "SMESHGUI_Utils.h"
34 #include "SMESHGUI_VTKUtils.h"
35 #include "SMESHGUI_MeshUtils.h"
36 #include "SMESHGUI_IdValidator.h"
37
38 #include "SMESH_Actor.h"
39 #include "SMESH_TypeFilter.hxx"
40 #include "SMESH_LogicalFilter.hxx"
41 #include "SMDS_Mesh.hxx"
42
43 #include "SUIT_Desktop.h"
44 #include "SUIT_Session.h"
45 #include "SUIT_MessageBox.h"
46
47 #include "LightApp_Application.h"
48
49 #include "SVTK_ViewModel.h"
50 #include "SVTK_ViewWindow.h"
51 #include "SVTK_Selector.h"
52 #include "SVTK_Selection.h"
53 #include "SALOME_ListIO.hxx"
54
55 #include "utilities.h"
56
57 // OCCT Includes
58 #include <TColStd_MapOfInteger.hxx>
59 #include <TColStd_IndexedMapOfInteger.hxx>
60
61 // QT Includes
62 #include <qapplication.h>
63 #include <qbuttongroup.h>
64 #include <qgroupbox.h>
65 #include <qlabel.h>
66 #include <qlineedit.h>
67 #include <qpushbutton.h>
68 #include <qradiobutton.h>
69 #include <qcheckbox.h>
70 #include <qlayout.h>
71 #include <qpixmap.h>
72
73 // IDL Headers
74 #include "SALOMEconfig.h"
75 #include CORBA_SERVER_HEADER(SMESH_Group)
76 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
77
78 using namespace std;
79
80 //=================================================================================
81 // class    : SMESHGUI_RotationDlg()
82 // purpose  :
83 //=================================================================================
84 SMESHGUI_RotationDlg::SMESHGUI_RotationDlg( SMESHGUI* theModule, const char* name,
85                                             bool modal, WFlags fl)
86      : QDialog( SMESH::GetDesktop( theModule ), name, modal, WStyle_Customize | WStyle_NormalBorder |
87                WStyle_Title | WStyle_SysMenu | Qt::WDestructiveClose),
88      mySMESHGUI( theModule ),
89      mySelectionMgr( SMESH::GetSelectionMgr( theModule ) )
90 {
91   QPixmap image0 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_DLG_MESH_ROTATION")));
92   QPixmap image1 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SELECT")));
93
94   if (!name)
95     setName("SMESHGUI_RotationDlg");
96   resize(303, 185);
97   setCaption(tr("SMESH_ROTATION_TITLE"));
98   setSizeGripEnabled(TRUE);
99   SMESHGUI_RotationDlgLayout = new QGridLayout(this);
100   SMESHGUI_RotationDlgLayout->setSpacing(6);
101   SMESHGUI_RotationDlgLayout->setMargin(11);
102
103   /***************************************************************/
104   GroupConstructors = new QButtonGroup(this, "GroupConstructors");
105   GroupConstructors->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)5,
106                                                (QSizePolicy::SizeType)0, 0, 0,
107                                                GroupConstructors->sizePolicy().hasHeightForWidth()));
108   GroupConstructors->setTitle(tr("SMESH_ROTATION"));
109   GroupConstructors->setExclusive(TRUE);
110   GroupConstructors->setColumnLayout(0, Qt::Vertical);
111   GroupConstructors->layout()->setSpacing(0);
112   GroupConstructors->layout()->setMargin(0);
113   GroupConstructorsLayout = new QGridLayout(GroupConstructors->layout());
114   GroupConstructorsLayout->setAlignment(Qt::AlignTop);
115   GroupConstructorsLayout->setSpacing(6);
116   GroupConstructorsLayout->setMargin(11);
117   RadioButton1= new QRadioButton(GroupConstructors, "RadioButton1");
118   RadioButton1->setText(tr("" ));
119   RadioButton1->setPixmap(image0);
120   RadioButton1->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)1,
121                                           (QSizePolicy::SizeType)0,
122                                           RadioButton1->sizePolicy().hasHeightForWidth()));
123   RadioButton1->setMinimumSize(QSize(50, 0));
124   GroupConstructorsLayout->addWidget(RadioButton1, 0, 0);
125   QSpacerItem* spacer = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
126   GroupConstructorsLayout->addItem(spacer, 0, 1);
127   SMESHGUI_RotationDlgLayout->addWidget(GroupConstructors, 0, 0);
128
129   /***************************************************************/
130   GroupButtons = new QGroupBox(this, "GroupButtons");
131   GroupButtons->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)7,
132                                           (QSizePolicy::SizeType)0, 0, 0,
133                                           GroupButtons->sizePolicy().hasHeightForWidth()));
134   GroupButtons->setGeometry(QRect(10, 10, 281, 48));
135   GroupButtons->setTitle(tr("" ));
136   GroupButtons->setColumnLayout(0, Qt::Vertical);
137   GroupButtons->layout()->setSpacing(0);
138   GroupButtons->layout()->setMargin(0);
139   GroupButtonsLayout = new QGridLayout(GroupButtons->layout());
140   GroupButtonsLayout->setAlignment(Qt::AlignTop);
141   GroupButtonsLayout->setSpacing(6);
142   GroupButtonsLayout->setMargin(11);
143   buttonHelp = new QPushButton(GroupButtons, "buttonHelp");
144   buttonHelp->setText(tr("SMESH_BUT_HELP" ));
145   buttonHelp->setAutoDefault(TRUE);
146   GroupButtonsLayout->addWidget(buttonHelp, 0, 4);
147   buttonCancel = new QPushButton(GroupButtons, "buttonCancel");
148   buttonCancel->setText(tr("SMESH_BUT_CLOSE"));
149   buttonCancel->setAutoDefault(TRUE);
150   GroupButtonsLayout->addWidget(buttonCancel, 0, 3);
151   buttonApply = new QPushButton(GroupButtons, "buttonApply");
152   buttonApply->setText(tr("SMESH_BUT_APPLY"));
153   buttonApply->setAutoDefault(TRUE);
154   GroupButtonsLayout->addWidget(buttonApply, 0, 1);
155   QSpacerItem* spacer_9 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
156   GroupButtonsLayout->addItem(spacer_9, 0, 2);
157   buttonOk = new QPushButton(GroupButtons, "buttonOk");
158   buttonOk->setText(tr("SMESH_BUT_OK"));
159   buttonOk->setAutoDefault(TRUE);
160   buttonOk->setDefault(TRUE);
161   GroupButtonsLayout->addWidget(buttonOk, 0, 0);
162   SMESHGUI_RotationDlgLayout->addWidget(GroupButtons, 2, 0);
163
164   /***************************************************************/
165   GroupArguments = new QGroupBox(this, "GroupArguments");
166   GroupArguments->setTitle(tr("SMESH_ARGUMENTS"));
167   GroupArguments->setColumnLayout(0, Qt::Vertical);
168   GroupArguments->layout()->setSpacing(0);
169   GroupArguments->layout()->setMargin(0);
170   GroupArgumentsLayout = new QGridLayout(GroupArguments->layout());
171   GroupArgumentsLayout->setAlignment(Qt::AlignTop);
172   GroupArgumentsLayout->setSpacing(6);
173   GroupArgumentsLayout->setMargin(11);
174
175   // Controls for elements selection
176   TextLabelElements  = new QLabel(GroupArguments, "TextLabelElements");
177   TextLabelElements->setText(tr("SMESH_ID_ELEMENTS" ));
178   TextLabelElements->setFixedWidth(74);
179   GroupArgumentsLayout->addWidget(TextLabelElements, 0, 0);
180
181   SelectElementsButton  = new QPushButton(GroupArguments, "SelectElementsButton");
182   SelectElementsButton->setText(tr("" ));
183   SelectElementsButton->setPixmap(image1);
184   SelectElementsButton->setToggleButton(FALSE);
185   GroupArgumentsLayout->addWidget(SelectElementsButton, 0, 1);
186
187   LineEditElements  = new QLineEdit(GroupArguments, "LineEditElements");
188   LineEditElements->setValidator(new SMESHGUI_IdValidator(this, "validator"));
189   GroupArgumentsLayout->addWidget(LineEditElements, 0, 2);
190
191   // Control for the whole mesh selection
192   CheckBoxMesh = new QCheckBox(GroupArguments, "CheckBoxMesh");
193   CheckBoxMesh->setText(tr("SMESH_SELECT_WHOLE_MESH" ));
194   GroupArgumentsLayout->addMultiCellWidget(CheckBoxMesh, 1, 1, 0, 2);
195
196   // Controls for axis defining
197   GroupAxis = new QGroupBox(GroupArguments, "GroupAxis");
198   GroupAxis->setTitle(tr("SMESH_AXIS"));
199   GroupAxis->setColumnLayout(0, Qt::Vertical);
200   GroupAxis->layout()->setSpacing(0);
201   GroupAxis->layout()->setMargin(0);
202   QGridLayout* GroupAxisLayout = new QGridLayout(GroupAxis->layout());
203   GroupAxisLayout->setAlignment(Qt::AlignTop);
204   GroupAxisLayout->setSpacing(6);
205   GroupAxisLayout->setMargin(11);
206
207   TextLabelPoint = new QLabel(GroupAxis, "TextLabelPoint");
208   TextLabelPoint->setText(tr("SMESH_POINT"));
209   GroupAxisLayout->addWidget(TextLabelPoint, 0, 0);
210
211   SelectPointButton  = new QPushButton(GroupAxis, "SelectPointButton");
212   SelectPointButton->setPixmap(image1);
213   GroupAxisLayout->addWidget(SelectPointButton, 0, 1);
214
215   TextLabelX = new QLabel(GroupAxis, "TextLabelX");
216   TextLabelX->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
217   TextLabelX->setText(tr("SMESH_X"));
218   GroupAxisLayout->addWidget(TextLabelX, 0, 2);
219
220   SpinBox_X = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_X");
221   GroupAxisLayout->addWidget(SpinBox_X, 0, 3);
222
223   TextLabelY = new QLabel(GroupAxis, "TextLabelY");
224   TextLabelY->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
225   TextLabelY->setText(tr("SMESH_Y"));
226   GroupAxisLayout->addWidget(TextLabelY, 0, 4);
227
228   SpinBox_Y = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_Y");
229   GroupAxisLayout->addWidget(SpinBox_Y, 0, 5);
230
231   TextLabelZ = new QLabel(GroupAxis, "TextLabelZ");
232   TextLabelZ->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
233   TextLabelZ->setText(tr("SMESH_Z"));
234   GroupAxisLayout->addWidget(TextLabelZ, 0, 6);
235
236   SpinBox_Z = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_Z");
237   GroupAxisLayout->addWidget(SpinBox_Z, 0, 7);
238
239   TextLabelVector = new QLabel(GroupAxis, "TextLabelVector");
240   TextLabelVector->setText(tr("SMESH_VECTOR"));
241   GroupAxisLayout->addWidget(TextLabelVector, 1, 0);
242
243   SelectVectorButton = new QPushButton(GroupAxis, "SelectVectorButton");
244   SelectVectorButton->setPixmap(image1);
245   GroupAxisLayout->addWidget(SelectVectorButton, 1, 1);
246
247   TextLabelDX = new QLabel(GroupAxis, "TextLabelDX");
248   TextLabelDX->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
249   TextLabelDX->setText(tr("SMESH_DX"));
250   GroupAxisLayout->addWidget(TextLabelDX, 1, 2);
251
252   SpinBox_DX = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_DX");
253   GroupAxisLayout->addWidget(SpinBox_DX, 1, 3);
254
255   TextLabelDY = new QLabel(GroupAxis, "TextLabelDY");
256   TextLabelDY->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
257   TextLabelDY->setText(tr("SMESH_DY"));
258   GroupAxisLayout->addWidget(TextLabelDY, 1, 4);
259
260   SpinBox_DY = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_DY");
261   GroupAxisLayout->addWidget(SpinBox_DY, 1, 5);
262
263   TextLabelDZ = new QLabel(GroupAxis, "TextLabelDZ");
264   TextLabelDZ->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
265   TextLabelDZ->setText(tr("SMESH_DZ"));
266   GroupAxisLayout->addWidget(TextLabelDZ, 1, 6);
267
268   SpinBox_DZ = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_DZ");
269   GroupAxisLayout->addWidget(SpinBox_DZ, 1, 7);
270
271   GroupArgumentsLayout->addMultiCellWidget(GroupAxis, 2, 2, 0, 2);
272
273   // Controls for angle defining
274   TextLabelAngle = new QLabel(GroupArguments, "TextLabelAngle");
275   TextLabelAngle->setText(tr("SMESH_ANGLE"));
276   GroupArgumentsLayout->addMultiCellWidget(TextLabelAngle, 3, 3, 0, 1);
277
278   SpinBox_Angle = new SMESHGUI_SpinBox(GroupArguments, "SpinBox_Angle");
279   GroupArgumentsLayout->addWidget(SpinBox_Angle, 3, 2);
280
281   // Controls for "Create a copy" option
282   CheckBoxCopy = new QCheckBox(GroupArguments, "CheckBoxCopy");
283   CheckBoxCopy->setText(tr("SMESH_CREATE_COPY"));
284   GroupArgumentsLayout->addMultiCellWidget(CheckBoxCopy, 4, 4, 0, 2);
285
286   SMESHGUI_RotationDlgLayout->addWidget(GroupArguments, 1, 0);
287
288   /* Initialisations */
289   SpinBox_X->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
290   SpinBox_Y->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
291   SpinBox_Z->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
292   SpinBox_DX->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
293   SpinBox_DY->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
294   SpinBox_DZ->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
295
296   SpinBox_Angle->RangeStepAndValidator(-360.0, +360.0, 5.0, 3);
297
298   GroupArguments->show();
299   myConstructorId = 0;
300   RadioButton1->setChecked(TRUE);
301
302   mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
303
304   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
305
306   // Costruction of the logical filter
307   SMESH_TypeFilter* aMeshOrSubMeshFilter = new SMESH_TypeFilter (MESHorSUBMESH);
308   SMESH_TypeFilter* aSmeshGroupFilter    = new SMESH_TypeFilter (GROUP);
309
310   QPtrList<SUIT_SelectionFilter> aListOfFilters;
311   if (aMeshOrSubMeshFilter) aListOfFilters.append(aMeshOrSubMeshFilter);
312   if (aSmeshGroupFilter)    aListOfFilters.append(aSmeshGroupFilter);
313
314   myMeshOrSubMeshOrGroupFilter =
315     new SMESH_LogicalFilter (aListOfFilters, SMESH_LogicalFilter::LO_OR);
316
317   myHelpFileName = "/files/rotation.htm";
318
319   Init();
320
321   /* signals and slots connections */
322   connect(buttonOk, SIGNAL(clicked()),     this, SLOT(ClickOnOk()));
323   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
324   connect(buttonApply, SIGNAL(clicked()),  this, SLOT(ClickOnApply()));
325   connect(buttonHelp, SIGNAL(clicked()), this, SLOT(ClickOnHelp()));
326   connect(GroupConstructors, SIGNAL(clicked(int)), SLOT(ConstructorsClicked(int)));
327
328   connect(SelectElementsButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
329   connect(SelectPointButton, SIGNAL (clicked()),    this, SLOT(SetEditCurrentArgument()));
330   connect(SelectVectorButton, SIGNAL (clicked()),   this, SLOT(SetEditCurrentArgument()));
331
332   connect(SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
333   connect(SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
334   connect(SpinBox_DZ, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
335
336   connect(mySMESHGUI, SIGNAL (SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
337   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()),   this, SLOT(SelectionIntoArgument()));
338   /* to close dialog if study change */
339   connect(mySMESHGUI,       SIGNAL (SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
340   connect(LineEditElements, SIGNAL(textChanged(const QString&)),    SLOT(onTextChange(const QString&)));
341   connect(CheckBoxMesh,     SIGNAL(toggled(bool)),                  SLOT(onSelectMesh(bool)));
342
343   this->show(); /* displays Dialog */
344
345   ConstructorsClicked(0);
346   resize(0,0); // ??
347 }
348
349 //=================================================================================
350 // function : ~SMESHGUI_RotationDlg()
351 // purpose  : Destroys the object and frees any allocated resources
352 //=================================================================================
353 SMESHGUI_RotationDlg::~SMESHGUI_RotationDlg()
354 {
355   // no need to delete child widgets, Qt does it all for us
356 }
357
358 //=================================================================================
359 // function : Init()
360 // purpose  :
361 //=================================================================================
362 void SMESHGUI_RotationDlg::Init (bool ResetControls)
363 {
364   myBusy = false;
365
366   myEditCurrentArgument = (QWidget*)LineEditElements;
367   LineEditElements->setFocus();
368   myElementsId = "";
369   myNbOkElements = 0;
370
371   buttonOk->setEnabled(false);
372   buttonApply->setEnabled(false);
373
374   myActor = 0;
375   myMesh = SMESH::SMESH_Mesh::_nil();
376
377   if (ResetControls) {
378     SpinBox_X->SetValue(0.0);
379     SpinBox_Y->SetValue(0.0);
380     SpinBox_Z->SetValue(0.0);
381     SpinBox_DX->SetValue(0.0);
382     SpinBox_DY->SetValue(0.0);
383     SpinBox_DZ->SetValue(0.0);
384
385     SpinBox_Angle->SetValue(45);
386
387     CheckBoxCopy->setChecked(false);
388     CheckBoxMesh->setChecked(false);
389   }
390
391   onSelectMesh(CheckBoxMesh->isChecked());
392 }
393
394 //=================================================================================
395 // function : ConstructorsClicked()
396 // purpose  : Radio button management
397 //=================================================================================
398 void SMESHGUI_RotationDlg::ConstructorsClicked (int constructorId)
399 {
400 }
401
402 //=================================================================================
403 // function : ClickOnApply()
404 // purpose  :
405 //=================================================================================
406 void SMESHGUI_RotationDlg::ClickOnApply()
407 {
408   if (mySMESHGUI->isActiveStudyLocked())
409     return;
410
411   if (myNbOkElements && IsAxisOk()) {
412     QStringList aListElementsId = QStringList::split(" ", myElementsId, false);
413
414     SMESH::long_array_var anElementsId = new SMESH::long_array;
415
416     anElementsId->length(aListElementsId.count());
417     for (int i = 0; i < aListElementsId.count(); i++)
418       anElementsId[i] = aListElementsId[i].toInt();
419
420     SMESH::AxisStruct anAxis;
421
422     anAxis.x =  SpinBox_X->GetValue();
423     anAxis.y =  SpinBox_Y->GetValue();
424     anAxis.z =  SpinBox_Z->GetValue();;
425     anAxis.vx = SpinBox_DX->GetValue();
426     anAxis.vy = SpinBox_DY->GetValue();
427     anAxis.vz = SpinBox_DZ->GetValue();
428
429     double anAngle = (SpinBox_Angle->GetValue())*PI/180;
430     bool toCreateCopy = CheckBoxCopy->isChecked();
431
432     try {
433       SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
434       QApplication::setOverrideCursor(Qt::waitCursor);
435       aMeshEditor->Rotate(anElementsId.inout(), anAxis, anAngle, toCreateCopy);
436       QApplication::restoreOverrideCursor();
437     } catch (...) {
438     }
439
440     SMESH::UpdateView();
441     Init(false);
442     SelectionIntoArgument();
443   }
444 }
445
446 //=================================================================================
447 // function : ClickOnOk()
448 // purpose  :
449 //=================================================================================
450 void SMESHGUI_RotationDlg::ClickOnOk()
451 {
452   ClickOnApply();
453   ClickOnCancel();
454 }
455
456 //=================================================================================
457 // function : ClickOnCancel()
458 // purpose  :
459 //=================================================================================
460 void SMESHGUI_RotationDlg::ClickOnCancel()
461 {
462   disconnect(mySelectionMgr, 0, this, 0);
463   mySelectionMgr->clearFilters();
464   //mySelectionMgr->clearSelected();
465   SMESH::SetPointRepresentation(false);
466   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
467     aViewWindow->SetSelectionMode(ActorSelection);
468   mySMESHGUI->ResetState();
469   reject();
470 }
471
472 //=================================================================================
473 // function : ClickOnHelp()
474 // purpose  :
475 //=================================================================================
476 void SMESHGUI_RotationDlg::ClickOnHelp()
477 {
478   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
479   if (app) 
480     app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
481   else {
482     SUIT_MessageBox::warn1(0, QObject::tr("WRN_WARNING"),
483                            QObject::tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
484                            arg(app->resourceMgr()->stringValue("ExternalBrowser", "application")).arg(myHelpFileName),
485                            QObject::tr("BUT_OK"));
486   }
487 }
488
489 //=======================================================================
490 // function : onTextChange()
491 // purpose  :
492 //=======================================================================
493 void SMESHGUI_RotationDlg::onTextChange (const QString& theNewText)
494 {
495   QLineEdit* send = (QLineEdit*)sender();
496
497   if (myBusy) return;
498   myBusy = true;
499
500   if (send == LineEditElements)
501     myNbOkElements = 0;
502
503   buttonOk->setEnabled(false);
504   buttonApply->setEnabled(false);
505
506   // hilight entered elements
507   SMDS_Mesh* aMesh = 0;
508   if (myActor)
509     aMesh = myActor->GetObject()->GetMesh();
510
511   if (aMesh) {
512     if (send == LineEditElements) {
513       Handle(SALOME_InteractiveObject) anIO = myActor->getIO();
514       
515       TColStd_MapOfInteger newIndices;
516       
517       QStringList aListId = QStringList::split(" ", theNewText, false);
518       for (int i = 0; i < aListId.count(); i++) {
519         const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt());
520         if (e)
521           newIndices.Add(e->GetID());
522         myNbOkElements++;
523       }
524
525       mySelector->AddOrRemoveIndex( anIO, newIndices, false );
526       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
527         aViewWindow->highlight( anIO, true, true );
528       
529       myElementsId = theNewText;
530     }
531   }
532
533   if (myNbOkElements && IsAxisOk()) {
534     buttonOk->setEnabled(true);
535     buttonApply->setEnabled(true);
536   }
537
538   myBusy = false;
539 }
540
541 //=================================================================================
542 // function : SelectionIntoArgument()
543 // purpose  : Called when selection as changed or other case
544 //=================================================================================
545 void SMESHGUI_RotationDlg::SelectionIntoArgument()
546 {
547   if (myBusy) return;
548
549   // clear
550   myActor = 0;
551   QString aString = "";
552
553   myBusy = true;
554   if (myEditCurrentArgument == (QWidget*)LineEditElements) {
555     LineEditElements->setText(aString);
556     myNbOkElements = 0;
557     buttonOk->setEnabled(false);
558     buttonApply->setEnabled(false);
559   }
560   myBusy = false;
561
562   if (!GroupButtons->isEnabled()) // inactive
563     return;
564
565   // get selected mesh
566   SALOME_ListIO aList;
567   mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
568
569   int nbSel = aList.Extent();
570   if (nbSel != 1)
571     return;
572
573   Handle(SALOME_InteractiveObject) IO = aList.First();
574   myMesh = SMESH::GetMeshByIO(IO);
575   if (myMesh->_is_nil())
576     return;
577
578   myActor = SMESH::FindActorByObject(myMesh);
579   if (!myActor)
580     myActor = SMESH::FindActorByEntry(IO->getEntry());
581   if (!myActor)
582     return;
583
584   int aNbUnits = 0;
585
586   if (myEditCurrentArgument == (QWidget*)LineEditElements) {
587     myElementsId = "";
588
589     if (CheckBoxMesh->isChecked()) {
590       SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
591
592       if (!SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IO)->_is_nil()) { //MESH
593         // get IDs from mesh
594         SMDS_Mesh* aSMDSMesh = myActor->GetObject()->GetMesh();
595         if (!aSMDSMesh)
596           return;
597
598         for (int i = aSMDSMesh->MinElementID(); i <= aSMDSMesh->MaxElementID(); i++) {
599           const SMDS_MeshElement * e = aSMDSMesh->FindElement(i);
600           if (e) {
601             myElementsId += QString(" %1").arg(i);
602             aNbUnits++;
603           }
604         }
605       } else if (!SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO)->_is_nil()) { //SUBMESH
606         // get submesh
607         SMESH::SMESH_subMesh_var aSubMesh = SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO);
608
609         // get IDs from submesh
610         SMESH::long_array_var anElementsIds = new SMESH::long_array;
611         anElementsIds = aSubMesh->GetElementsId();
612         for (int i = 0; i < anElementsIds->length(); i++) {
613           myElementsId += QString(" %1").arg(anElementsIds[i]);
614         }
615         aNbUnits = anElementsIds->length();
616       } else { // GROUP
617         // get smesh group
618         SMESH::SMESH_GroupBase_var aGroup =
619           SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IO);
620         if (aGroup->_is_nil())
621           return;
622
623         // get IDs from smesh group
624         SMESH::long_array_var anElementsIds = new SMESH::long_array;
625         anElementsIds = aGroup->GetListOfID();
626         for (int i = 0; i < anElementsIds->length(); i++) {
627           myElementsId += QString(" %1").arg(anElementsIds[i]);
628         }
629         aNbUnits = anElementsIds->length();
630       }
631     } else {
632       aNbUnits = SMESH::GetNameOfSelectedElements(mySelector, IO, aString);
633       myElementsId = aString;
634     }
635
636     if (aNbUnits < 1)
637       return;
638
639     myNbOkElements = true;
640   } else {
641     aNbUnits = SMESH::GetNameOfSelectedNodes(mySelector, IO, aString);
642     if (aNbUnits != 1)
643       return;
644
645     SMDS_Mesh* aMesh =  myActor->GetObject()->GetMesh();
646     if (!aMesh)
647       return;
648
649     const SMDS_MeshNode * n = aMesh->FindNode(aString.toInt());
650     if (!n)
651       return;
652
653     double x = n->X();
654     double y = n->Y();
655     double z = n->Z();
656
657     if (myEditCurrentArgument == (QWidget*)SpinBox_X) {
658       SpinBox_X->SetValue(x);
659       SpinBox_Y->SetValue(y);
660       SpinBox_Z->SetValue(z);
661     } else if (myEditCurrentArgument == (QWidget*)SpinBox_DX) {
662       SpinBox_DX->SetValue(x - SpinBox_X->GetValue());
663       SpinBox_DY->SetValue(y - SpinBox_Y->GetValue());
664       SpinBox_DZ->SetValue(z - SpinBox_Z->GetValue());
665     }
666   }
667
668   myBusy = true;
669   if (myEditCurrentArgument == (QWidget*)LineEditElements)
670     LineEditElements->setText(aString);
671   myBusy = false;
672
673   // OK
674   if (myNbOkElements && IsAxisOk()) {
675     buttonOk->setEnabled(true);
676     buttonApply->setEnabled(true);
677   }
678 }
679
680 //=================================================================================
681 // function : SetEditCurrentArgument()
682 // purpose  :
683 //=================================================================================
684 void SMESHGUI_RotationDlg::SetEditCurrentArgument()
685 {
686   QPushButton* send = (QPushButton*)sender();
687
688   disconnect(mySelectionMgr, 0, this, 0);
689   mySelectionMgr->clearSelected();
690   mySelectionMgr->clearFilters();
691
692   switch (myConstructorId) {
693   case 0: /* default constructor */
694     {
695       SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI );
696       if (send == SelectElementsButton) {
697         myEditCurrentArgument = (QWidget*)LineEditElements;
698         SMESH::SetPointRepresentation(false);
699         if (CheckBoxMesh->isChecked()) {
700           if ( aViewWindow )
701             aViewWindow->SetSelectionMode(ActorSelection);
702           mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
703         } else {
704           if ( aViewWindow )
705             aViewWindow->SetSelectionMode( CellSelection );
706         }
707       } else if (send == SelectPointButton) {
708         myEditCurrentArgument = (QWidget*)SpinBox_X;
709         SMESH::SetPointRepresentation(true);
710         if ( aViewWindow )
711           aViewWindow->SetSelectionMode( NodeSelection );
712       } else if (send == SelectVectorButton) {
713         myEditCurrentArgument = (QWidget*)SpinBox_DX;
714         SMESH::SetPointRepresentation(true);
715         if ( aViewWindow )
716           aViewWindow->SetSelectionMode( NodeSelection );
717       }
718       break;
719     }
720   }
721
722   myEditCurrentArgument->setFocus();
723   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
724   SelectionIntoArgument();
725 }
726
727 //=================================================================================
728 // function : DeactivateActiveDialog()
729 // purpose  :
730 //=================================================================================
731 void SMESHGUI_RotationDlg::DeactivateActiveDialog()
732 {
733   if (GroupConstructors->isEnabled()) {
734     GroupConstructors->setEnabled(false);
735     GroupArguments->setEnabled(false);
736     GroupButtons->setEnabled(false);
737     mySMESHGUI->ResetState();
738     mySMESHGUI->SetActiveDialogBox(0);
739   }
740 }
741
742 //=================================================================================
743 // function : ActivateThisDialog()
744 // purpose  :
745 //=================================================================================
746 void SMESHGUI_RotationDlg::ActivateThisDialog()
747 {
748   /* Emit a signal to deactivate the active dialog */
749   mySMESHGUI->EmitSignalDeactivateDialog();
750   GroupConstructors->setEnabled(true);
751   GroupArguments->setEnabled(true);
752   GroupButtons->setEnabled(true);
753
754   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
755
756   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
757     aViewWindow->SetSelectionMode( CellSelection );
758   SelectionIntoArgument();
759 }
760
761 //=================================================================================
762 // function : enterEvent()
763 // purpose  :
764 //=================================================================================
765 void SMESHGUI_RotationDlg::enterEvent (QEvent*)
766 {
767   if (!GroupConstructors->isEnabled())
768     ActivateThisDialog();
769 }
770
771 //=================================================================================
772 // function : closeEvent()
773 // purpose  :
774 //=================================================================================
775 void SMESHGUI_RotationDlg::closeEvent (QCloseEvent*)
776 {
777   /* same than click on cancel button */
778   this->ClickOnCancel();
779 }
780
781 //=================================================================================
782 // function : hideEvent()
783 // purpose  : caused by ESC key
784 //=================================================================================
785 void SMESHGUI_RotationDlg::hideEvent (QHideEvent*)
786 {
787   if (!isMinimized())
788     ClickOnCancel();
789 }
790
791 //=================================================================================
792 // function : onSelectMesh()
793 // purpose  :
794 //=================================================================================
795 void SMESHGUI_RotationDlg::onSelectMesh (bool toSelectMesh)
796 {
797   if (toSelectMesh)
798     TextLabelElements->setText(tr("SMESH_NAME"));
799   else
800     TextLabelElements->setText(tr("SMESH_ID_ELEMENTS"));
801
802   if (myEditCurrentArgument != LineEditElements) {
803     LineEditElements->clear();
804     return;
805   }
806
807   mySelectionMgr->clearFilters();
808   SMESH::SetPointRepresentation(false);
809
810   if (toSelectMesh) {
811     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
812       aViewWindow->SetSelectionMode(ActorSelection);
813     mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
814     LineEditElements->setReadOnly(true);
815   } else {
816     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
817       aViewWindow->SetSelectionMode( CellSelection );
818     LineEditElements->setReadOnly(false);
819     onTextChange(LineEditElements->text());
820   }
821
822   SelectionIntoArgument();
823 }
824
825 //=================================================================================
826 // function : IsAxisOk()
827 // purpose  :
828 //=================================================================================
829 bool SMESHGUI_RotationDlg::IsAxisOk()
830 {
831   return (SpinBox_DX->GetValue() != 0 ||
832           SpinBox_DY->GetValue() != 0 ||
833           SpinBox_DZ->GetValue() != 0);
834 }
835
836 //=================================================================================
837 // function : onVectorChanged()
838 // purpose  :
839 //=================================================================================
840 void SMESHGUI_RotationDlg::onVectorChanged()
841 {
842   if (IsAxisOk()) {
843     buttonOk->setEnabled(true);
844     buttonApply->setEnabled(true);
845   } else {
846     buttonOk->setEnabled(false);
847     buttonApply->setEnabled(false);
848   }
849 }
850
851 //=================================================================================
852 // function : keyPressEvent()
853 // purpose  :
854 //=================================================================================
855 void SMESHGUI_RotationDlg::keyPressEvent( QKeyEvent* e )
856 {
857   QDialog::keyPressEvent( e );
858   if ( e->isAccepted() )
859     return;
860
861   if ( e->key() == Key_F1 )
862     {
863       e->accept();
864       ClickOnHelp();
865     }
866 }