Salome HOME
Issue 0020904: [CEA 411] export VTK in GEOM
[modules/geom.git] / src / OperationGUI / OperationGUI_ArchimedeDlg.cxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : OperationGUI_ArchimedeDlg.cxx
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 //
27 #include "OperationGUI_ArchimedeDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SUIT_Desktop.h>
34 #include <SUIT_Session.h>
35 #include <SUIT_ResourceMgr.h>
36 #include <SalomeApp_Application.h>
37 #include <LightApp_SelectionMgr.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, false )
48 {
49   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_ARCHIMEDE" ) ) );
50   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
51   
52   setWindowTitle( tr( "GEOM_ARCHIMEDE_TITLE" ) );
53
54   /***************************************************************/
55   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_ARCHIMEDE" ) );
56   mainFrame()->RadioButton1->setIcon( image0 );
57   mainFrame()->RadioButton2->setAttribute( Qt::WA_DeleteOnClose );
58   mainFrame()->RadioButton2->close();
59   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
60   mainFrame()->RadioButton3->close();
61
62   GroupPoints = new DlgRef_1Sel3Spin( centralWidget() );
63   GroupPoints->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
64   GroupPoints->TextLabel1->setText( tr( "GEOM_OBJECTS" ) );
65   GroupPoints->TextLabel2->setText( tr( "GEOM_WEIGHT" ) );
66   GroupPoints->TextLabel3->setText( tr( "GEOM_WATER_DENSITY" ) );
67   GroupPoints->TextLabel4->setText( tr( "GEOM_MESHING_DEFLECTION" ) );
68   GroupPoints->PushButton1->setIcon( image1 );
69   GroupPoints->LineEdit1->setReadOnly( true );
70
71   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
72   layout->setMargin( 0 ); layout->setSpacing( 6 );
73   layout->addWidget( GroupPoints );
74
75   /***************************************************************/
76
77   setHelpFileName( "archimede_page.html" );
78
79   /* Initialisations */
80   Init();
81 }
82
83
84 //=================================================================================
85 // function : ~OperationGUI_ArchimedeDlg()
86 // purpose  : Destroys the object and frees any allocated resources
87 //=================================================================================
88 OperationGUI_ArchimedeDlg::~OperationGUI_ArchimedeDlg()
89 {
90   // no need to delete child widgets, Qt does it all for us
91 }
92
93
94 //=================================================================================
95 // function : Init()
96 // purpose  :
97 //=================================================================================
98 void OperationGUI_ArchimedeDlg::Init()
99 {
100   /* init variables */
101   myEditCurrentArgument = GroupPoints->LineEdit1;
102
103   /* Get setting of myStep value from file configuration */
104   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
105   double myStep = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100 );
106
107   double SpecificStep1 = 0.1;
108   double SpecificStep2 = 0.01;
109   /* min, max, myStep and decimals for spin boxes & initial values */
110   initSpinBox( GroupPoints->SpinBox_DX, 0.001, COORD_MAX, myStep, "weight_precision" );
111   initSpinBox( GroupPoints->SpinBox_DY, 0.001, COORD_MAX, SpecificStep1, "density_precision" );
112   initSpinBox( GroupPoints->SpinBox_DZ, 0.001, COORD_MAX, SpecificStep2, "parametric_precision" );
113
114   GroupPoints->SpinBox_DX->setValue( 100.0 );
115   GroupPoints->SpinBox_DY->setValue( 1.0 );
116   GroupPoints->SpinBox_DZ->setValue( 0.01 );
117
118   /* signals and slots connections */
119   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
120   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
121
122   connect( GroupPoints->LineEdit1, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
123
124   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), this, SLOT( SetDoubleSpinBoxStep( double ) ) );
125   
126   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
127            this, SLOT( SelectionIntoArgument() ) );
128   
129   initName( tr( "GEOM_ARCHIMEDE" ) );
130   
131   globalSelection( GEOM_ALLSHAPES );
132
133   SelectionIntoArgument();
134   resize(100,100);
135 }
136
137
138 //=================================================================================
139 // function : SetDoubleSpinBoxStep()
140 // purpose  : Double spin box management
141 //=================================================================================
142 void OperationGUI_ArchimedeDlg::SetDoubleSpinBoxStep( double step )
143 {
144   GroupPoints->SpinBox_DX->setSingleStep(step);
145   
146   // san: Commented so as not to override specific step settings
147   //GroupPoints->SpinBox_DY->setSingleStep(step);
148   //GroupPoints->SpinBox_DZ->setSingleStep(step);
149 }
150
151 //=================================================================================
152 // function : ClickOnOk()
153 // purpose  :
154 //=================================================================================
155 void OperationGUI_ArchimedeDlg::ClickOnOk()
156 {
157   if ( ClickOnApply() )
158     ClickOnCancel();
159 }
160
161
162 //=================================================================================
163 // function : ClickOnApply()
164 // purpose  :
165 //=================================================================================
166 bool OperationGUI_ArchimedeDlg::ClickOnApply()
167 {
168   if ( !onAccept() )
169     return false;
170
171   initName();
172   return true;
173 }
174
175 //=================================================================================
176 // function : SelectionIntoArgument()
177 // purpose  : Called when selection as changed or other case
178 //=================================================================================
179 void OperationGUI_ArchimedeDlg::SelectionIntoArgument()
180 {
181   myEditCurrentArgument->setText("");
182   myShape = GEOM::GEOM_Object::_nil();
183
184   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
185   SALOME_ListIO aSelList;
186   aSelMgr->selectedObjects(aSelList);
187
188   if (aSelList.Extent() != 1)
189     return;
190
191   Standard_Boolean testResult = Standard_False;
192   myShape = GEOMBase::ConvertIOinGEOMObject(aSelList.First(), testResult);
193
194   if (!testResult || myShape->_is_nil() || !GEOMBase::IsShape(myShape)) {
195     myShape = GEOM::GEOM_Object::_nil();
196     return;
197   }
198
199   myEditCurrentArgument->setText(GEOMBase::GetName(myShape));
200 }
201
202 //=================================================================================
203 // function : LineEditReturnPressed()
204 // purpose  :
205 //=================================================================================
206 void OperationGUI_ArchimedeDlg::LineEditReturnPressed()
207 {
208   QLineEdit* send = (QLineEdit*)sender();
209   if ( send == GroupPoints->LineEdit1 )
210     myEditCurrentArgument = GroupPoints->LineEdit1;
211   else
212     return;
213
214   GEOMBase_Skeleton::LineEditReturnPressed();
215 }
216
217 //=================================================================================
218 // function : ActivateThisDialog()
219 // purpose  :
220 //=================================================================================
221 void OperationGUI_ArchimedeDlg::ActivateThisDialog()
222 {
223   GEOMBase_Skeleton::ActivateThisDialog();
224   globalSelection( GEOM_ALLSHAPES );
225   connect( myGeomGUI->getApp()->selectionMgr(),
226            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
227 }
228
229
230 //=================================================================================
231 // function : enterEvent()
232 // purpose  :
233 //=================================================================================
234 void OperationGUI_ArchimedeDlg::enterEvent( QEvent* )
235 {
236   if ( mainFrame()->GroupConstructors->isEnabled() )
237     return;
238   this->ActivateThisDialog();
239 }
240
241
242 //=================================================================================
243 // function : createOperation
244 // purpose  :
245 //=================================================================================
246 GEOM::GEOM_IOperations_ptr OperationGUI_ArchimedeDlg::createOperation()
247 {
248   return getGeomEngine()->GetILocalOperations( getStudyId() );
249 }
250
251 //=================================================================================
252 // function : isValid
253 // purpose  :
254 //=================================================================================
255 bool OperationGUI_ArchimedeDlg::isValid( QString& msg )
256 {
257   bool ok = true;
258   ok = GroupPoints->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
259   ok = GroupPoints->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
260   ok = GroupPoints->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
261   return !myShape->_is_nil() && ok;
262 }
263
264 //=================================================================================
265 // function : execute
266 // purpose  :
267 //=================================================================================
268 bool OperationGUI_ArchimedeDlg::execute( ObjectList& objects )
269 {
270   double aWeight         = GroupPoints->SpinBox_DX->value();
271   double aWaterDensity   = GroupPoints->SpinBox_DY->value();
272   double aMeshDeflection = GroupPoints->SpinBox_DZ->value();
273   
274   GEOM::GEOM_ILocalOperations_var anOper = GEOM::GEOM_ILocalOperations::_narrow(getOperation());
275   GEOM::GEOM_Object_var anObj = anOper->MakeArchimede( myShape, aWeight, aWaterDensity, aMeshDeflection );
276
277   if ( !anObj->_is_nil() )
278   {
279     if ( !IsPreview() )
280     {
281       QStringList aParameters;
282       aParameters << GroupPoints->SpinBox_DX->text();
283       aParameters << GroupPoints->SpinBox_DY->text();
284       aParameters << GroupPoints->SpinBox_DZ->text();
285       anObj->SetParameters(aParameters.join(":").toLatin1().constData());
286     }
287     objects.push_back( anObj._retn() );
288   }
289
290   return true;
291 }