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