1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 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
24 // File : SMESHGUI_RemoveElementsDlg.cxx
25 // Author : Nicolas REJNERI
29 #include "SMESHGUI_RemoveElementsDlg.h"
32 #include "SMESHGUI_Utils.h"
33 #include "SMESHGUI_VTKUtils.h"
34 #include "SMESHGUI_MeshUtils.h"
35 #include "SMESHGUI_IdValidator.h"
37 #include "SMESH_Actor.h"
38 #include "SMDS_Mesh.hxx"
40 #include "SUIT_ResourceMgr.h"
41 #include "SUIT_Desktop.h"
42 #include "SUIT_Session.h"
43 #include "SUIT_MessageBox.h"
45 #include "SVTK_Selector.h"
46 #include "SVTK_ViewModel.h"
47 #include "SVTK_ViewWindow.h"
48 #include "SALOME_ListIO.hxx"
50 #include "SalomeApp_Tools.h"
51 #include "LightApp_Application.h"
52 #include "utilities.h"
55 #include <TColStd_MapOfInteger.hxx>
56 #include <TColStd_IndexedMapOfInteger.hxx>
59 #include <qbuttongroup.h>
60 #include <qgroupbox.h>
62 #include <qlineedit.h>
63 #include <qpushbutton.h>
64 #include <qradiobutton.h>
68 #include <qwhatsthis.h>
74 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
76 //=================================================================================
77 // class : SMESHGUI_RemoveElementsDlg()
79 //=================================================================================
80 SMESHGUI_RemoveElementsDlg
81 ::SMESHGUI_RemoveElementsDlg (SMESHGUI* theModule,
85 : QDialog(SMESH::GetDesktop(theModule),
88 WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu | Qt::WDestructiveClose),
89 mySelector(SMESH::GetViewWindow(theModule)->GetSelector()),
90 mySelectionMgr(SMESH::GetSelectionMgr(theModule)),
91 mySMESHGUI(theModule),
94 QPixmap image0 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_DLG_REM_ELEMENT")));
95 QPixmap image1 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SELECT")));
98 setName("SMESHGUI_RemoveElementsDlg");
100 setCaption(tr("SMESH_REMOVE_ELEMENTS_TITLE"));
101 setSizeGripEnabled(TRUE);
102 SMESHGUI_RemoveElementsDlgLayout = new QGridLayout(this);
103 SMESHGUI_RemoveElementsDlgLayout->setSpacing(6);
104 SMESHGUI_RemoveElementsDlgLayout->setMargin(11);
106 /***************************************************************/
107 GroupConstructors = new QButtonGroup(this, "GroupConstructors");
108 GroupConstructors->setTitle(tr("SMESH_ELEMENTS" ));
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 Constructor1 = new QRadioButton(GroupConstructors, "Constructor1");
118 Constructor1->setText(tr("" ));
119 Constructor1->setPixmap(image0);
120 Constructor1->setChecked(TRUE);
121 Constructor1->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)1, (QSizePolicy::SizeType)0, Constructor1->sizePolicy().hasHeightForWidth()));
122 Constructor1->setMinimumSize(QSize(50, 0));
123 GroupConstructorsLayout->addWidget(Constructor1, 0, 0);
124 QSpacerItem* spacer = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
125 GroupConstructorsLayout->addItem(spacer, 0, 1);
126 SMESHGUI_RemoveElementsDlgLayout->addWidget(GroupConstructors, 0, 0);
128 /***************************************************************/
129 GroupButtons = new QGroupBox(this, "GroupButtons");
130 GroupButtons->setGeometry(QRect(10, 10, 281, 48));
131 GroupButtons->setTitle(tr("" ));
132 GroupButtons->setColumnLayout(0, Qt::Vertical);
133 GroupButtons->layout()->setSpacing(0);
134 GroupButtons->layout()->setMargin(0);
135 GroupButtonsLayout = new QGridLayout(GroupButtons->layout());
136 GroupButtonsLayout->setAlignment(Qt::AlignTop);
137 GroupButtonsLayout->setSpacing(6);
138 GroupButtonsLayout->setMargin(11);
139 buttonHelp = new QPushButton(GroupButtons, "buttonHelp");
140 buttonHelp->setText(tr("SMESH_BUT_HELP" ));
141 buttonHelp->setAutoDefault(TRUE);
142 GroupButtonsLayout->addWidget(buttonHelp, 0, 4);
143 buttonCancel = new QPushButton(GroupButtons, "buttonCancel");
144 buttonCancel->setText(tr("SMESH_BUT_CLOSE" ));
145 buttonCancel->setAutoDefault(TRUE);
146 GroupButtonsLayout->addWidget(buttonCancel, 0, 3);
147 buttonApply = new QPushButton(GroupButtons, "buttonApply");
148 buttonApply->setText(tr("SMESH_BUT_APPLY" ));
149 buttonApply->setAutoDefault(TRUE);
150 GroupButtonsLayout->addWidget(buttonApply, 0, 1);
151 QSpacerItem* spacer_9 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
152 GroupButtonsLayout->addItem(spacer_9, 0, 2);
153 buttonOk = new QPushButton(GroupButtons, "buttonOk");
154 buttonOk->setText(tr("SMESH_BUT_OK" ));
155 buttonOk->setAutoDefault(TRUE);
156 buttonOk->setDefault(TRUE);
157 GroupButtonsLayout->addWidget(buttonOk, 0, 0);
158 SMESHGUI_RemoveElementsDlgLayout->addWidget(GroupButtons, 2, 0);
160 /***************************************************************/
161 GroupC1 = new QGroupBox(this, "GroupC1");
162 GroupC1->setTitle(tr("SMESH_REMOVE" ));
163 GroupC1->setMinimumSize(QSize(0, 0));
164 GroupC1->setFrameShape(QGroupBox::Box);
165 GroupC1->setFrameShadow(QGroupBox::Sunken);
166 GroupC1->setColumnLayout(0, Qt::Vertical);
167 GroupC1->layout()->setSpacing(0);
168 GroupC1->layout()->setMargin(0);
169 GroupC1Layout = new QGridLayout(GroupC1->layout());
170 GroupC1Layout->setAlignment(Qt::AlignTop);
171 GroupC1Layout->setSpacing(6);
172 GroupC1Layout->setMargin(11);
173 TextLabelC1A1 = new QLabel(GroupC1, "TextLabelC1A1");
174 TextLabelC1A1->setText(tr("SMESH_ID_ELEMENTS" ));
175 TextLabelC1A1->setMinimumSize(QSize(50, 0));
176 TextLabelC1A1->setFrameShape(QLabel::NoFrame);
177 TextLabelC1A1->setFrameShadow(QLabel::Plain);
178 GroupC1Layout->addWidget(TextLabelC1A1, 0, 0);
179 SelectButtonC1A1 = new QPushButton(GroupC1, "SelectButtonC1A1");
180 SelectButtonC1A1->setText(tr("" ));
181 SelectButtonC1A1->setPixmap(image1);
182 SelectButtonC1A1->setToggleButton(FALSE);
183 GroupC1Layout->addWidget(SelectButtonC1A1, 0, 1);
184 LineEditC1A1 = new QLineEdit(GroupC1, "LineEditC1A1");
185 LineEditC1A1->setValidator(new SMESHGUI_IdValidator(this, "validator"));
186 GroupC1Layout->addWidget(LineEditC1A1, 0, 2);
187 SMESHGUI_RemoveElementsDlgLayout->addWidget(GroupC1, 1, 0);
189 myHelpFileName = "removing_nodes_and_elements_page.html#removing_elements_anchor";
191 Init(); /* Initialisations */
194 //=================================================================================
195 // function : ~SMESHGUI_RemoveElementsDlg()
196 // purpose : Destroys the object and frees any allocated resources
197 //=================================================================================
198 SMESHGUI_RemoveElementsDlg::~SMESHGUI_RemoveElementsDlg()
200 // no need to delete child widgets, Qt does it all for us
203 //=================================================================================
206 //=================================================================================
207 void SMESHGUI_RemoveElementsDlg::Init()
211 Constructor1->setChecked(TRUE);
212 myEditCurrentArgument = LineEditC1A1;
214 myNbOkElements = false;
215 mySMESHGUI->SetActiveDialogBox((QDialog*)this);
219 /* signals and slots connections */
220 connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
221 connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
222 connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
223 connect(buttonHelp, SIGNAL(clicked()), this, SLOT(ClickOnHelp()));
224 connect(GroupConstructors, SIGNAL(clicked(int)), SLOT(ConstructorsClicked(int)));
226 connect(SelectButtonC1A1, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
227 connect(mySMESHGUI, SIGNAL (SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
228 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
229 /* to close dialog if study change */
230 connect(mySMESHGUI, SIGNAL (SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
231 connect(myEditCurrentArgument, SIGNAL(textChanged(const QString&)),
232 SLOT(onTextChange(const QString&)));
234 this->show(); /* displays Dialog */
236 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
237 aViewWindow->SetSelectionMode(CellSelection);
239 SelectionIntoArgument();
242 //=================================================================================
243 // function : ConstructorsClicked()
244 // purpose : Radio button management
245 //=================================================================================
246 void SMESHGUI_RemoveElementsDlg::ConstructorsClicked (int)
250 //=================================================================================
251 // function : ClickOnApply()
253 //=================================================================================
254 void SMESHGUI_RemoveElementsDlg::ClickOnApply()
256 if (mySMESHGUI->isActiveStudyLocked())
258 if (myNbOkElements) {
259 QStringList aListId = QStringList::split(" ", myEditCurrentArgument->text(), false);
260 SMESH::long_array_var anArrayOfIdeces = new SMESH::long_array;
261 anArrayOfIdeces->length(aListId.count());
262 for (int i = 0; i < aListId.count(); i++)
263 anArrayOfIdeces[i] = aListId[ i ].toInt();
265 bool aResult = false;
267 SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
268 aResult = aMeshEditor->RemoveElements(anArrayOfIdeces.inout());
269 } catch (const SALOME::SALOME_Exception& S_ex) {
270 SalomeApp_Tools::QtCatchCorbaException(S_ex);
271 myEditCurrentArgument->clear();
273 myEditCurrentArgument->clear();
277 myEditCurrentArgument->clear();
278 mySelector->ClearIndex();
284 //=================================================================================
285 // function : ClickOnOk()
287 //=================================================================================
288 void SMESHGUI_RemoveElementsDlg::ClickOnOk()
290 this->ClickOnApply();
291 this->ClickOnCancel();
296 //=================================================================================
297 // function : ClickOnCancel()
299 //=================================================================================
300 void SMESHGUI_RemoveElementsDlg::ClickOnCancel()
302 //mySelectionMgr->clearSelected();
303 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
304 aViewWindow->SetSelectionMode(ActorSelection);
305 disconnect(mySelectionMgr, 0, this, 0);
306 mySMESHGUI->ResetState();
311 //=================================================================================
312 // function : ClickOnHelp()
314 //=================================================================================
315 void SMESHGUI_RemoveElementsDlg::ClickOnHelp()
317 LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
319 app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
323 platform = "winapplication";
325 platform = "application";
327 SUIT_MessageBox::warn1(0, QObject::tr("WRN_WARNING"),
328 QObject::tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
329 arg(app->resourceMgr()->stringValue("ExternalBrowser", platform)).arg(myHelpFileName),
330 QObject::tr("BUT_OK"));
334 //=======================================================================
335 //function : onTextChange
337 //=======================================================================
338 void SMESHGUI_RemoveElementsDlg::onTextChange (const QString& theNewText)
346 buttonOk->setEnabled(false);
347 buttonApply->setEnabled(false);
349 // hilight entered elements
351 if(SMDS_Mesh* aMesh = myActor->GetObject()->GetMesh()){
352 Handle(SALOME_InteractiveObject) anIO = myActor->getIO();
354 TColStd_MapOfInteger newIndices;
356 QStringList aListId = QStringList::split(" ", theNewText, false);
357 for (int i = 0; i < aListId.count(); i++) {
358 if(const SMDS_MeshElement *anElem = aMesh->FindElement(aListId[i].toInt())) {
359 newIndices.Add(anElem->GetID());
364 mySelector->AddOrRemoveIndex(anIO,newIndices,false);
365 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
366 aViewWindow->highlight(anIO,true,true);
370 if (myNbOkElements) {
371 buttonOk->setEnabled(true);
372 buttonApply->setEnabled(true);
378 //=================================================================================
379 // function : SelectionIntoArgument()
380 // purpose : Called when selection as changed or other case
381 //=================================================================================
382 void SMESHGUI_RemoveElementsDlg::SelectionIntoArgument()
388 myNbOkElements = false;
392 myEditCurrentArgument->setText("");
395 if (!GroupButtons->isEnabled()) // inactive
398 buttonOk->setEnabled(false);
399 buttonApply->setEnabled(false);
404 mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
406 int nbSel = aList.Extent();
410 Handle(SALOME_InteractiveObject) anIO = aList.First();
411 myMesh = SMESH::GetMeshByIO(anIO);
412 if (myMesh->_is_nil())
415 myActor = SMESH::FindActorByEntry(anIO->getEntry());
419 // get selected nodes
420 QString aString = "";
421 int nbElems = SMESH::GetNameOfSelectedElements(mySelector,anIO,aString);
425 myEditCurrentArgument->setText(aString);
430 myNbOkElements = nbElems;
432 buttonOk->setEnabled(true);
433 buttonApply->setEnabled(true);
436 //=================================================================================
437 // function : SetEditCurrentArgument()
439 //=================================================================================
440 void SMESHGUI_RemoveElementsDlg::SetEditCurrentArgument()
442 QPushButton* send = (QPushButton*)sender();
443 switch (myConstructorId)
445 case 0: /* default constructor */
447 if(send == SelectButtonC1A1) {
448 LineEditC1A1->setFocus();
449 myEditCurrentArgument = LineEditC1A1;
451 SelectionIntoArgument();
458 //=================================================================================
459 // function : DeactivateActiveDialog()
461 //=================================================================================
462 void SMESHGUI_RemoveElementsDlg::DeactivateActiveDialog()
464 if (GroupConstructors->isEnabled()) {
465 GroupConstructors->setEnabled(false);
466 GroupC1->setEnabled(false);
467 GroupButtons->setEnabled(false);
468 mySMESHGUI->ResetState(); // ??
469 mySMESHGUI->SetActiveDialogBox(0); // ??
473 //=================================================================================
474 // function : ActivateThisDialog()
476 //=================================================================================
477 void SMESHGUI_RemoveElementsDlg::ActivateThisDialog()
479 /* Emit a signal to deactivate the active dialog */
480 mySMESHGUI->EmitSignalDeactivateDialog();
482 GroupConstructors->setEnabled(true);
483 GroupC1->setEnabled(true);
484 GroupButtons->setEnabled(true);
486 mySMESHGUI->SetActiveDialogBox((QDialog*)this); // ??
488 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
489 aViewWindow->SetSelectionMode(NodeSelection);
491 SelectionIntoArgument(); // ??
494 //=================================================================================
495 // function : enterEvent()
497 //=================================================================================
498 void SMESHGUI_RemoveElementsDlg::enterEvent (QEvent*)
500 if (!GroupConstructors->isEnabled())
501 ActivateThisDialog();
504 //=================================================================================
505 // function : closeEvent()
507 //=================================================================================
508 void SMESHGUI_RemoveElementsDlg::closeEvent (QCloseEvent*)
510 /* same than click on cancel button */
511 this->ClickOnCancel();
515 //=======================================================================
516 //function : hideEvent
517 //purpose : caused by ESC key
518 //=======================================================================
519 void SMESHGUI_RemoveElementsDlg::hideEvent (QHideEvent * e)
525 //=================================================================================
526 // function : keyPressEvent()
528 //=================================================================================
529 void SMESHGUI_RemoveElementsDlg::keyPressEvent( QKeyEvent* e )
531 QDialog::keyPressEvent( e );
532 if ( e->isAccepted() )
535 if ( e->key() == Key_F1 )