Salome HOME
*** empty log message ***
[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.htm" );
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 );
110   initSpinBox( GroupPoints->SpinBox_DY, 0.001, COORD_MAX, SpecificStep1, 3 );
111   initSpinBox( GroupPoints->SpinBox_DZ, 0.001, COORD_MAX, SpecificStep2, 3 );
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   // VSR: TODO ->>
124   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), GroupPoints->SpinBox_DX, SLOT( SetStep( double ) ) );
125   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), GroupPoints->SpinBox_DY, SLOT( SetStep( double ) ) );
126   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), GroupPoints->SpinBox_DZ, SLOT( SetStep( double ) ) );
127   // <<-
128   
129   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
130            this, SLOT( SelectionIntoArgument() ) );
131   
132   initName( tr( "GEOM_ARCHIMEDE" ) );
133   
134   globalSelection( GEOM_ALLSHAPES );
135
136   SelectionIntoArgument();
137 }
138
139
140 //=================================================================================
141 // function : ClickOnOk()
142 // purpose  :
143 //=================================================================================
144 void OperationGUI_ArchimedeDlg::ClickOnOk()
145 {
146   if ( ClickOnApply() )
147     ClickOnCancel();
148 }
149
150
151 //=================================================================================
152 // function : ClickOnApply()
153 // purpose  :
154 //=================================================================================
155 bool OperationGUI_ArchimedeDlg::ClickOnApply()
156 {
157   if ( !onAccept() )
158     return false;
159
160   initName();
161   return true;
162 }
163
164
165 //=================================================================================
166 // function : SelectionIntoArgument()
167 // purpose  : Called when selection as changed or other case
168 //=================================================================================
169 void OperationGUI_ArchimedeDlg::SelectionIntoArgument()
170 {
171   myEditCurrentArgument->setText( "" );
172   myShape = GEOM::GEOM_Object::_nil();
173   
174   if ( IObjectCount() != 1 )
175     return;
176
177   Standard_Boolean testResult = Standard_False;
178   myShape = GEOMBase::ConvertIOinGEOMObject( firstIObject(), testResult );
179
180   if ( !testResult || myShape->_is_nil() || !GEOMBase::IsShape( myShape ) ) {
181     myShape = GEOM::GEOM_Object::_nil();
182     return;
183   }
184
185   myEditCurrentArgument->setText( GEOMBase::GetName( myShape ) );
186 }
187
188
189 //=================================================================================
190 // function : LineEditReturnPressed()
191 // purpose  :
192 //=================================================================================
193 void OperationGUI_ArchimedeDlg::LineEditReturnPressed()
194 {
195   QLineEdit* send = (QLineEdit*)sender();
196   if ( send == GroupPoints->LineEdit1 )
197     myEditCurrentArgument = GroupPoints->LineEdit1;
198   else
199     return;
200
201   GEOMBase_Skeleton::LineEditReturnPressed();
202 }
203
204 //=================================================================================
205 // function : ActivateThisDialog()
206 // purpose  :
207 //=================================================================================
208 void OperationGUI_ArchimedeDlg::ActivateThisDialog()
209 {
210   GEOMBase_Skeleton::ActivateThisDialog();
211   globalSelection( GEOM_ALLSHAPES );
212   connect( myGeomGUI->getApp()->selectionMgr(),
213            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
214 }
215
216
217 //=================================================================================
218 // function : enterEvent()
219 // purpose  :
220 //=================================================================================
221 void OperationGUI_ArchimedeDlg::enterEvent( QEvent* )
222 {
223   if ( mainFrame()->GroupConstructors->isEnabled() )
224     return;
225   this->ActivateThisDialog();
226 }
227
228
229 //=================================================================================
230 // function : createOperation
231 // purpose  :
232 //=================================================================================
233 GEOM::GEOM_IOperations_ptr OperationGUI_ArchimedeDlg::createOperation()
234 {
235   return getGeomEngine()->GetILocalOperations( getStudyId() );
236 }
237
238 //=================================================================================
239 // function : isValid
240 // purpose  :
241 //=================================================================================
242 bool OperationGUI_ArchimedeDlg::isValid( QString& )
243 {
244   return !myShape->_is_nil();
245 }
246
247 //=================================================================================
248 // function : execute
249 // purpose  :
250 //=================================================================================
251 bool OperationGUI_ArchimedeDlg::execute( ObjectList& objects )
252 {
253   GEOM::GEOM_Object_var anObj;
254
255   double aWeight         = GroupPoints->SpinBox_DX->value();
256   double aWaterDensity   = GroupPoints->SpinBox_DY->value();
257   double aMeshDeflection = GroupPoints->SpinBox_DZ->value();
258   
259   anObj = GEOM::GEOM_ILocalOperations::_narrow(
260     getOperation() )->MakeArchimede( myShape, aWeight, aWaterDensity, aMeshDeflection );
261
262   if ( !anObj->_is_nil() )
263     objects.push_back( anObj._retn() );
264
265   return true;
266 }