Salome HOME
79e7e1bac5bc58a4fa900720ed73701543b49c09
[modules/geom.git] / src / GenerationGUI / GenerationGUI_RevolDlg.cxx
1 //  GEOM GEOMGUI : GUI for Geometry 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   : GenerationGUI_RevolDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 using namespace std;
30 #include "GenerationGUI_RevolDlg.h"
31
32 #include <gp_Lin.hxx>
33 #include <BRepAdaptor_Curve.hxx>
34 #include <BRepPrimAPI_MakeRevol.hxx>
35 #include "QAD_Config.h"
36
37 //=================================================================================
38 // class    : GenerationGUI_RevolDlg()
39 // purpose  : Constructs a GenerationGUI_RevolDlg which is a child of 'parent', with the 
40 //            name 'name' and widget flags set to 'f'.
41 //            The dialog will by default be modeless, unless you set 'modal' to
42 //            TRUE to construct a modal dialog.
43 //=================================================================================
44 GenerationGUI_RevolDlg::GenerationGUI_RevolDlg(QWidget* parent, const char* name, GenerationGUI* theGenerationGUI, SALOME_Selection* Sel, bool modal, WFlags fl)
45   :GEOMBase_Skeleton(parent, name, Sel, modal, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
46 {
47   QPixmap image0(QAD_Desktop::getResourceManager()->loadPixmap("GEOM",tr("ICON_DLG_REVOL")));
48   QPixmap image1(QAD_Desktop::getResourceManager()->loadPixmap("GEOM",tr("ICON_SELECT")));
49
50   setCaption(tr("GEOM_REVOLUTION_TITLE"));
51
52   /***************************************************************/
53   GroupConstructors->setTitle(tr("GEOM_REVOLUTION"));
54   RadioButton1->setPixmap(image0);
55   RadioButton2->close(TRUE);
56   RadioButton3->close(TRUE);
57
58   GroupPoints = new DlgRef_2Sel1Spin1Check(this, "GroupPoints");
59   GroupPoints->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
60   GroupPoints->TextLabel1->setText(tr("GEOM_OBJECT"));
61   GroupPoints->TextLabel2->setText(tr("GEOM_AXIS"));
62   GroupPoints->TextLabel3->setText(tr("GEOM_ANGLE"));
63   GroupPoints->CheckButton1->setText(tr("GEOM_REVERSE"));
64   GroupPoints->PushButton1->setPixmap(image1);
65   GroupPoints->PushButton2->setPixmap(image1);
66
67   Layout1->addWidget(GroupPoints, 1, 0);
68   /***************************************************************/
69
70   /* Initialisations */
71   myGenerationGUI = theGenerationGUI;
72   Init();
73 }
74
75
76 //=================================================================================
77 // function : ~GenerationGUI_RevolDlg()
78 // purpose  : Destroys the object and frees any allocated resources
79 //=================================================================================
80 GenerationGUI_RevolDlg::~GenerationGUI_RevolDlg()
81 {
82   // no need to delete child widgets, Qt does it all for us
83 }
84
85
86 //=================================================================================
87 // function : Init()
88 // purpose  :
89 //=================================================================================
90 void GenerationGUI_RevolDlg::Init()
91 {
92   /* init variables */
93   myEditCurrentArgument = GroupPoints->LineEdit1;
94
95   myAngle = 45.0;
96   myOkBase = myOkAxis = false;
97
98   myEdgeFilter = new GEOM_ShapeTypeFilter(TopAbs_EDGE, myGeom);
99
100   double SpecificStep = 5;
101   /* min, max, step and decimals for spin boxes & initial values */
102   GroupPoints->SpinBox_DX->RangeStepAndValidator(-999.999, 999.999, SpecificStep, 3);
103   GroupPoints->SpinBox_DX->SetValue(myAngle);
104
105   /* signals and slots connections */
106   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
107   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
108
109   connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
110   connect(GroupPoints->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
111
112   connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
113   connect(GroupPoints->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
114
115   connect(GroupPoints->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
116   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupPoints->SpinBox_DX, SLOT(SetStep(double)));
117
118   connect(GroupPoints->CheckButton1, SIGNAL(stateChanged(int)), this, SLOT(ReverseAngle(int)));
119   
120   connect(mySelection, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument())) ;
121
122   /* displays Dialog */
123   GroupPoints->show();
124   this->show();
125
126   return;
127 }
128
129
130 //=================================================================================
131 // function : ClickOnOk()
132 // purpose  :
133 //=================================================================================
134 void GenerationGUI_RevolDlg::ClickOnOk()
135 {
136   this->ClickOnApply();
137   ClickOnCancel();
138   return;
139 }
140
141
142 //=================================================================================
143 // function : ClickOnApply()
144 // purpose  :
145 //=================================================================================
146 void GenerationGUI_RevolDlg::ClickOnApply()
147 {
148   QAD_Application::getDesktop()->putInfo(tr(""));
149   if (mySimulationTopoDs.IsNull())
150     return;
151   myGeomBase->EraseSimulationShape();
152   mySimulationTopoDs.Nullify();
153
154   if(myOkBase && myOkAxis)
155     myGenerationGUI->MakeRevolutionAndDisplay(myGeomShape, myLoc, myDir, myAngle*PI180); 
156   return;
157 }
158
159
160 //=================================================================================
161 // function : SelectionIntoArgument()
162 // purpose  : Called when selection as changed or other case
163 //=================================================================================
164 void GenerationGUI_RevolDlg::SelectionIntoArgument()
165 {
166   myGeomBase->EraseSimulationShape();
167   mySimulationTopoDs.Nullify();
168   myEditCurrentArgument->setText("");
169   QString aString = ""; /* name of selection */
170   
171   int nbSel = myGeomBase->GetNameOfSelectedIObjects(mySelection, aString);
172   if(nbSel != 1) {
173     if(myEditCurrentArgument == GroupPoints->LineEdit1)
174       myOkBase = false;
175     else if(myEditCurrentArgument == GroupPoints->LineEdit2)
176       myOkAxis = false;
177     return;
178   }
179   
180   // nbSel == 1
181   TopoDS_Shape S; 
182   Standard_Boolean testResult;
183   Handle(SALOME_InteractiveObject) IO = mySelection->firstIObject();
184   if(!myGeomBase->GetTopoFromSelection(mySelection, S))
185     return;
186     
187   if(myEditCurrentArgument == GroupPoints->LineEdit1) {
188     myGeomShape = myGeomBase->ConvertIOinGEOMShape(IO, testResult);
189     if(!testResult)
190       return;
191     TopAbs_ShapeEnum aType = S.ShapeType();
192     if(aType != TopAbs_VERTEX && aType != TopAbs_EDGE && aType != TopAbs_WIRE && aType != TopAbs_FACE && aType != TopAbs_SHELL && aType != TopAbs_COMPOUND)
193       return;
194     myEditCurrentArgument->setText(aString);
195     myOkBase = true;
196     myBase = S;
197   }
198   else if(myEditCurrentArgument == GroupPoints->LineEdit2) {
199     BRepAdaptor_Curve curv(TopoDS::Edge(S));
200     myDir = curv.Line().Direction();
201     myLoc = curv.Line().Location();
202     myEditCurrentArgument->setText(aString);
203     myOkAxis = true;
204   }
205
206   if(myOkBase && myOkAxis)
207     this->MakeRevolutionSimulationAndDisplay();
208   return; 
209 }
210
211
212 //=================================================================================
213 // function : SetEditCurrentArgument()
214 // purpose  :
215 //=================================================================================
216 void GenerationGUI_RevolDlg::SetEditCurrentArgument()
217 {
218   QPushButton* send = (QPushButton*)sender();
219   mySelection->ClearFilters();
220
221   if(send == GroupPoints->PushButton1) {
222     GroupPoints->LineEdit1->setFocus();
223     myEditCurrentArgument = GroupPoints->LineEdit1;
224   }
225   else if(send == GroupPoints->PushButton2) {
226     GroupPoints->LineEdit2->setFocus();
227     myEditCurrentArgument = GroupPoints->LineEdit2;
228     mySelection->AddFilter(myEdgeFilter);
229   }
230   this->SelectionIntoArgument();
231
232   return;
233 }
234
235
236 //=================================================================================
237 // function : LineEditReturnPressed()
238 // purpose  :
239 //=================================================================================
240 void GenerationGUI_RevolDlg::LineEditReturnPressed()
241 {  
242   QLineEdit* send = (QLineEdit*)sender();
243   if(send == GroupPoints->LineEdit1)
244     myEditCurrentArgument = GroupPoints->LineEdit1;
245   else if (send == GroupPoints->LineEdit2)
246     myEditCurrentArgument = GroupPoints->LineEdit2;
247   else
248     return;
249
250   GEOMBase_Skeleton::LineEditReturnPressed();
251   return;
252 }
253
254
255 //=================================================================================
256 // function : ActivateThisDialog()
257 // purpose  :
258 //=================================================================================
259 void GenerationGUI_RevolDlg::ActivateThisDialog()
260 {
261   GEOMBase_Skeleton::ActivateThisDialog();
262   connect(mySelection, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
263   GroupPoints->LineEdit1->setFocus();
264   myEditCurrentArgument = GroupPoints->LineEdit1;
265   if(!mySimulationTopoDs.IsNull())
266     myGeomBase->DisplaySimulationShape(mySimulationTopoDs);
267   return;
268 }
269
270
271 //=================================================================================
272 // function : enterEvent()
273 // purpose  :
274 //=================================================================================
275 void GenerationGUI_RevolDlg::enterEvent(QEvent* e)
276 {
277   if (GroupConstructors->isEnabled())
278     return;
279   this->ActivateThisDialog();
280   return;
281 }
282
283
284 //=================================================================================
285 // function : ValueChangedInSpinBox()
286 // purpose  :
287 //=================================================================================
288 void GenerationGUI_RevolDlg::ValueChangedInSpinBox(double newValue)
289 {  
290   myAngle = newValue;
291   if(myOkBase && myOkAxis)
292     this->MakeRevolutionSimulationAndDisplay();
293   return;
294 }
295
296
297 //=================================================================================
298 // function : ReverseAngle()
299 // purpose  : 'state' not used here
300 //=================================================================================
301 void GenerationGUI_RevolDlg::ReverseAngle(int state)
302 {
303   myAngle = -myAngle;
304   GroupPoints->SpinBox_DX->SetValue(myAngle);
305   if(myOkBase && myOkAxis)
306     this->MakeRevolutionSimulationAndDisplay();
307   return;
308 }
309
310
311 //=================================================================================
312 // function : MakeRevolutionSimulationAndDisplay()
313 // purpose  :
314 //=================================================================================
315 void GenerationGUI_RevolDlg::MakeRevolutionSimulationAndDisplay() 
316 {
317   myGeomBase->EraseSimulationShape();
318   mySimulationTopoDs.Nullify();
319
320   TopAbs_ShapeEnum aType = myBase.ShapeType();
321   if(aType != TopAbs_VERTEX && aType != TopAbs_EDGE && aType != TopAbs_WIRE && aType != TopAbs_FACE && aType != TopAbs_SHELL && aType !=TopAbs_COMPOUND)
322     return;
323
324   try {
325     gp_Ax1 AX(myLoc, myDir);
326     mySimulationTopoDs = BRepPrimAPI_MakeRevol(myBase, AX, myAngle*PI180);
327     myGeomBase->DisplaySimulationShape(mySimulationTopoDs);
328   }
329   catch(Standard_Failure) {
330     MESSAGE("Exception catched in MakeRevolutionSimulationAndDisplay");
331     return;
332   }
333   return;
334 }