Salome HOME
db8097deed7086e6ef6ccd6082d92bb854e4c16b
[modules/geom.git] / MeasureGUI_NormaleDlg.cxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // GEOM GEOMGUI : GUI for Geometry component
21 // File   : MeasureGUI_NormaleDlg.cxx
22 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S.
23 //
24 #include "MeasureGUI_NormaleDlg.h"
25
26 #include <DlgRef.h>
27 #include <GEOMBase.h>
28 #include <GeometryGUI.h>
29
30 #include <SUIT_Session.h>
31 #include <SUIT_ResourceMgr.h>
32 #include <SalomeApp_Application.h>
33 #include <LightApp_SelectionMgr.h>
34
35 // OCCT Includes
36 #include <TopoDS_Shape.hxx>
37 #include <TopoDS.hxx>
38 #include <TopExp.hxx>
39 #include <TColStd_IndexedMapOfInteger.hxx>
40 #include <TopTools_IndexedMapOfShape.hxx>
41
42 #include <GEOMImpl_Types.hxx>
43
44 //=================================================================================
45 // class    : MeasureGUI_NormaleDlg()
46 // purpose  : Constructs a MeasureGUI_NormaleDlg 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 MeasureGUI_NormaleDlg::MeasureGUI_NormaleDlg (GeometryGUI* theGeometryGUI, QWidget* parent)
52   : GEOMBase_Skeleton(theGeometryGUI, parent, false)
53 {
54   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
55   QPixmap image0 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_NORMALE")));
56   QPixmap image1 (aResMgr->loadPixmap("GEOM", tr("ICON_SELECT")));
57
58   setWindowTitle(tr("GEOM_NORMALE_TITLE"));
59
60   /***************************************************************/
61   mainFrame()->GroupConstructors->setTitle(tr("GEOM_NORMALE"));
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   GroupArgs = new DlgRef_2Sel (centralWidget());
69   GroupArgs->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
70
71   GroupArgs->TextLabel1->setText(tr("GEOM_FACE"));
72   GroupArgs->TextLabel2->setText(tr("GEOM_POINT"));
73
74   GroupArgs->PushButton1->setIcon(image1);
75   GroupArgs->PushButton2->setIcon(image1);
76
77   QVBoxLayout* layout = new QVBoxLayout(centralWidget());
78   layout->setMargin(0); layout->setSpacing(6);
79   layout->addWidget(GroupArgs);
80   /***************************************************************/
81
82   setHelpFileName("using_measurement_tools_page.html#normale_anchor");
83
84   Init();
85 }
86
87 //=================================================================================
88 // function : ~MeasureGUI_NormaleDlg()
89 // purpose  : Destroys the object and frees any allocated resources
90 //=================================================================================
91 MeasureGUI_NormaleDlg::~MeasureGUI_NormaleDlg()
92 {
93 }
94
95 //=================================================================================
96 // function : Init()
97 // purpose  :
98 //=================================================================================
99 void MeasureGUI_NormaleDlg::Init()
100 {
101   // init variables
102   GroupArgs->LineEdit1->setReadOnly(true);
103   GroupArgs->LineEdit2->setReadOnly(true);
104
105   GroupArgs->LineEdit1->setText("");
106   GroupArgs->LineEdit2->setText("");
107   myFace = myPoint = GEOM::GEOM_Object::_nil();
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(GroupArgs->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
114   connect(GroupArgs->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
115
116   connect(GroupArgs->LineEdit1,   SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
117   connect(GroupArgs->LineEdit2,   SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
118
119   initName(tr("GEOM_VECTOR_NORMALE"));
120
121   GroupArgs->PushButton1->click();
122   SelectionIntoArgument();
123 }
124
125 //=================================================================================
126 // function : ClickOnOk()
127 // purpose  :
128 //=================================================================================
129 void MeasureGUI_NormaleDlg::ClickOnOk()
130 {
131   if (ClickOnApply())
132     ClickOnCancel();
133 }
134
135 //=================================================================================
136 // function : ClickOnApply()
137 // purpose  :
138 //=================================================================================
139 bool MeasureGUI_NormaleDlg::ClickOnApply()
140 {
141   if (!onAccept())
142     return false;
143
144   initName();
145   // activate first line edit
146   GroupArgs->PushButton1->click();
147   return true;
148 }
149
150 //=================================================================================
151 // function : SelectionIntoArgument()
152 // purpose  : Called when selection is changed or on dialog initialization or activation
153 //=================================================================================
154 void MeasureGUI_NormaleDlg::SelectionIntoArgument()
155 {
156   erasePreview();
157   myEditCurrentArgument->setText("");
158
159   if (myEditCurrentArgument == GroupArgs->LineEdit1) {
160     myFace = GEOM::GEOM_Object::_nil();
161   }
162   else if (myEditCurrentArgument == GroupArgs->LineEdit2) {
163     myPoint = GEOM::GEOM_Object::_nil();
164   }
165
166   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
167   SALOME_ListIO aSelList;
168   aSelMgr->selectedObjects(aSelList);
169
170   if (aSelList.Extent() != 1)
171     return;
172
173   // nbSel == 1
174   Standard_Boolean testResult = Standard_False;
175   GEOM::GEOM_Object_var aSelectedObject =
176     GEOMBase::ConvertIOinGEOMObject(aSelList.First(), testResult);
177
178   if (!testResult || CORBA::is_nil(aSelectedObject))
179     return;
180
181   QString aName = GEOMBase::GetName(aSelectedObject);
182
183   if (myEditCurrentArgument == GroupArgs->LineEdit1) {
184     TopoDS_Shape aShape;
185     if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull())
186     {
187       TColStd_IndexedMapOfInteger aMap;
188       aSelMgr->GetIndexes(aSelList.First(), aMap);
189       if (aMap.Extent() == 1) // Local Selection
190       {
191         GEOM::GEOM_IShapesOperations_var aShapesOp = getGeomEngine()->GetIShapesOperations(getStudyId());
192         int anIndex = aMap(1);
193         aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
194         aName += QString(":face_%1").arg(anIndex);
195       }
196       else // Global Selection
197       {
198         if (aShape.ShapeType() != TopAbs_FACE) {
199           aSelectedObject = GEOM::GEOM_Object::_nil();
200           aName = "";
201         }
202       }
203     }
204     myFace = aSelectedObject;
205     myEditCurrentArgument->setText(aName);
206
207     // clear selection
208     disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
209     myGeomGUI->getApp()->selectionMgr()->clearSelected();
210     connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
211             this, SLOT(SelectionIntoArgument()));
212
213     if (!myFace->_is_nil() && myPoint->_is_nil())
214       GroupArgs->PushButton2->click();
215   }
216   else if (myEditCurrentArgument == GroupArgs->LineEdit2) {
217     TopoDS_Shape aShape;
218     if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull())
219     {
220       TColStd_IndexedMapOfInteger aMap;
221       aSelMgr->GetIndexes(aSelList.First(), aMap);
222       if (aMap.Extent() == 1) // Local Selection
223       {
224         GEOM::GEOM_IShapesOperations_var aShapesOp = getGeomEngine()->GetIShapesOperations(getStudyId());
225         int anIndex = aMap(1);
226         aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
227         aName += QString(":vertex_%1").arg(anIndex);
228       }
229       else // Global Selection
230       {
231         if (aShape.ShapeType() != TopAbs_VERTEX) {
232           aSelectedObject = GEOM::GEOM_Object::_nil();
233           aName = "";
234         }
235       }
236     }
237     myPoint = aSelectedObject;
238     myEditCurrentArgument->setText(aName);
239
240     // clear selection
241     disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
242     myGeomGUI->getApp()->selectionMgr()->clearSelected();
243     connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
244             this, SLOT(SelectionIntoArgument()));
245
246     if (!myPoint->_is_nil() && myFace->_is_nil())
247       GroupArgs->PushButton1->click();
248   }
249
250   displayPreview();
251 }
252
253 //=================================================================================
254 // function : SetEditCurrentArgument()
255 // purpose  :
256 //=================================================================================
257 void MeasureGUI_NormaleDlg::SetEditCurrentArgument()
258 {
259   QPushButton* send = (QPushButton*)sender();
260
261   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
262   globalSelection(GEOM_FACE);
263
264   if (send == GroupArgs->PushButton1) {
265     myEditCurrentArgument = GroupArgs->LineEdit1;
266
267     GroupArgs->PushButton2->setDown(false);
268     GroupArgs->LineEdit2->setEnabled(false);
269
270     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_FACE);
271   }
272   else if (send == GroupArgs->PushButton2) {
273     myEditCurrentArgument = GroupArgs->LineEdit2;
274
275     GroupArgs->PushButton1->setDown(false);
276     GroupArgs->LineEdit1->setEnabled(false);
277
278     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_VERTEX);
279   }
280   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
281           this, SLOT(SelectionIntoArgument()));
282
283   // enable line edit
284   myEditCurrentArgument->setEnabled(true);
285   myEditCurrentArgument->setFocus();
286   // after setFocus(), because it will be setDown(false) when loses focus
287   send->setDown(true);
288
289   // seems we need it only to avoid preview disappearing, caused by selection mode change
290   displayPreview();
291 }
292
293 //=================================================================================
294 // function : LineEditReturnPressed()
295 // purpose  :
296 //=================================================================================
297 void MeasureGUI_NormaleDlg::LineEditReturnPressed()
298 {
299   QLineEdit* send = (QLineEdit*)sender();
300   if (send == GroupArgs->LineEdit1 ||
301       send == GroupArgs->LineEdit2) {
302     myEditCurrentArgument = send;
303     GEOMBase_Skeleton::LineEditReturnPressed();
304   }
305 }
306
307 //=================================================================================
308 // function : ActivateThisDialog()
309 // purpose  :
310 //=================================================================================
311 void MeasureGUI_NormaleDlg::ActivateThisDialog()
312 {
313   GEOMBase_Skeleton::ActivateThisDialog();
314   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
315            this, SLOT( SelectionIntoArgument() ) );
316
317   displayPreview();
318 }
319
320 //=================================================================================
321 // function : enterEvent()
322 // purpose  :
323 //=================================================================================
324 void MeasureGUI_NormaleDlg::enterEvent (QEvent*)
325 {
326   if (!mainFrame()->GroupConstructors->isEnabled())
327     ActivateThisDialog();
328 }
329
330 //=================================================================================
331 // function : createOperation
332 // purpose  :
333 //=================================================================================
334 GEOM::GEOM_IOperations_ptr MeasureGUI_NormaleDlg::createOperation()
335 {
336   return getGeomEngine()->GetIMeasureOperations(getStudyId());
337 }
338
339 //=================================================================================
340 // function : isValid
341 // purpose  :
342 //=================================================================================
343 bool MeasureGUI_NormaleDlg::isValid (QString&)
344 {
345   //return !CORBA::is_nil(myFace) && !CORBA::is_nil(myPoint);
346   return !CORBA::is_nil(myFace);
347 }
348
349 //=================================================================================
350 // function : execute
351 // purpose  :
352 //=================================================================================
353 bool MeasureGUI_NormaleDlg::execute (ObjectList& objects)
354 {
355   GEOM::GEOM_IMeasureOperations_var anOper = GEOM::GEOM_IMeasureOperations::_narrow( getOperation() );
356   GEOM::GEOM_Object_var anObj = anOper->GetNormal(myFace, myPoint);
357
358   if (!anObj->_is_nil())
359     objects.push_back(anObj._retn());
360
361   return true;
362 }