Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/geom.git] / src / OperationGUI / OperationGUI_ArchimedeDlg.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   : OperationGUI_ArchimedeDlg.cxx
25 //  Author : Nicolas REJNERI 
26 //  Module : GEOM
27 //  $Header$
28
29 #include "OperationGUI_ArchimedeDlg.h"
30 #include "DlgRef_1Sel3Spin.h"
31
32 #include "SUIT_Desktop.h"
33 #include "SUIT_Session.h"
34 #include "SalomeApp_Application.h"
35 #include "LightApp_SelectionMgr.h"
36
37 #include <qlabel.h>
38
39 //=================================================================================
40 // class    : OperationGUI_ArchimedeDlg()
41 // purpose  : Constructs a OperationGUI_ArchimedeDlg which is a child of 'parent', with the 
42 //            name 'name' and widget flags set to 'f'.
43 //            The dialog will by default be modeless, unless you set 'modal' to
44 //            TRUE to construct a modal dialog.
45 //=================================================================================
46 OperationGUI_ArchimedeDlg::OperationGUI_ArchimedeDlg( GeometryGUI* theGeometryGUI, QWidget* parent )
47   : GEOMBase_Skeleton(theGeometryGUI, parent, "ArchimedeDlg", false,
48                       WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
49 {
50   QPixmap image0(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_ARCHIMEDE")));
51   QPixmap image1(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_SELECT")));
52   
53   setCaption(tr("GEOM_ARCHIMEDE_TITLE"));
54
55   /***************************************************************/
56   GroupConstructors->setTitle(tr("GEOM_ARCHIMEDE"));
57   RadioButton1->setPixmap(image0);
58   RadioButton2->close(TRUE);
59   RadioButton3->close(TRUE);
60
61   GroupPoints = new DlgRef_1Sel3Spin(this, "GroupPoints");
62   GroupPoints->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
63   GroupPoints->TextLabel1->setText(tr("GEOM_OBJECTS"));
64   GroupPoints->TextLabel2->setText(tr("GEOM_WEIGHT"));
65   GroupPoints->TextLabel3->setText(tr("GEOM_WATER_DENSITY"));
66   GroupPoints->TextLabel4->setText(tr("GEOM_MESHING_DEFLECTION"));
67   GroupPoints->PushButton1->setPixmap(image1);
68   GroupPoints->LineEdit1->setReadOnly( true );
69
70   Layout1->addWidget(GroupPoints, 2, 0);
71   /***************************************************************/
72
73   setHelpFileName("archimede.htm");
74
75   /* Initialisations */
76   Init();
77 }
78
79
80 //=================================================================================
81 // function : ~OperationGUI_ArchimedeDlg()
82 // purpose  : Destroys the object and frees any allocated resources
83 //=================================================================================
84 OperationGUI_ArchimedeDlg::~OperationGUI_ArchimedeDlg()
85 {
86   // no need to delete child widgets, Qt does it all for us
87 }
88
89
90 //=================================================================================
91 // function : Init()
92 // purpose  :
93 //=================================================================================
94 void OperationGUI_ArchimedeDlg::Init()
95 {
96   /* init variables */
97   myEditCurrentArgument = GroupPoints->LineEdit1;
98
99   /* Get setting of myStep value from file configuration */
100   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
101   double myStep = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100);
102
103   double SpecificStep1 = 0.1;
104   double SpecificStep2 = 0.01;
105   /* min, max, myStep and decimals for spin boxes & initial values */
106   GroupPoints->SpinBox_DX->RangeStepAndValidator(0.001, 999.999, myStep, 3);
107   GroupPoints->SpinBox_DY->RangeStepAndValidator(0.001, 999.999, SpecificStep1, 3);
108   GroupPoints->SpinBox_DZ->RangeStepAndValidator(0.001, 999.999, SpecificStep2, 3);
109
110   GroupPoints->SpinBox_DX->SetValue( 100.0 );
111   GroupPoints->SpinBox_DY->SetValue( 1.0 );
112   GroupPoints->SpinBox_DZ->SetValue( 0.01 );
113
114   /* signals and slots connections */
115   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
116   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
117
118   connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
119
120   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupPoints->SpinBox_DX, SLOT(SetStep(double)));
121   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupPoints->SpinBox_DY, SLOT(SetStep(double)));
122   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupPoints->SpinBox_DZ, SLOT(SetStep(double)));
123   
124   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
125           this, SLOT(SelectionIntoArgument()));
126   
127   initName( tr( "GEOM_ARCHIMEDE" ) );
128   
129   globalSelection( GEOM_ALLSHAPES );
130
131   SelectionIntoArgument();
132 }
133
134
135 //=================================================================================
136 // function : ClickOnOk()
137 // purpose  :
138 //=================================================================================
139 void OperationGUI_ArchimedeDlg::ClickOnOk()
140 {
141   if ( ClickOnApply() )
142     ClickOnCancel();
143 }
144
145
146 //=================================================================================
147 // function : ClickOnApply()
148 // purpose  :
149 //=================================================================================
150 bool OperationGUI_ArchimedeDlg::ClickOnApply()
151 {
152   if ( !onAccept() )
153     return false;
154
155   initName();
156   return true;
157 }
158
159
160 //=================================================================================
161 // function : SelectionIntoArgument()
162 // purpose  : Called when selection as changed or other case
163 //=================================================================================
164 void OperationGUI_ArchimedeDlg::SelectionIntoArgument()
165 {
166   myEditCurrentArgument->setText( "" );
167   myShape = GEOM::GEOM_Object::_nil();
168   
169   if ( IObjectCount() != 1 )
170     return;
171
172   Standard_Boolean testResult = Standard_False;
173   myShape = GEOMBase::ConvertIOinGEOMObject( firstIObject(), testResult );
174
175   if ( !testResult || myShape->_is_nil() || !GEOMBase::IsShape( myShape ) )
176   {
177     myShape = GEOM::GEOM_Object::_nil();
178     return;
179   }
180
181   myEditCurrentArgument->setText( GEOMBase::GetName( myShape ) );
182 }
183
184
185 //=================================================================================
186 // function : LineEditReturnPressed()
187 // purpose  :
188 //=================================================================================
189 void OperationGUI_ArchimedeDlg::LineEditReturnPressed()
190 {
191   QLineEdit* send = (QLineEdit*)sender();
192   if(send == GroupPoints->LineEdit1)
193     myEditCurrentArgument = GroupPoints->LineEdit1;
194   else
195     return;
196
197   GEOMBase_Skeleton::LineEditReturnPressed();
198   return;
199 }
200
201 //=================================================================================
202 // function : ActivateThisDialog()
203 // purpose  :
204 //=================================================================================
205 void OperationGUI_ArchimedeDlg::ActivateThisDialog()
206 {
207   GEOMBase_Skeleton::ActivateThisDialog();
208   globalSelection( GEOM_ALLSHAPES );
209   connect(myGeomGUI->getApp()->selectionMgr(),
210           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
211   return;
212 }
213
214
215 //=================================================================================
216 // function : enterEvent()
217 // purpose  :
218 //=================================================================================
219 void OperationGUI_ArchimedeDlg::enterEvent(QEvent* e)
220 {
221   if(GroupConstructors->isEnabled())
222     return;
223   this->ActivateThisDialog();
224   return;
225 }
226
227
228 //=================================================================================
229 // function : createOperation
230 // purpose  :
231 //=================================================================================
232 GEOM::GEOM_IOperations_ptr OperationGUI_ArchimedeDlg::createOperation()
233 {
234   return getGeomEngine()->GetILocalOperations( getStudyId() );
235 }
236
237 //=================================================================================
238 // function : isValid
239 // purpose  :
240 //=================================================================================
241 bool OperationGUI_ArchimedeDlg::isValid( QString& )
242 {
243   return !myShape->_is_nil();
244 }
245
246 //=================================================================================
247 // function : execute
248 // purpose  :
249 //=================================================================================
250 bool OperationGUI_ArchimedeDlg::execute( ObjectList& objects )
251 {
252   GEOM::GEOM_Object_var anObj;
253
254   double aWeight         = GroupPoints->SpinBox_DX->GetValue();
255   double aWaterDensity   = GroupPoints->SpinBox_DY->GetValue();
256   double aMeshDeflection = GroupPoints->SpinBox_DZ->GetValue();
257   
258   anObj = GEOM::GEOM_ILocalOperations::_narrow(
259     getOperation() )->MakeArchimede( myShape, aWeight, aWaterDensity, aMeshDeflection );
260
261   if ( !anObj->_is_nil() )
262     objects.push_back( anObj._retn() );
263
264   return true;
265 }