Salome HOME
Mantis issue 0020508: EDF 1059 GEOM : Selection of a group in Suppress Faces.
[modules/geom.git] / src / RepairGUI / RepairGUI_RemoveIntWiresDlg.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 // GEOM GEOMGUI : GUI for Geometry component
23 // File   : RepairGUI_RemoveIntWiresDlg.cxx
24 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
25 //
26 #include "RepairGUI_RemoveIntWiresDlg.h"
27
28 #include <DlgRef.h>
29 #include <GeometryGUI.h>
30 #include <GEOMBase.h>
31
32 #include <SUIT_Session.h>
33 #include <SUIT_ResourceMgr.h>
34 #include <SalomeApp_Application.h>
35 #include <LightApp_SelectionMgr.h>
36
37 // OCCT Includes
38 #include <TopAbs.hxx>
39 #include <TColStd_MapOfInteger.hxx>
40 #include <TColStd_IndexedMapOfInteger.hxx>
41
42 #include <GEOMImpl_Types.hxx>
43
44 //=================================================================================
45 // class    : RepairGUI_RemoveIntWiresDlg()
46 // purpose  : Constructs a RepairGUI_RemoveIntWiresDlg  which is a child of 'parent', with the
47 //            name 'name' and widget flags set to 'f'.
48 //            The dialog will by default be modeless, unless you set 'modal' to
49 //            TRUE to construct a modal dialog.
50 //=================================================================================
51 RepairGUI_RemoveIntWiresDlg::RepairGUI_RemoveIntWiresDlg (GeometryGUI* theGeometryGUI, QWidget* parent,
52                                                           bool modal)
53   : GEOMBase_Skeleton(theGeometryGUI, parent, modal)
54 {
55   QPixmap image0 (myGeomGUI->getApp()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_SUPPRESS_INT_WIRES")));
56   QPixmap image1 (myGeomGUI->getApp()->resourceMgr()->loadPixmap("GEOM", tr("ICON_SELECT")));
57
58   setWindowTitle(tr("GEOM_REMOVE_INTERNAL_WIRES_TITLE"));
59
60   /***************************************************************/
61   mainFrame()->GroupConstructors->setTitle(tr("GEOM_REMOVE_INTERNAL_WIRES_TITLE"));
62   mainFrame()->RadioButton1->setIcon(image0);
63   mainFrame()->RadioButton2->setAttribute(Qt::WA_DeleteOnClose);
64   mainFrame()->RadioButton2->close();
65   mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
66   mainFrame()->RadioButton3->close();
67
68   GroupPoints = new DlgRef_1Sel1Check1Sel(centralWidget());
69   GroupPoints->GroupBox1->setTitle(tr("GEOM_INTERNAL_WIRES"));
70   GroupPoints->TextLabel1->setText(tr("GEOM_SELECTED_FACE"));
71   GroupPoints->PushButton1->setIcon(image1);
72   GroupPoints->LineEdit1->setReadOnly(true);
73   GroupPoints->CheckButton1->setText(tr("GEOM_REMOVE_ALL_INT_WIRES"));
74   GroupPoints->TextLabel2->setText(tr("GEOM_WIRES_TO_REMOVE"));
75   GroupPoints->PushButton2->setIcon(image1);
76   GroupPoints->LineEdit2->setReadOnly(true);
77
78   QVBoxLayout* layout = new QVBoxLayout(centralWidget());
79   layout->setMargin(0); layout->setSpacing(6);
80   layout->addWidget(GroupPoints);
81   /***************************************************************/
82
83   setHelpFileName("suppress_internal_wires_operation_page.html");
84
85   Init();
86 }
87
88 //=================================================================================
89 // function : ~RepairGUI_RemoveIntWiresDlg()
90 // purpose  : Destroys the object and frees any allocated resources
91 //=================================================================================
92 RepairGUI_RemoveIntWiresDlg::~RepairGUI_RemoveIntWiresDlg()
93 {
94 }
95
96 //=================================================================================
97 // function : Init()
98 // purpose  :
99 //=================================================================================
100 void RepairGUI_RemoveIntWiresDlg::Init()
101 {
102   // init variables
103   GroupPoints->LineEdit1->clear();
104   GroupPoints->LineEdit2->clear();
105   myObject = GEOM::GEOM_Object::_nil();
106   myWiresInd = new GEOM::short_array();
107   myWiresInd->length(0);
108
109   // signals and slots connections
110   connect(buttonOk(),    SIGNAL(clicked()), this, SLOT(ClickOnOk()));
111   connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
112
113   connect(GroupPoints->PushButton1, SIGNAL(clicked()),       this, SLOT(SetEditCurrentArgument()));
114   connect(GroupPoints->PushButton2, SIGNAL(clicked()),       this, SLOT(SetEditCurrentArgument()));
115
116   connect(GroupPoints->LineEdit1,   SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
117   connect(GroupPoints->LineEdit2,   SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
118
119   connect(GroupPoints->CheckButton1, SIGNAL(clicked()), this, SLOT(onRemoveAllClicked()));
120
121   initName(tr("REMOVE_INT_WIRES_NEW_OBJ_NAME"));
122
123   GroupPoints->PushButton1->click();
124   SelectionIntoArgument();
125   resize(100,100);
126 }
127
128 //=================================================================================
129 // function : ClickOnOk()
130 // purpose  : Same than click on apply but close this dialog.
131 //=================================================================================
132 void RepairGUI_RemoveIntWiresDlg::ClickOnOk()
133 {
134   if (ClickOnApply())
135     ClickOnCancel();
136 }
137
138 //=================================================================================
139 // function : ClickOnApply()
140 // purpose  :
141 //=================================================================================
142 bool RepairGUI_RemoveIntWiresDlg::ClickOnApply()
143 {
144   if (!onAccept())
145     return false;
146
147   initName();
148   // activate first line edit
149   GroupPoints->PushButton1->click();
150   return true;
151 }
152
153 //=================================================================================
154 // function : SelectionIntoArgument()
155 // purpose  : Called when selection is changed or on dialog initialization or activation
156 //=================================================================================
157 void RepairGUI_RemoveIntWiresDlg::SelectionIntoArgument()
158 {
159   myEditCurrentArgument->setText("");
160   // the second argument depends on the first one
161   GroupPoints->LineEdit2->setText("");
162   myWiresInd->length(0);
163
164   if (myEditCurrentArgument == GroupPoints->LineEdit1)
165     myObject = GEOM::GEOM_Object::_nil();
166
167   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
168   SALOME_ListIO aSelList;
169   aSelMgr->selectedObjects(aSelList);
170
171   if (aSelList.Extent() == 1) {
172     Handle(SALOME_InteractiveObject) anIO = aSelList.First();
173
174     if (myEditCurrentArgument == GroupPoints->LineEdit1) { // face selection
175       Standard_Boolean aRes;
176       myObject = GEOMBase::ConvertIOinGEOMObject(anIO, aRes);
177       if (aRes && GEOMBase::IsShape(myObject)) {
178         myEditCurrentArgument->setText(GEOMBase::GetName(myObject));
179
180         // clear selection
181         disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
182         myGeomGUI->getApp()->selectionMgr()->clearSelected();
183         connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
184                 this, SLOT(SelectionIntoArgument()));
185
186         if (!GroupPoints->CheckButton1->isChecked())
187           GroupPoints->PushButton2->click();
188       }
189       else
190         myObject = GEOM::GEOM_Object::_nil();
191     }
192     else if (myEditCurrentArgument == GroupPoints->LineEdit2 &&
193              !GroupPoints->CheckButton1->isChecked()) {
194       TColStd_IndexedMapOfInteger aMap;
195       aSelMgr->GetIndexes(anIO, aMap);
196       const int n = aMap.Extent();
197       myWiresInd->length(n);
198       for (int i = 1; i <= n; i++)
199         myWiresInd[i-1] = aMap(i);
200       if (n)
201         myEditCurrentArgument->setText(QString::number(n) + "_" + tr("GEOM_WIRE") + tr("_S_"));
202     }
203   }
204 }
205
206 //=================================================================================
207 // function : SetEditCurrentArgument()
208 // purpose  :
209 //=================================================================================
210 void RepairGUI_RemoveIntWiresDlg::SetEditCurrentArgument()
211 {
212   QPushButton* send = (QPushButton*)sender();
213
214   bool isEffective = false;
215
216   if (send == GroupPoints->PushButton1) {
217     isEffective = true;
218     myEditCurrentArgument = GroupPoints->LineEdit1;
219
220     GroupPoints->PushButton2->setDown(false);
221     GroupPoints->LineEdit2->setEnabled(false);
222   }
223   else if (send == GroupPoints->PushButton2 && !myObject->_is_nil()) {
224     isEffective = true;
225     myEditCurrentArgument = GroupPoints->LineEdit2;
226
227     GroupPoints->PushButton1->setDown(false);
228     GroupPoints->LineEdit1->setEnabled(false);
229   }
230
231   if (isEffective) {
232     initSelection();
233
234     // enable line edit
235     myEditCurrentArgument->setEnabled(true);
236     myEditCurrentArgument->setFocus();
237     // after setFocus(), because it will be setDown(false) when loses focus
238     send->setDown(true);
239   }
240 }
241
242 //=================================================================================
243 // function : LineEditReturnPressed()
244 // purpose  :
245 //=================================================================================
246 void RepairGUI_RemoveIntWiresDlg::LineEditReturnPressed()
247 {
248   const QObject* send = sender();
249   if (send == GroupPoints->LineEdit1 || send == GroupPoints->LineEdit2) {
250     myEditCurrentArgument = (QLineEdit*)send;
251     GEOMBase_Skeleton::LineEditReturnPressed();
252   }
253 }
254
255 //=================================================================================
256 // function : ActivateThisDialog()
257 // purpose  :
258 //=================================================================================
259 void RepairGUI_RemoveIntWiresDlg::ActivateThisDialog()
260 {
261   GEOMBase_Skeleton::ActivateThisDialog();
262   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
263            this, SLOT( SelectionIntoArgument() ) );
264
265   myEditCurrentArgument = GroupPoints->LineEdit1;
266   myEditCurrentArgument->setText( "" );
267   GroupPoints->LineEdit2->setText( "" );
268   myObject = GEOM::GEOM_Object::_nil();
269   myWiresInd->length( 0 );
270
271   //myGeomGUI->SetState( 0 );
272   initSelection();
273 }
274
275 //=================================================================================
276 // function : enterEvent()
277 // purpose  : Mouse enter onto the dialog to activate it
278 //=================================================================================
279 void RepairGUI_RemoveIntWiresDlg::enterEvent (QEvent*)
280 {
281   if (!mainFrame()->GroupConstructors->isEnabled())
282     ActivateThisDialog();
283 }
284
285 //=================================================================================
286 // function : createOperation
287 // purpose  :
288 //=================================================================================
289 GEOM::GEOM_IOperations_ptr RepairGUI_RemoveIntWiresDlg::createOperation()
290 {
291   return getGeomEngine()->GetIHealingOperations(getStudyId());
292 }
293
294 //=================================================================================
295 // function : isValid
296 // purpose  :
297 //=================================================================================
298 bool RepairGUI_RemoveIntWiresDlg::isValid (QString&)
299 {
300   return !myObject->_is_nil() && (GroupPoints->CheckButton1->isChecked() || myWiresInd->length());
301 }
302
303 //=================================================================================
304 // function : execute
305 // purpose  :
306 //=================================================================================
307 bool RepairGUI_RemoveIntWiresDlg::execute (ObjectList& objects)
308 {
309   GEOM::GEOM_IHealingOperations_var anOper = GEOM::GEOM_IHealingOperations::_narrow(getOperation());
310   GEOM::GEOM_Object_var anObj = anOper->RemoveIntWires(myObject, myWiresInd);
311
312   bool aResult = !anObj->_is_nil();
313   if (aResult)
314     objects.push_back(anObj._retn());
315
316   return aResult;
317 }
318
319 //=================================================================================
320 // function : onRemoveAllClicked
321 // purpose  :
322 //=================================================================================
323 void RepairGUI_RemoveIntWiresDlg::onRemoveAllClicked()
324 {
325   bool b = GroupPoints->CheckButton1->isChecked();
326   GroupPoints->TextLabel2->setEnabled(!b);
327   GroupPoints->PushButton2->setEnabled(!b);
328   GroupPoints->LineEdit2->setEnabled(!b);
329   if (b) {
330     GroupPoints->LineEdit2->setText("");
331     myWiresInd->length(0);
332   }
333 }
334
335 //=================================================================================
336 // function : initSelection
337 // purpose  :
338 //=================================================================================
339 void RepairGUI_RemoveIntWiresDlg::initSelection()
340 {
341   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
342
343   if (myEditCurrentArgument == GroupPoints->LineEdit1) {
344     TColStd_MapOfInteger aTypes;
345     aTypes.Add(GEOM_COMPOUND);
346     aTypes.Add(GEOM_SOLID);
347     aTypes.Add(GEOM_SHELL);
348     aTypes.Add(GEOM_FACE);
349
350     globalSelection(aTypes);
351   }
352   else if (myEditCurrentArgument == GroupPoints->LineEdit2) {
353     //localSelection(myObject, TopAbs_EDGE);
354     localSelection(myObject, TopAbs_WIRE);
355   }
356
357   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
358           this, SLOT(SelectionIntoArgument()));
359 }