preparing new UpdateNodeType function
[engrid.git] / deletepickedpoint.cpp
blob5b8fa828218e715af96f3cee1453349788c4a9c0
1 //
2 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3 // + +
4 // + This file is part of enGrid. +
5 // + +
6 // + Copyright 2008,2009 Oliver Gloth +
7 // + +
8 // + enGrid is free software: you can redistribute it and/or modify +
9 // + it under the terms of the GNU General Public License as published by +
10 // + the Free Software Foundation, either version 3 of the License, or +
11 // + (at your option) any later version. +
12 // + +
13 // + enGrid is distributed in the hope that it will be useful, +
14 // + but WITHOUT ANY WARRANTY; without even the implied warranty of +
15 // + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +
16 // + GNU General Public License for more details. +
17 // + +
18 // + You should have received a copy of the GNU General Public License +
19 // + along with enGrid. If not, see <http://www.gnu.org/licenses/>. +
20 // + +
21 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24 #include "deletepickedpoint.h"
26 #include <QObject>
27 #include <QVector>
29 #include "guimainwindow.h"
30 #include "egvtkobject.h"
31 #include "geometrytools.h"
32 using namespace GeometryTools;
34 void DeletePickedPoint::operate()
36 vtkIdType nodeId = GuiMainWindow::pointer()->getPickedPoint();
37 cout<<"You picked "<<nodeId<<endl;
39 int N_newpoints;
40 int N_newcells;
42 SetConvergence(0.0);
43 SetFeatureEdgeSmoothing(1);
44 SetFeatureAngle(45.0);
45 SetEdgeAngle(15.0);
46 SetBoundarySmoothing(1);
48 // QMessageBox::question(GuiMainWindow::pointer(),QObject::tr("Overwrite File? -- Application Name"),QObject::tr("Do you want to overwrite it?"),QMessageBox::Yes,QMessageBox::No);
49 QVector <vtkIdType> Peons;
50 vtkIdType Boss;
51 int BC=0;
53 QMessageBox msgBox;
54 msgBox.setText("Delete point?");
55 msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
56 switch (msgBox.exec()) {
57 case QMessageBox::Yes:
58 cout<<"yes was clicked"<<endl;
59 DeletePoint_2(grid,nodeId,N_newpoints,N_newcells);
60 break;
61 case QMessageBox::No:
62 cout<<"no was clicked"<<endl;
63 Boss=nodeId;
64 getNeighbours(Boss,Peons,BC);
65 cout<<"Boss="<<Boss<<" Peons="<<Peons<<" BC="<<BC<<endl;
66 break;
67 default:
68 // should never be reached
69 break;