Salome HOME
Update copyright information
[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 }
126
127 //=================================================================================
128 // function : ClickOnOk()
129 // purpose  : Same than click on apply but close this dialog.
130 //=================================================================================
131 void RepairGUI_RemoveIntWiresDlg::ClickOnOk()
132 {
133   if (ClickOnApply())
134     ClickOnCancel();
135 }
136
137 //=================================================================================
138 // function : ClickOnApply()
139 // purpose  :
140 //=================================================================================
141 bool RepairGUI_RemoveIntWiresDlg::ClickOnApply()
142 {
143   if (!onAccept())
144     return false;
145
146   initName();
147   // activate first line edit
148   GroupPoints->PushButton1->click();
149   return true;
150 }
151
152 //=================================================================================
153 // function : SelectionIntoArgument()
154 // purpose  : Called when selection is changed or on dialog initialization or activation
155 //=================================================================================
156 void RepairGUI_RemoveIntWiresDlg::SelectionIntoArgument()
157 {
158   myEditCurrentArgument->setText("");
159   // the second argument depends on the first one
160   GroupPoints->LineEdit2->setText("");
161   myWiresInd->length(0);
162
163   if (myEditCurrentArgument == GroupPoints->LineEdit1)
164     myObject = GEOM::GEOM_Object::_nil();
165
166   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
167   SALOME_ListIO aSelList;
168   aSelMgr->selectedObjects(aSelList);
169
170   if (aSelList.Extent() == 1) {
171     Handle(SALOME_InteractiveObject) anIO = aSelList.First();
172
173     if (myEditCurrentArgument == GroupPoints->LineEdit1) { // face selection
174       Standard_Boolean aRes;
175       myObject = GEOMBase::ConvertIOinGEOMObject(anIO, aRes);
176       if (aRes && GEOMBase::IsShape(myObject)) {
177         myEditCurrentArgument->setText(GEOMBase::GetName(myObject));
178
179         // clear selection
180         disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
181         myGeomGUI->getApp()->selectionMgr()->clearSelected();
182         connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
183                 this, SLOT(SelectionIntoArgument()));
184
185         if (!GroupPoints->CheckButton1->isChecked())
186           GroupPoints->PushButton2->click();
187       }
188       else
189         myObject = GEOM::GEOM_Object::_nil();
190     }
191     else if (myEditCurrentArgument == GroupPoints->LineEdit2 &&
192              !GroupPoints->CheckButton1->isChecked()) {
193       TColStd_IndexedMapOfInteger aMap;
194       aSelMgr->GetIndexes(anIO, aMap);
195       const int n = aMap.Extent();
196       myWiresInd->length(n);
197       for (int i = 1; i <= n; i++)
198         myWiresInd[i-1] = aMap(i);
199       if (n)
200         myEditCurrentArgument->setText(QString::number(n) + "_" + tr("GEOM_WIRE") + tr("_S_"));
201     }
202   }
203 }
204
205 //=================================================================================
206 // function : SetEditCurrentArgument()
207 // purpose  :
208 //=================================================================================
209 void RepairGUI_RemoveIntWiresDlg::SetEditCurrentArgument()
210 {
211   QPushButton* send = (QPushButton*)sender();
212
213   bool isEffective = false;
214
215   if (send == GroupPoints->PushButton1) {
216     isEffective = true;
217     myEditCurrentArgument = GroupPoints->LineEdit1;
218
219     GroupPoints->PushButton2->setDown(false);
220     GroupPoints->LineEdit2->setEnabled(false);
221   }
222   else if (send == GroupPoints->PushButton2 && !myObject->_is_nil()) {
223     isEffective = true;
224     myEditCurrentArgument = GroupPoints->LineEdit2;
225
226     GroupPoints->PushButton1->setDown(false);
227     GroupPoints->LineEdit1->setEnabled(false);
228   }
229
230   if (isEffective) {
231     initSelection();
232
233     // enable line edit
234     myEditCurrentArgument->setEnabled(true);
235     myEditCurrentArgument->setFocus();
236     // after setFocus(), because it will be setDown(false) when loses focus
237     send->setDown(true);
238   }
239 }
240
241 //=================================================================================
242 // function : LineEditReturnPressed()
243 // purpose  :
244 //=================================================================================
245 void RepairGUI_RemoveIntWiresDlg::LineEditReturnPressed()
246 {
247   const QObject* send = sender();
248   if (send == GroupPoints->LineEdit1 || send == GroupPoints->LineEdit2) {
249     myEditCurrentArgument = (QLineEdit*)send;
250     GEOMBase_Skeleton::LineEditReturnPressed();
251   }
252 }
253
254 //=================================================================================
255 // function : ActivateThisDialog()
256 // purpose  :
257 //=================================================================================
258 void RepairGUI_RemoveIntWiresDlg::ActivateThisDialog()
259 {
260   GEOMBase_Skeleton::ActivateThisDialog();
261   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
262            this, SLOT( SelectionIntoArgument() ) );
263
264   myEditCurrentArgument = GroupPoints->LineEdit1;
265   myEditCurrentArgument->setText( "" );
266   GroupPoints->LineEdit2->setText( "" );
267   myObject = GEOM::GEOM_Object::_nil();
268   myWiresInd->length( 0 );
269
270   //myGeomGUI->SetState( 0 );
271   initSelection();
272 }
273
274 //=================================================================================
275 // function : enterEvent()
276 // purpose  : Mouse enter onto the dialog to activate it
277 //=================================================================================
278 void RepairGUI_RemoveIntWiresDlg::enterEvent (QEvent*)
279 {
280   if (!mainFrame()->GroupConstructors->isEnabled())
281     ActivateThisDialog();
282 }
283
284 //=================================================================================
285 // function : createOperation
286 // purpose  :
287 //=================================================================================
288 GEOM::GEOM_IOperations_ptr RepairGUI_RemoveIntWiresDlg::createOperation()
289 {
290   return getGeomEngine()->GetIHealingOperations(getStudyId());
291 }
292
293 //=================================================================================
294 // function : isValid
295 // purpose  :
296 //=================================================================================
297 bool RepairGUI_RemoveIntWiresDlg::isValid (QString&)
298 {
299   return !myObject->_is_nil() && (GroupPoints->CheckButton1->isChecked() || myWiresInd->length());
300 }
301
302 //=================================================================================
303 // function : execute
304 // purpose  :
305 //=================================================================================
306 bool RepairGUI_RemoveIntWiresDlg::execute (ObjectList& objects)
307 {
308   GEOM::GEOM_Object_var anObj = GEOM::GEOM_IHealingOperations::_narrow(getOperation())->
309     RemoveIntWires(myObject, myWiresInd);
310
311   bool aResult = !anObj->_is_nil();
312   if (aResult)
313     objects.push_back(anObj._retn());
314
315   return aResult;
316 }
317
318 //=================================================================================
319 // function : onRemoveAllClicked
320 // purpose  :
321 //=================================================================================
322 void RepairGUI_RemoveIntWiresDlg::onRemoveAllClicked()
323 {
324   bool b = GroupPoints->CheckButton1->isChecked();
325   GroupPoints->TextLabel2->setEnabled(!b);
326   GroupPoints->PushButton2->setEnabled(!b);
327   GroupPoints->LineEdit2->setEnabled(!b);
328   if (b) {
329     GroupPoints->LineEdit2->setText("");
330     myWiresInd->length(0);
331   }
332 }
333
334 //=================================================================================
335 // function : initSelection
336 // purpose  :
337 //=================================================================================
338 void RepairGUI_RemoveIntWiresDlg::initSelection()
339 {
340   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
341
342   if (myEditCurrentArgument == GroupPoints->LineEdit1) {
343     TColStd_MapOfInteger aTypes;
344     aTypes.Add(GEOM_COMPOUND);
345     aTypes.Add(GEOM_SOLID);
346     aTypes.Add(GEOM_SHELL);
347     aTypes.Add(GEOM_FACE);
348
349     globalSelection(aTypes);
350   }
351   else if (myEditCurrentArgument == GroupPoints->LineEdit2) {
352     //localSelection(myObject, TopAbs_EDGE);
353     localSelection(myObject, TopAbs_WIRE);
354   }
355
356   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
357           this, SLOT(SelectionIntoArgument()));
358 }