1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File : SMESHGUI_SewingDlg.cxx
25 // Author : Michael ZORIN, Open CASCADE S.A.S.
28 #include "SMESHGUI_SewingDlg.h"
31 #include "SMESHGUI_Utils.h"
32 #include "SMESHGUI_VTKUtils.h"
33 #include "SMESHGUI_MeshUtils.h"
34 #include "SMESHGUI_IdValidator.h"
36 #include <SMESH_Actor.h>
37 #include <SMDS_Mesh.hxx>
39 // SALOME GUI includes
40 #include <SUIT_Session.h>
41 #include <SUIT_ResourceMgr.h>
42 #include <SUIT_Desktop.h>
43 #include <SUIT_MessageBox.h>
44 #include <SUIT_OverrideCursor.h>
46 #include <LightApp_Application.h>
47 #include <LightApp_SelectionMgr.h>
49 #include <SVTK_ViewModel.h>
50 #include <SVTK_ViewWindow.h>
51 #include <SALOME_ListIO.hxx>
54 #include <TColStd_MapOfInteger.hxx>
57 #include <QApplication>
58 #include <QButtonGroup>
62 #include <QPushButton>
63 #include <QRadioButton>
65 #include <QHBoxLayout>
66 #include <QVBoxLayout>
67 #include <QGridLayout>
71 #include <SALOMEconfig.h>
72 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
77 //=================================================================================
78 // class : SMESHGUI_SewingDlg()
80 //=================================================================================
81 SMESHGUI_SewingDlg::SMESHGUI_SewingDlg( SMESHGUI* theModule )
82 : QDialog( SMESH::GetDesktop( theModule ) ),
83 mySMESHGUI( theModule ),
84 mySelectionMgr( SMESH::GetSelectionMgr( theModule ) )
86 SUIT_ResourceMgr* mgr = SMESH::GetResourceMgr( mySMESHGUI );
87 QPixmap image0 (mgr->loadPixmap("SMESH", tr("ICON_SMESH_SEWING_FREEBORDERS")));
88 QPixmap image1 (mgr->loadPixmap("SMESH", tr("ICON_SMESH_SEWING_CONFORM_FREEBORDERS")));
89 QPixmap image2 (mgr->loadPixmap("SMESH", tr("ICON_SMESH_SEWING_BORDERTOSIDE")));
90 QPixmap image3 (mgr->loadPixmap("SMESH", tr("ICON_SMESH_SEWING_SIDEELEMENTS")));
91 QPixmap image4 (mgr->loadPixmap("SMESH", tr("ICON_SELECT")));
94 setAttribute(Qt::WA_DeleteOnClose, true);
95 setWindowTitle(tr("SMESH_SEWING"));
96 setSizeGripEnabled(true);
98 QVBoxLayout* SMESHGUI_SewingDlgLayout = new QVBoxLayout(this);
99 SMESHGUI_SewingDlgLayout->setSpacing(SPACING);
100 SMESHGUI_SewingDlgLayout->setMargin(MARGIN);
102 /***************************************************************/
103 ConstructorsBox = new QGroupBox(tr("SMESH_SEWING"), this);
104 GroupConstructors = new QButtonGroup(this);
105 QHBoxLayout* ConstructorsBoxLayout = new QHBoxLayout(ConstructorsBox);
106 ConstructorsBoxLayout->setSpacing(SPACING);
107 ConstructorsBoxLayout->setMargin(MARGIN);
109 RadioButton1 = new QRadioButton(ConstructorsBox);
110 RadioButton1->setIcon(image0);
111 RadioButton2 = new QRadioButton(ConstructorsBox);
112 RadioButton2->setIcon(image1);
113 RadioButton3 = new QRadioButton(ConstructorsBox);
114 RadioButton3->setIcon(image2);
115 RadioButton4 = new QRadioButton(ConstructorsBox);
116 RadioButton4->setIcon(image3);
118 ConstructorsBoxLayout->addWidget(RadioButton1);
119 ConstructorsBoxLayout->addWidget(RadioButton2);
120 ConstructorsBoxLayout->addWidget(RadioButton3);
121 ConstructorsBoxLayout->addWidget(RadioButton4);
122 GroupConstructors->addButton(RadioButton1, 0);
123 GroupConstructors->addButton(RadioButton2, 1);
124 GroupConstructors->addButton(RadioButton3, 2);
125 GroupConstructors->addButton(RadioButton4, 3);
127 /***************************************************************/
128 GroupArguments = new QGroupBox(this);
129 QVBoxLayout* GroupArgumentsLayout = new QVBoxLayout(GroupArguments);
130 GroupArgumentsLayout->setSpacing(SPACING);
131 GroupArgumentsLayout->setMargin(MARGIN);
134 SubGroup1 = new QGroupBox(GroupArguments);
135 QGridLayout* SubGroup1Layout = new QGridLayout(SubGroup1);
136 SubGroup1Layout->setSpacing(SPACING);
137 SubGroup1Layout->setMargin(MARGIN);
139 // Controls of the first subgroup
140 TextLabel1 = new QLabel(SubGroup1);
141 SelectButton1 = new QPushButton(SubGroup1);
142 SelectButton1->setIcon(image4);
143 LineEdit1 = new QLineEdit(SubGroup1);
145 TextLabel2 = new QLabel(SubGroup1);
146 SelectButton2 = new QPushButton(SubGroup1);
147 SelectButton2->setIcon(image4);
148 LineEdit2 = new QLineEdit(SubGroup1);
150 TextLabel3 = new QLabel(SubGroup1);
151 SelectButton3 = new QPushButton(SubGroup1);
152 SelectButton3->setIcon(image4);
153 LineEdit3 = new QLineEdit(SubGroup1);
155 SubGroup1Layout->addWidget(TextLabel1, 0, 0);
156 SubGroup1Layout->addWidget(SelectButton1, 0, 1);
157 SubGroup1Layout->addWidget(LineEdit1, 0, 2);
158 SubGroup1Layout->addWidget(TextLabel2, 1, 0);
159 SubGroup1Layout->addWidget(SelectButton2, 1, 1);
160 SubGroup1Layout->addWidget(LineEdit2, 1, 2);
161 SubGroup1Layout->addWidget(TextLabel3, 2, 0);
162 SubGroup1Layout->addWidget(SelectButton3, 2, 1);
163 SubGroup1Layout->addWidget(LineEdit3, 2, 2);
166 SubGroup2 = new QGroupBox(GroupArguments);
167 QGridLayout* SubGroup2Layout = new QGridLayout(SubGroup2);
168 SubGroup2Layout->setSpacing(SPACING);
169 SubGroup2Layout->setMargin(MARGIN);
171 // Controls of the first subgroup
172 TextLabel4 = new QLabel(SubGroup2);
173 SelectButton4 = new QPushButton(SubGroup2);
174 SelectButton4->setIcon(image4);
175 LineEdit4 = new QLineEdit(SubGroup2);
177 TextLabel5 = new QLabel(SubGroup2);
178 SelectButton5 = new QPushButton(SubGroup2);
179 SelectButton5->setIcon(image4);
180 LineEdit5 = new QLineEdit(SubGroup2);
182 TextLabel6 = new QLabel(SubGroup2);
183 SelectButton6 = new QPushButton(SubGroup2);
184 SelectButton6->setIcon(image4);
185 LineEdit6 = new QLineEdit(SubGroup2);
187 SubGroup2Layout->addWidget(TextLabel4, 0, 0);
188 SubGroup2Layout->addWidget(SelectButton4, 0, 1);
189 SubGroup2Layout->addWidget(LineEdit4, 0, 2);
190 SubGroup2Layout->addWidget(TextLabel5, 1, 0);
191 SubGroup2Layout->addWidget(SelectButton5, 1, 1);
192 SubGroup2Layout->addWidget(LineEdit5, 1, 2);
193 SubGroup2Layout->addWidget(TextLabel6, 2, 0);
194 SubGroup2Layout->addWidget(SelectButton6, 2, 1);
195 SubGroup2Layout->addWidget(LineEdit6, 2, 2);
197 // Control for the merging equal elements
198 CheckBoxMerge = new QCheckBox(tr("MERGE_EQUAL_ELEMENTS"), GroupArguments);
200 // Control for the polygons creation instead of splitting
201 CheckBoxPolygons = new QCheckBox(tr("CREATE_POLYGONS_INSTEAD_SPLITTING"), GroupArguments);
203 // Control for the polyedres creation to obtain conform mesh
204 CheckBoxPolyedrs = new QCheckBox(tr("CREATE_POLYEDRS_NEAR_BOUNDARY"), GroupArguments);
207 GroupArgumentsLayout->addWidget(SubGroup1);
208 GroupArgumentsLayout->addWidget(SubGroup2);
209 GroupArgumentsLayout->addWidget(CheckBoxMerge);
210 GroupArgumentsLayout->addWidget(CheckBoxPolygons);
211 GroupArgumentsLayout->addWidget(CheckBoxPolyedrs);
213 /***************************************************************/
214 GroupButtons = new QGroupBox(this);
215 QHBoxLayout* GroupButtonsLayout = new QHBoxLayout(GroupButtons);
216 GroupButtonsLayout->setSpacing(SPACING);
217 GroupButtonsLayout->setMargin(MARGIN);
219 buttonOk = new QPushButton(tr("SMESH_BUT_APPLY_AND_CLOSE"), GroupButtons);
220 buttonOk->setAutoDefault(true);
221 buttonOk->setDefault(true);
222 buttonApply = new QPushButton(tr("SMESH_BUT_APPLY"), GroupButtons);
223 buttonApply->setAutoDefault(true);
224 buttonCancel = new QPushButton(tr("SMESH_BUT_CLOSE"), GroupButtons);
225 buttonCancel->setAutoDefault(true);
226 buttonHelp = new QPushButton(tr("SMESH_BUT_HELP"), GroupButtons);
227 buttonHelp->setAutoDefault(true);
229 GroupButtonsLayout->addWidget(buttonOk);
230 GroupButtonsLayout->addSpacing(10);
231 GroupButtonsLayout->addWidget(buttonApply);
232 GroupButtonsLayout->addSpacing(10);
233 GroupButtonsLayout->addStretch();
234 GroupButtonsLayout->addWidget(buttonCancel);
235 GroupButtonsLayout->addWidget(buttonHelp);
237 /***************************************************************/
238 SMESHGUI_SewingDlgLayout->addWidget(ConstructorsBox);
239 SMESHGUI_SewingDlgLayout->addWidget(GroupArguments);
240 SMESHGUI_SewingDlgLayout->addWidget(GroupButtons);
242 /* Initialisations */
243 RadioButton1->setChecked(true);
245 LineEdit2->setValidator(new SMESHGUI_IdValidator(this, 1));
246 LineEdit3->setValidator(new SMESHGUI_IdValidator(this, 1));
247 LineEdit5->setValidator(new SMESHGUI_IdValidator(this, 1));
248 LineEdit6->setValidator(new SMESHGUI_IdValidator(this, 1));
250 mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
252 mySMESHGUI->SetActiveDialogBox((QDialog*)this);
254 myHelpFileName = "sewing_meshes_page.html";
258 /* signals and slots connections */
259 connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
260 connect(buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
261 connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
262 connect(buttonHelp, SIGNAL(clicked()), this, SLOT(ClickOnHelp()));
263 connect(GroupConstructors, SIGNAL(buttonClicked(int)), SLOT(ConstructorsClicked(int)));
265 connect(SelectButton1, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
266 connect(SelectButton2, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
267 connect(SelectButton3, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
268 connect(SelectButton4, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
269 connect(SelectButton5, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
270 connect(SelectButton6, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
272 connect(mySMESHGUI, SIGNAL (SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
273 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
274 /* to close dialog if study change */
275 connect(mySMESHGUI, SIGNAL (SignalCloseAllDialogs()), this, SLOT(reject()));
277 connect(LineEdit1, SIGNAL(textChanged(const QString&)), SLOT(onTextChange(const QString&)));
278 connect(LineEdit2, SIGNAL(textChanged(const QString&)), SLOT(onTextChange(const QString&)));
279 connect(LineEdit3, SIGNAL(textChanged(const QString&)), SLOT(onTextChange(const QString&)));
280 connect(LineEdit4, SIGNAL(textChanged(const QString&)), SLOT(onTextChange(const QString&)));
281 connect(LineEdit5, SIGNAL(textChanged(const QString&)), SLOT(onTextChange(const QString&)));
282 connect(LineEdit6, SIGNAL(textChanged(const QString&)), SLOT(onTextChange(const QString&)));
284 ConstructorsClicked(0);
287 //=================================================================================
288 // function : ~SMESHGUI_SewingDlg()
289 // purpose : Destroys the object and frees any allocated resources
290 //=================================================================================
291 SMESHGUI_SewingDlg::~SMESHGUI_SewingDlg()
295 //=================================================================================
298 //=================================================================================
299 void SMESHGUI_SewingDlg::Init()
303 myEditCurrentArgument = LineEdit1;
304 LineEdit1->setFocus();
306 myMesh = SMESH::SMESH_Mesh::_nil();
307 CheckBoxMerge->setChecked(false);
308 CheckBoxPolygons->setChecked(false);
309 CheckBoxPolyedrs->setChecked(false);
310 SelectionIntoArgument();
313 //=================================================================================
314 // function : ConstructorsClicked()
315 // purpose : Radio button management
316 //=================================================================================
317 void SMESHGUI_SewingDlg::ConstructorsClicked (int constructorId)
319 disconnect(mySelectionMgr, 0, this, 0);
321 mySelectionMgr->selectedObjects( io );
322 mySelectionMgr->clearSelected();
323 LineEdit1->setText("");
324 LineEdit2->setText("");
325 LineEdit3->setText("");
326 LineEdit4->setText("");
327 LineEdit5->setText("");
328 LineEdit6->setText("");
329 myOk1 = myOk2 = myOk3 = myOk4 = myOk5 = myOk6 = false;
330 myEditCurrentArgument = LineEdit1;
331 myEditCurrentArgument->setFocus();
333 if (!TextLabel5->isEnabled()) {
334 TextLabel5->setEnabled(true);
335 SelectButton5->setEnabled(true);
336 LineEdit5->setEnabled(true);
337 } else if (!TextLabel6->isEnabled()) {
338 TextLabel6->setEnabled(true);
339 SelectButton6->setEnabled(true);
340 LineEdit6->setEnabled(true);
343 if (constructorId == 1 || constructorId == 3) {
344 if (CheckBoxPolygons->isVisible())
345 CheckBoxPolygons->hide();
346 if (CheckBoxPolyedrs->isVisible())
347 CheckBoxPolyedrs->hide();
350 switch (constructorId) {
353 GroupArguments->setTitle(tr("SEW_FREE_BORDERS"));
354 SubGroup1->setTitle(tr("BORDER_1"));
355 SubGroup2->setTitle(tr("BORDER_2"));
357 if (!CheckBoxPolygons->isVisible())
358 CheckBoxPolygons->show();
359 if (!CheckBoxPolyedrs->isVisible())
360 CheckBoxPolyedrs->show();
366 GroupArguments->setTitle(tr("SEW_CONFORM_FREE_BORDERS"));
367 SubGroup1->setTitle(tr("BORDER_1"));
368 SubGroup2->setTitle(tr("BORDER_2"));
370 TextLabel6->setEnabled(false);
371 SelectButton6->setEnabled(false);
372 LineEdit6->setEnabled(false);
380 GroupArguments->setTitle(tr("SEW_BORDER_TO_SIDE"));
381 SubGroup1->setTitle(tr("BORDER"));
382 SubGroup2->setTitle(tr("SIDE"));
384 TextLabel5->setEnabled(false);
385 SelectButton5->setEnabled(false);
386 LineEdit5->setEnabled(false);
388 if (!CheckBoxPolygons->isVisible())
389 CheckBoxPolygons->show();
390 if (!CheckBoxPolyedrs->isVisible())
391 CheckBoxPolyedrs->show();
399 GroupArguments->setTitle(tr("SEW_SIDE_ELEMENTS"));
400 SubGroup1->setTitle(tr("SIDE_1"));
401 SubGroup2->setTitle(tr("SIDE_2"));
403 TextLabel1->setText(tr("SMESH_ID_ELEMENTS"));
404 TextLabel2->setText(tr("NODE1_TO_MERGE"));
405 TextLabel3->setText(tr("NODE2_TO_MERGE"));
406 TextLabel4->setText(tr("SMESH_ID_ELEMENTS"));
407 TextLabel5->setText(tr("NODE1_TO_MERGE"));
408 TextLabel6->setText(tr("NODE2_TO_MERGE"));
410 LineEdit1->setValidator(new SMESHGUI_IdValidator(this));
411 LineEdit4->setValidator(new SMESHGUI_IdValidator(this));
413 SMESH::SetPointRepresentation(false);
415 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
416 aViewWindow->SetSelectionMode(CellSelection);
421 if (constructorId != 3) {
422 TextLabel1->setText(tr("FIRST_NODE_ID"));
423 TextLabel2->setText(tr("SECOND_NODE_ID"));
424 TextLabel3->setText(tr("LAST_NODE_ID"));
425 TextLabel4->setText(tr("FIRST_NODE_ID"));
426 TextLabel5->setText(tr("SECOND_NODE_ID"));
427 TextLabel6->setText(tr("LAST_NODE_ID"));
429 LineEdit1->setValidator(new SMESHGUI_IdValidator(this, 1));
430 LineEdit4->setValidator(new SMESHGUI_IdValidator(this, 1));
432 SMESH::SetPointRepresentation(true);
434 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
435 aViewWindow->SetSelectionMode(NodeSelection);
438 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
439 mySelectionMgr->setSelectedObjects( io );
441 QApplication::instance()->processEvents();
446 //=================================================================================
447 // function : ClickOnApply()
449 //=================================================================================
450 bool SMESHGUI_SewingDlg::ClickOnApply()
452 if (mySMESHGUI->isActiveStudyLocked())
455 bool aResult = false;
458 bool toMerge = CheckBoxMerge->isChecked();
459 bool toCreatePolygons = CheckBoxPolygons->isChecked();
460 bool toCreatePolyedrs = CheckBoxPolyedrs->isChecked();
463 SUIT_OverrideCursor aWaitCursor;
464 SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
466 int aConstructorId = GetConstructorId();
467 SMESH::SMESH_MeshEditor::Sew_Error anError;
469 if (aConstructorId == 0)
470 anError = aMeshEditor->SewFreeBorders(LineEdit1->text().toLong(),
471 LineEdit2->text().toLong(),
472 LineEdit3->text().toLong(),
473 LineEdit4->text().toLong(),
474 LineEdit5->text().toLong(),
475 LineEdit6->text().toLong(),
478 else if (aConstructorId == 1)
479 anError = aMeshEditor->SewConformFreeBorders(LineEdit1->text().toLong(),
480 LineEdit2->text().toLong(),
481 LineEdit3->text().toLong(),
482 LineEdit4->text().toLong(),
483 LineEdit5->text().toLong());
484 else if (aConstructorId == 2)
485 anError = aMeshEditor->SewBorderToSide(LineEdit1->text().toLong(),
486 LineEdit2->text().toLong(),
487 LineEdit3->text().toLong(),
488 LineEdit4->text().toLong(),
489 LineEdit6->text().toLong(),
492 else if (aConstructorId == 3) {
493 QStringList aListElementsId1 = LineEdit1->text().split(" ", QString::SkipEmptyParts);
494 QStringList aListElementsId2 = LineEdit4->text().split(" ", QString::SkipEmptyParts);
496 SMESH::long_array_var anElementsId1 = new SMESH::long_array;
497 SMESH::long_array_var anElementsId2 = new SMESH::long_array;
499 anElementsId1->length(aListElementsId1.count());
500 anElementsId2->length(aListElementsId2.count());
502 for (int i = 0; i < aListElementsId1.count(); i++)
503 anElementsId1[i] = aListElementsId1[i].toInt();
504 for (int i = 0; i < aListElementsId2.count(); i++)
505 anElementsId2[i] = aListElementsId2[i].toInt();
507 anError = aMeshEditor->SewSideElements(anElementsId1.inout(),
508 anElementsId2.inout(),
509 LineEdit2->text().toLong(),
510 LineEdit5->text().toLong(),
511 LineEdit3->text().toLong(),
512 LineEdit6->text().toLong());
514 aResult = (anError == SMESH::SMESH_MeshEditor::SEW_OK);
516 if (toMerge && aResult)
517 aMeshEditor->MergeEqualElements();
520 QString msg = tr(QString("ERROR_%1").arg(anError).toLatin1().data());
521 SUIT_MessageBox::warning(this, tr("SMESH_WRN_WARNING"), msg);
527 Handle(SALOME_InteractiveObject) anIO = myActor->getIO();
531 mySelectionMgr->setSelectedObjects(aList, false);
535 ConstructorsClicked(GetConstructorId());
537 SMESHGUI::Modified();
544 //=================================================================================
545 // function : ClickOnOk()
547 //=================================================================================
548 void SMESHGUI_SewingDlg::ClickOnOk()
554 //=================================================================================
555 // function : reject()
557 //=================================================================================
558 void SMESHGUI_SewingDlg::reject()
560 //mySelectionMgr->clearSelected();
561 SMESH::SetPointRepresentation(false);
562 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
563 aViewWindow->SetSelectionMode(ActorSelection);
564 disconnect(mySelectionMgr, 0, this, 0);
565 mySMESHGUI->ResetState();
569 //=================================================================================
570 // function : ClickOnHelp()
572 //=================================================================================
573 void SMESHGUI_SewingDlg::ClickOnHelp()
575 LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
577 app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
581 platform = "winapplication";
583 platform = "application";
585 SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
586 tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
587 arg(app->resourceMgr()->stringValue("ExternalBrowser",
589 arg(myHelpFileName));
593 //=======================================================================
594 //function : onTextChange
596 //=======================================================================
597 void SMESHGUI_SewingDlg::onTextChange (const QString& theNewText)
599 QLineEdit* send = (QLineEdit*)sender();
605 myEditCurrentArgument = send;
607 if (send == LineEdit1)
609 else if (send == LineEdit2)
611 else if (send == LineEdit3)
613 else if (send == LineEdit4)
615 else if (send == LineEdit5)
617 else if (send == LineEdit6)
620 buttonOk->setEnabled(false);
621 buttonApply->setEnabled(false);
623 // hilight entered elements/nodes
624 SMDS_Mesh* aMesh = 0;
627 aMesh = myActor->GetObject()->GetMesh();
632 TColStd_MapOfInteger newIndices;
634 if (GetConstructorId() != 3 || (send != LineEdit1 && send != LineEdit4)) {
635 SMESH::SetPointRepresentation(true);
637 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
638 aViewWindow->SetSelectionMode(NodeSelection);
640 const SMDS_MeshNode * n = aMesh->FindNode(theNewText.toInt());
642 newIndices.Add(n->GetID());
643 mySelector->AddOrRemoveIndex(myActor->getIO(), newIndices, false);
644 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
645 aViewWindow->highlight( myActor->getIO(), true, true );
647 if (send == LineEdit1)
649 else if (send == LineEdit2)
651 else if (send == LineEdit3)
653 else if (send == LineEdit4)
655 else if (send == LineEdit5)
657 else if (send == LineEdit6)
661 SMESH::SetPointRepresentation(false);
663 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
664 aViewWindow->SetSelectionMode(CellSelection);
666 QStringList aListId = theNewText.split(" ", QString::SkipEmptyParts);
668 bool isEvenOneExists = false;
670 for (int i = 0; i < aListId.count(); i++) {
671 const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt());
673 newIndices.Add(e->GetID());
675 if (!isEvenOneExists)
676 isEvenOneExists = true;
680 mySelector->AddOrRemoveIndex(myActor->getIO(), newIndices, false);
681 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
682 aViewWindow->highlight( myActor->getIO(), true, true );
684 if (isEvenOneExists) {
685 if (send == LineEdit1)
687 else if(send == LineEdit4)
696 buttonOk->setEnabled(true);
697 buttonApply->setEnabled(true);
703 //=================================================================================
704 // function : SelectionIntoArgument()
705 // purpose : Called when selection as changed or other case
706 //=================================================================================
707 void SMESHGUI_SewingDlg::SelectionIntoArgument (bool isSelectionChanged)
712 if (isSelectionChanged)
715 QString aString = "";
718 myEditCurrentArgument->setText(aString);
721 if (!GroupButtons->isEnabled()) // inactive
724 buttonOk->setEnabled(false);
725 buttonApply->setEnabled(false);
729 mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
731 int nbSel = aList.Extent();
735 Handle(SALOME_InteractiveObject) IO = aList.First();
736 myMesh = SMESH::GetMeshByIO(IO); //@ SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IO);
737 myActor = SMESH::FindActorByEntry(aList.First()->getEntry());
739 if (myMesh->_is_nil() || !myActor)
742 // get selected elements/nodes
745 if (GetConstructorId() != 3 ||
746 (myEditCurrentArgument != LineEdit1 && myEditCurrentArgument != LineEdit4)) {
747 aNbUnits = SMESH::GetNameOfSelectedNodes(mySelector, IO, aString);
751 aNbUnits = SMESH::GetNameOfSelectedElements(mySelector, IO, aString);
757 myEditCurrentArgument->setText(aString);
761 if (myEditCurrentArgument == LineEdit1)
763 else if (myEditCurrentArgument == LineEdit2)
765 else if (myEditCurrentArgument == LineEdit3)
767 else if (myEditCurrentArgument == LineEdit4)
769 else if (myEditCurrentArgument == LineEdit5)
771 else if (myEditCurrentArgument == LineEdit6)
775 buttonOk->setEnabled(true);
776 buttonApply->setEnabled(true);
780 //=================================================================================
781 // function : SetEditCurrentArgument()
783 //=================================================================================
784 void SMESHGUI_SewingDlg::SetEditCurrentArgument()
786 QPushButton* send = (QPushButton*)sender();
788 disconnect(mySelectionMgr, 0, this, 0);
789 mySelectionMgr->clearSelected();
791 if (send == SelectButton1) {
792 myEditCurrentArgument = LineEdit1;
795 else if (send == SelectButton2) {
796 myEditCurrentArgument = LineEdit2;
799 else if (send == SelectButton3) {
800 myEditCurrentArgument = LineEdit3;
803 else if (send == SelectButton4) {
804 myEditCurrentArgument = LineEdit4;
807 else if (send == SelectButton5) {
808 myEditCurrentArgument = LineEdit5;
811 else if (send == SelectButton6) {
812 myEditCurrentArgument = LineEdit6;
816 if (GetConstructorId() != 3 || (send != SelectButton1 && send != SelectButton4)) {
817 SMESH::SetPointRepresentation(true);
819 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
820 aViewWindow->SetSelectionMode(NodeSelection);
823 SMESH::SetPointRepresentation(false);
824 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
825 aViewWindow->SetSelectionMode(CellSelection);
828 myEditCurrentArgument->setFocus();
829 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
830 SelectionIntoArgument(false);
833 //=================================================================================
834 // function : DeactivateActiveDialog()
836 //=================================================================================
837 void SMESHGUI_SewingDlg::DeactivateActiveDialog()
839 if (ConstructorsBox->isEnabled()) {
840 ConstructorsBox->setEnabled(false);
841 GroupArguments->setEnabled(false);
842 GroupButtons->setEnabled(false);
843 mySMESHGUI->ResetState();
844 mySMESHGUI->SetActiveDialogBox(0);
848 //=================================================================================
849 // function : ActivateThisDialog()
851 //=================================================================================
852 void SMESHGUI_SewingDlg::ActivateThisDialog()
854 /* Emit a signal to deactivate the active dialog */
855 mySMESHGUI->EmitSignalDeactivateDialog();
856 ConstructorsBox->setEnabled(true);
857 GroupArguments->setEnabled(true);
858 GroupButtons->setEnabled(true);
860 mySMESHGUI->SetActiveDialogBox((QDialog*)this);
862 ConstructorsClicked(GetConstructorId());
863 SelectionIntoArgument();
866 //=================================================================================
867 // function : enterEvent()
869 //=================================================================================
870 void SMESHGUI_SewingDlg::enterEvent (QEvent* e)
872 if (!ConstructorsBox->isEnabled())
873 ActivateThisDialog();
876 //=================================================================================
877 // function : GetConstructorId()
879 //=================================================================================
880 int SMESHGUI_SewingDlg::GetConstructorId()
882 return GroupConstructors->checkedId();
885 //=================================================================================
886 // function : GetConstructorId()
888 //=================================================================================
889 bool SMESHGUI_SewingDlg::IsValid()
891 return (myOk1 && myOk2 && myOk3 && myOk4 && myOk5 && myOk6);
894 //=================================================================================
895 // function : keyPressEvent()
897 //=================================================================================
898 void SMESHGUI_SewingDlg::keyPressEvent( QKeyEvent* e )
900 QDialog::keyPressEvent( e );
901 if ( e->isAccepted() )
904 if ( e->key() == Qt::Key_F1 ) {