Salome HOME
Fix for bug IPAL9258(/dn06/../current1706): SIGSEGV after trying to close dialog...
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_NodesDlg.cxx
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21 //
22 //
23 //
24 //  File   : SMESHGUI_NodesDlg.cxx
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #include "SMESHGUI_NodesDlg.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
37 #include "SMESH_Actor.h"
38 #include "SMESH_ActorUtils.h"
39 #include "SMESH_ObjectDef.h"
40
41 #include "SMDS_Mesh.hxx"
42 #include "SMDS_MeshNode.hxx"
43
44 #include "SUIT_Session.h"
45 #include "SUIT_OverrideCursor.h"
46 #include "SUIT_ViewWindow.h"
47 #include "SUIT_ViewManager.h"
48 #include "SUIT_MessageBox.h"
49 #include "SUIT_Desktop.h"
50
51 #include "SalomeApp_Study.h"
52 #include "SalomeApp_SelectionMgr.h"
53
54 #include "SVTK_Selector.h"
55 #include "SVTK_ViewWindow.h"
56
57 #include "SALOME_Actor.h"
58 #include "SALOME_ListIO.hxx"
59
60 #include "utilities.h"
61
62 // VTK Includes
63 #include <vtkCell.h>
64 #include <vtkIdList.h>
65 #include <vtkIntArray.h>
66 #include <vtkCellArray.h>
67 #include <vtkUnsignedCharArray.h>
68 #include <vtkUnstructuredGrid.h>
69 #include <vtkDataSetMapper.h>
70 #include <vtkActorCollection.h>
71 #include <vtkRenderer.h>
72
73 // QT Includes
74 #include <qbuttongroup.h>
75 #include <qframe.h>
76 #include <qgroupbox.h>
77 #include <qlabel.h>
78 #include <qlineedit.h>
79 #include <qpushbutton.h>
80 #include <qradiobutton.h>
81 #include <qlayout.h>
82 #include <qvariant.h>
83 #include <qtooltip.h>
84 #include <qwhatsthis.h>
85 #include <qimage.h>
86 #include <qpixmap.h>
87 #include <qvalidator.h>
88 #include <qevent.h>
89
90 using namespace std;
91
92
93 namespace SMESH {
94
95   void AddNode (SMESH::SMESH_Mesh_ptr theMesh, float x, float y, float z)
96   {
97     SUIT_OverrideCursor wc;
98     try {
99       _PTR(SObject) aSobj = SMESH::FindSObject(theMesh);
100       SMESH::SMESH_MeshEditor_var aMeshEditor = theMesh->GetMeshEditor();
101       aMeshEditor->AddNode(x,y,z);
102       _PTR(Study) aStudy = GetActiveStudyDocument();
103       CORBA::Long anId = aStudy->StudyId();
104       if (TVisualObjPtr aVisualObj = SMESH::GetVisualObj(anId, aSobj->GetID().c_str())) {
105         aVisualObj->Update(true);
106       }
107     } catch (SALOME::SALOME_Exception& exc) {
108       INFOS("Follow exception was cought:\n\t" << exc.details.text);
109     } catch (const std::exception& exc) {
110       INFOS("Follow exception was cought:\n\t" << exc.what());
111     } catch (...) {
112       INFOS("Unknown exception was cought !!!");
113     }
114   }
115
116   class TNodeSimulation {
117     SVTK_ViewWindow* myViewWindow;
118
119     SALOME_Actor *myPreviewActor;
120     vtkDataSetMapper* myMapper;
121     vtkPoints* myPoints;
122
123   public:
124     TNodeSimulation(SVTK_ViewWindow* theViewWindow):
125       myViewWindow(theViewWindow)
126     {
127       vtkUnstructuredGrid* aGrid = vtkUnstructuredGrid::New();
128
129       // Create points
130       myPoints = vtkPoints::New();
131       myPoints->SetNumberOfPoints(1);
132       myPoints->SetPoint(0,0.0,0.0,0.0);
133
134       // Create cells
135       vtkIdList *anIdList = vtkIdList::New();
136       anIdList->SetNumberOfIds(1);
137
138       vtkCellArray *aCells = vtkCellArray::New();
139       aCells->Allocate(2, 0);
140
141       vtkUnsignedCharArray* aCellTypesArray = vtkUnsignedCharArray::New();
142       aCellTypesArray->SetNumberOfComponents(1);
143       aCellTypesArray->Allocate(1);
144
145       anIdList->SetId(0, 0);
146       aCells->InsertNextCell(anIdList);
147       aCellTypesArray->InsertNextValue(VTK_VERTEX);
148
149       vtkIntArray* aCellLocationsArray = vtkIntArray::New();
150       aCellLocationsArray->SetNumberOfComponents(1);
151       aCellLocationsArray->SetNumberOfTuples(1);
152
153       aCells->InitTraversal();
154       vtkIdType npts;
155       aCellLocationsArray->SetValue(0, aCells->GetTraversalLocation(npts));
156
157       aGrid->SetCells(aCellTypesArray, aCellLocationsArray, aCells);
158
159       aGrid->SetPoints(myPoints);
160       aGrid->SetCells(aCellTypesArray, aCellLocationsArray,aCells);
161       aCellLocationsArray->Delete();
162       aCellTypesArray->Delete();
163       aCells->Delete();
164       anIdList->Delete();
165
166       // Create and display actor
167       myMapper = vtkDataSetMapper::New();
168       myMapper->SetInput(aGrid);
169       aGrid->Delete();
170
171       myPreviewActor = SALOME_Actor::New();
172       myPreviewActor->SetInfinitive(true);
173       myPreviewActor->VisibilityOff();
174       myPreviewActor->PickableOff();
175       myPreviewActor->SetMapper(myMapper);
176
177       vtkProperty* aProp = vtkProperty::New();
178       aProp->SetRepresentationToPoints();
179
180       float anRGB[3];
181       GetColor( "SMESH", "node_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 255, 0 ) );
182       aProp->SetColor( anRGB[0], anRGB[1], anRGB[2] );
183
184       float aPointSize = GetFloat( "SMESH:node_size", 3 );
185       aProp->SetPointSize( aPointSize );
186
187       myPreviewActor->SetProperty( aProp );
188       aProp->Delete();
189
190       myViewWindow->AddActor(myPreviewActor);
191     }
192
193     void SetPosition (float x, float y, float z)
194     {
195       myPoints->SetPoint(0,x,y,z);
196       myPoints->Modified();
197       SetVisibility(true);
198     }
199
200     void SetVisibility (bool theVisibility)
201     {
202       myPreviewActor->SetVisibility(theVisibility);
203       RepaintCurrentView();
204     }
205
206     ~TNodeSimulation()
207     {
208       myViewWindow->RemoveActor(myPreviewActor);
209       myPreviewActor->Delete();
210
211       myMapper->RemoveAllInputs();
212       myMapper->Delete();
213
214       myPoints->Delete();
215     }
216   };
217 }
218
219 //=================================================================================
220 // class    : SMESHGUI_NodesDlg()
221 // purpose  :
222 //=================================================================================
223 SMESHGUI_NodesDlg::SMESHGUI_NodesDlg (SMESHGUI* theModule,
224                                       const char* name,
225                                       bool modal,
226                                       WFlags fl): 
227   QDialog(SMESH::GetDesktop(theModule), 
228           name, 
229           modal, 
230           WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu | Qt::WDestructiveClose),
231   mySelector(SMESH::GetViewWindow(theModule)->GetSelector()),
232   mySelectionMgr(SMESH::GetSelectionMgr(theModule)),
233   mySMESHGUI(theModule)
234 {
235   mySimulation = new SMESH::TNodeSimulation(SMESH::GetViewWindow( mySMESHGUI ));
236
237   QPixmap image0 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_DLG_NODE")));
238   if (!name)
239     setName("SMESHGUI_NodesDlg");
240   resize(303, 185);
241   setCaption(tr("MESH_NODE_TITLE"));
242   setSizeGripEnabled(TRUE);
243   SMESHGUI_NodesDlgLayout = new QGridLayout(this);
244   SMESHGUI_NodesDlgLayout->setSpacing(6);
245   SMESHGUI_NodesDlgLayout->setMargin(11);
246
247   /***************************************************************/
248   GroupButtons = new QGroupBox(this, "GroupButtons");
249   GroupButtons->setGeometry(QRect(10, 10, 281, 48));
250   GroupButtons->setTitle(tr("" ));
251   GroupButtons->setColumnLayout(0, Qt::Vertical);
252   GroupButtons->layout()->setSpacing(0);
253   GroupButtons->layout()->setMargin(0);
254   GroupButtonsLayout = new QGridLayout(GroupButtons->layout());
255   GroupButtonsLayout->setAlignment(Qt::AlignTop);
256   GroupButtonsLayout->setSpacing(6);
257   GroupButtonsLayout->setMargin(11);
258   buttonCancel = new QPushButton(GroupButtons, "buttonCancel");
259   buttonCancel->setText(tr("SMESH_BUT_CLOSE" ));
260   buttonCancel->setAutoDefault(TRUE);
261   GroupButtonsLayout->addWidget(buttonCancel, 0, 3);
262   buttonApply = new QPushButton(GroupButtons, "buttonApply");
263   buttonApply->setText(tr("SMESH_BUT_APPLY" ));
264   buttonApply->setAutoDefault(TRUE);
265   GroupButtonsLayout->addWidget(buttonApply, 0, 1);
266   QSpacerItem* spacer_9 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
267   GroupButtonsLayout->addItem(spacer_9, 0, 2);
268   buttonOk = new QPushButton(GroupButtons, "buttonOk");
269   buttonOk->setText(tr("SMESH_BUT_OK" ));
270   buttonOk->setAutoDefault(TRUE);
271   buttonOk->setDefault(TRUE);
272   GroupButtonsLayout->addWidget(buttonOk, 0, 0);
273   SMESHGUI_NodesDlgLayout->addWidget(GroupButtons, 2, 0);
274
275   /***************************************************************/
276   GroupConstructors = new QButtonGroup(this, "GroupConstructors");
277   GroupConstructors->setTitle(tr("MESH_NODE" ));
278   GroupConstructors->setExclusive(TRUE);
279   GroupConstructors->setColumnLayout(0, Qt::Vertical);
280   GroupConstructors->layout()->setSpacing(0);
281   GroupConstructors->layout()->setMargin(0);
282   GroupConstructorsLayout = new QGridLayout(GroupConstructors->layout());
283   GroupConstructorsLayout->setAlignment(Qt::AlignTop);
284   GroupConstructorsLayout->setSpacing(6);
285   GroupConstructorsLayout->setMargin(11);
286   Constructor1 = new QRadioButton(GroupConstructors, "Constructor1");
287   Constructor1->setText(tr("" ));
288   Constructor1->setPixmap(image0);
289   Constructor1->setChecked(TRUE);
290   GroupConstructorsLayout->addWidget(Constructor1, 0, 0);
291   QSpacerItem* spacer_2 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
292   GroupConstructorsLayout->addItem(spacer_2, 0, 1);
293   SMESHGUI_NodesDlgLayout->addWidget(GroupConstructors, 0, 0);
294
295   /***************************************************************/
296   GroupCoordinates = new QGroupBox(this, "GroupCoordinates");
297   GroupCoordinates->setTitle(tr("SMESH_COORDINATES" ));
298   GroupCoordinates->setColumnLayout(0, Qt::Vertical);
299   GroupCoordinates->layout()->setSpacing(0);
300   GroupCoordinates->layout()->setMargin(0);
301   GroupCoordinatesLayout = new QGridLayout(GroupCoordinates->layout());
302   GroupCoordinatesLayout->setAlignment(Qt::AlignTop);
303   GroupCoordinatesLayout->setSpacing(6);
304   GroupCoordinatesLayout->setMargin(11);
305   TextLabel_X = new QLabel(GroupCoordinates, "TextLabel_X");
306   TextLabel_X->setText(tr("SMESH_X" ));
307   GroupCoordinatesLayout->addWidget(TextLabel_X, 0, 0);
308   TextLabel_Y = new QLabel(GroupCoordinates, "TextLabel_Y");
309   TextLabel_Y->setText(tr("SMESH_Y" ));
310   GroupCoordinatesLayout->addWidget(TextLabel_Y, 0, 2);
311
312   TextLabel_Z = new QLabel(GroupCoordinates, "TextLabel_Z");
313   TextLabel_Z->setText(tr("SMESH_Z" ));
314   GroupCoordinatesLayout->addWidget(TextLabel_Z, 0, 4);
315
316   SpinBox_X = new SMESHGUI_SpinBox(GroupCoordinates, "SpinBox_X");
317   GroupCoordinatesLayout->addWidget(SpinBox_X, 0, 1);
318
319   SpinBox_Y = new SMESHGUI_SpinBox(GroupCoordinates, "SpinBox_Y");
320   GroupCoordinatesLayout->addWidget(SpinBox_Y, 0, 3);
321
322   SpinBox_Z = new SMESHGUI_SpinBox(GroupCoordinates, "SpinBox_Z");
323   GroupCoordinatesLayout->addWidget(SpinBox_Z, 0, 5);
324
325   SMESHGUI_NodesDlgLayout->addWidget(GroupCoordinates, 1, 0);
326
327   /* Initialisation and display */
328   Init();
329 }
330
331 //=======================================================================
332 // function : ~SMESHGUI_NodesDlg()
333 // purpose  : Destructor
334 //=======================================================================
335 SMESHGUI_NodesDlg::~SMESHGUI_NodesDlg()
336 {
337   delete mySimulation;
338 }
339
340 //=================================================================================
341 // function : Init()
342 // purpose  :
343 //=================================================================================
344 void SMESHGUI_NodesDlg::Init ()
345 {
346   /* Get setting of step value from file configuration */
347   double step;
348   // QString St = SUIT_CONFIG->getSetting("xxxxxxxxxxxxx");  TODO
349   // step = St.toDouble();                                    TODO
350   step = 25.0;
351
352   /* min, max, step and decimals for spin boxes */
353   SpinBox_X->RangeStepAndValidator(-999.999, +999.999, step, 3);
354   SpinBox_Y->RangeStepAndValidator(-999.999, +999.999, step, 3);
355   SpinBox_Z->RangeStepAndValidator(-999.999, +999.999, step, 3);
356   SpinBox_X->SetValue(0.0);
357   SpinBox_Y->SetValue(0.0);
358   SpinBox_Z->SetValue(0.0);
359
360   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
361
362   /* signals and slots connections */
363   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
364   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
365   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
366
367   connect(SpinBox_X, SIGNAL (valueChanged(double)), SLOT(ValueChangedInSpinBox(double)));
368   connect(SpinBox_Y, SIGNAL (valueChanged(double)), SLOT(ValueChangedInSpinBox(double)));
369   connect(SpinBox_Z, SIGNAL (valueChanged(double)), SLOT(ValueChangedInSpinBox(double)));
370
371   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), SLOT(SelectionIntoArgument()));
372   connect(mySMESHGUI, SIGNAL (SignalDeactivateActiveDialog()), SLOT(DeactivateActiveDialog()));
373   /* to close dialog if study frame change */
374   connect(mySMESHGUI, SIGNAL (SignalStudyFrameChanged()), SLOT(ClickOnCancel()));
375
376   /* Move widget on the botton right corner of main widget */
377   int x, y;
378   mySMESHGUI->DefineDlgPosition(this, x, y);
379   this->move(x, y);
380   this->show();
381
382   // set selection mode
383   SMESH::SetPointRepresentation(true);
384   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
385     aViewWindow->SetSelectionMode(NodeSelection);
386
387   SelectionIntoArgument();
388 }
389
390 //=================================================================================
391 // function : ValueChangedInSpinBox()
392 // purpose  :
393 //=================================================================================
394 void SMESHGUI_NodesDlg::ValueChangedInSpinBox (double newValue)
395 {
396   if (!myMesh->_is_nil()) {
397     double vx = SpinBox_X->GetValue();
398     double vy = SpinBox_Y->GetValue();
399     double vz = SpinBox_Z->GetValue();
400
401     mySimulation->SetPosition(vx,vy,vz);
402   }
403 }
404
405 //=================================================================================
406 // function : ClickOnOk()
407 // purpose  :
408 //=================================================================================
409 void SMESHGUI_NodesDlg::ClickOnOk()
410 {
411   if (ClickOnApply())
412     ClickOnCancel();
413 }
414
415 //=================================================================================
416 // function : ClickOnApply()
417 // purpose  :
418 //=================================================================================
419 bool SMESHGUI_NodesDlg::ClickOnApply()
420 {
421   if (mySMESHGUI->isActiveStudyLocked())
422     return false;
423
424   if (myMesh->_is_nil()) {
425     SUIT_MessageBox::warn1(SMESHGUI::desktop(), tr("SMESH_WRN_WARNING"),
426                            tr("MESH_IS_NOT_SELECTED"), tr("SMESH_BUT_OK"));
427     return false;
428   }
429
430   /* Recup args and call method */
431   double x = SpinBox_X->GetValue();
432   double y = SpinBox_Y->GetValue();
433   double z = SpinBox_Z->GetValue();
434   mySimulation->SetVisibility(false);
435   SMESH::AddNode(myMesh,x,y,z);
436   SMESH::SetPointRepresentation(true);
437
438   // select myMesh
439   SALOME_ListIO aList;
440   mySelectionMgr->selectedObjects(aList);
441   if (aList.Extent() != 1) {
442     if (SVTK_ViewWindow* aViewWindow = SMESH::GetCurrentVtkView()) {
443       vtkActorCollection *aCollection = aViewWindow->getRenderer()->GetActors();
444       aCollection->InitTraversal();
445       while (vtkActor *anAct = aCollection->GetNextActor()) {
446         if (SMESH_Actor *anActor = dynamic_cast<SMESH_Actor*>(anAct)) {
447           if (anActor->hasIO()) {
448             if (SMESH_MeshObj *aMeshObj = dynamic_cast<SMESH_MeshObj*>(anActor->GetObject().get())) {
449               if (myMesh->_is_equivalent(aMeshObj->GetMeshServer())) {
450                 aList.Clear();
451                 aList.Append(anActor->getIO());
452                 mySelectionMgr->setSelectedObjects(aList, false);
453                 break;
454               }
455             }
456           }
457         }
458       }
459     }
460   }
461   return true;
462 }
463
464 //=================================================================================
465 // function : ClickOnCancel()
466 // purpose  :
467 //=================================================================================
468 void SMESHGUI_NodesDlg::ClickOnCancel()
469 {
470   disconnect(mySelectionMgr, 0, this, 0);
471   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
472     aViewWindow->SetSelectionMode(ActorSelection);
473
474   mySimulation->SetVisibility(false);
475   SMESH::SetPointRepresentation(false);
476   mySMESHGUI->ResetState();
477
478   reject();
479 }
480
481 //=================================================================================
482 // function : SelectionIntoArgument()
483 // purpose  : Called when selection as changed or other case
484 //=================================================================================
485 void SMESHGUI_NodesDlg::SelectionIntoArgument()
486 {
487   if (!GroupConstructors->isEnabled())
488     return;
489
490   mySimulation->SetVisibility(false);
491   SMESH::SetPointRepresentation(true);
492
493   const SALOME_ListIO& aList = mySelector->StoredIObjects();
494   if (aList.Extent() == 1) {
495     Handle(SALOME_InteractiveObject) anIO = aList.First();
496     if (anIO->hasEntry()) {
497       myMesh = SMESH::GetMeshByIO(anIO);
498       if (myMesh->_is_nil()) return;
499       QString aText;
500       if (SMESH::GetNameOfSelectedNodes(mySelector,anIO,aText) == 1) {
501         if (SMESH_Actor* anActor = SMESH::FindActorByObject(myMesh.in())) {
502           if (SMDS_Mesh* aMesh = anActor->GetObject()->GetMesh()) {
503             if (const SMDS_MeshNode* aNode = aMesh->FindNode(aText.toInt())) {
504               SpinBox_X->SetValue(aNode->X());
505               SpinBox_Y->SetValue(aNode->Y());
506               SpinBox_Z->SetValue(aNode->Z());
507             }
508           }
509         }
510       }
511       mySimulation->SetPosition(SpinBox_X->GetValue(),
512                                 SpinBox_Y->GetValue(),
513                                 SpinBox_Z->GetValue());
514     }
515   }
516 }
517
518 //=================================================================================
519 // function : closeEvent()
520 // purpose  :
521 //=================================================================================
522 void SMESHGUI_NodesDlg::closeEvent (QCloseEvent*)
523 {
524   this->ClickOnCancel(); /* same than click on cancel button */
525 }
526
527 //=================================================================================
528 // function : hideEvent()
529 // purpose  : caused by ESC key
530 //=================================================================================
531 void SMESHGUI_NodesDlg::hideEvent (QHideEvent*)
532 {
533   if (!isMinimized())
534     ClickOnCancel();
535 }
536
537 //=================================================================================
538 // function : enterEvent()
539 // purpose  : to reactivate this dialog box when mouse enter onto the window
540 //=================================================================================
541 void SMESHGUI_NodesDlg::enterEvent(QEvent*)
542 {
543   if (!GroupConstructors->isEnabled())
544     ActivateThisDialog();
545 }
546
547 //=================================================================================
548 // function : DeactivateActiveDialog()
549 // purpose  : public slot to deactivate if active
550 //=================================================================================
551 void SMESHGUI_NodesDlg::DeactivateActiveDialog()
552 {
553   if (GroupConstructors->isEnabled()) {
554     GroupConstructors->setEnabled(false);
555     GroupCoordinates->setEnabled(false);
556     GroupButtons->setEnabled(false);
557     mySimulation->SetVisibility(false);
558     mySMESHGUI->ResetState();
559     mySMESHGUI->SetActiveDialogBox(0);
560   }
561 }
562
563 //=================================================================================
564 // function : ActivateThisDialog()
565 // purpose  :
566 //=================================================================================
567 void SMESHGUI_NodesDlg::ActivateThisDialog()
568 {
569   mySMESHGUI->EmitSignalDeactivateDialog();
570   GroupConstructors->setEnabled(true);
571   GroupCoordinates->setEnabled(true);
572   GroupButtons->setEnabled(true);
573
574   SMESH::SetPointRepresentation(true);
575   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
576     aViewWindow->SetSelectionMode(NodeSelection);
577
578   SelectionIntoArgument();
579 }