Salome HOME
NPAL16559: EDF507: Implementation of a more advanced system of measurement.
[modules/geom.git] / src / TransformationGUI / TransformationGUI_OffsetDlg.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 //
23 //
24 //  File   : TransformationGUI_OffsetDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #include "TransformationGUI_OffsetDlg.h"
30
31 #include "SUIT_Desktop.h"
32 #include "SUIT_Session.h"
33 #include "SalomeApp_Application.h"
34 #include "LightApp_SelectionMgr.h"
35
36 #include <qlabel.h>
37 #include <qcheckbox.h>
38
39 #include "utilities.h"
40
41 using namespace std;
42
43 //=================================================================================
44 // class    : TransformationGUI_OffsetDlg()
45 // purpose  : Constructs a TransformationGUI_OffsetDlg which is a child of 'parent', with the
46 //            name 'name' and widget flags set to 'f'.
47 //            The dialog will by default be modeless, unless you set 'modal' to
48 //            TRUE to construct a modal dialog.
49 //=================================================================================
50 TransformationGUI_OffsetDlg::TransformationGUI_OffsetDlg(GeometryGUI* theGeometryGUI, QWidget* parent,
51                                                          const char* name, bool modal, WFlags fl)
52     :GEOMBase_Skeleton(theGeometryGUI, parent, name, modal, WStyle_Customize |
53                        WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
54 {
55   QPixmap image0(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_OFFSET")));
56   QPixmap image1(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_SELECT")));
57
58   setCaption(tr("GEOM_OFFSET_TITLE"));
59
60   /***************************************************************/
61   GroupConstructors->setTitle(tr("GEOM_OFFSET"));
62   RadioButton1->setPixmap(image0);
63   RadioButton2->close(TRUE);
64   RadioButton3->close(TRUE);
65
66   GroupPoints = new DlgRef_1Sel1Spin1Check(this, "GroupPoints");
67   GroupPoints->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
68   GroupPoints->TextLabel1->setText(tr("GEOM_OBJECTS"));
69   GroupPoints->TextLabel2->setText(tr("GEOM_OFFSET"));
70   GroupPoints->CheckButton1->setText(tr("GEOM_CREATE_COPY"));
71
72   // san -- modification of an exisitng object by offset is not allowed
73   GroupPoints->CheckButton1->hide();
74
75   GroupPoints->PushButton1->setPixmap(image1);
76
77   Layout1->addWidget(GroupPoints, 2, 0);
78
79   /***************************************************************/
80
81   setHelpFileName("offset_surface.htm");
82
83   Init();
84 }
85
86
87 //=================================================================================
88 // function : ~TransformationGUI_OffsetDlg()
89 // purpose  : Destroys the object and frees any allocated resources
90 //=================================================================================
91 TransformationGUI_OffsetDlg::~TransformationGUI_OffsetDlg()
92 {
93   /* no need to delete child widgets, Qt does it all for us */
94 }
95
96
97 //=================================================================================
98 // function : Init()
99 // purpose  :
100 //=================================================================================
101 void TransformationGUI_OffsetDlg::Init()
102 {
103   /* init variables */
104   myEditCurrentArgument = GroupPoints->LineEdit1;
105   GroupPoints->LineEdit1->setReadOnly( true );
106
107   /* Get setting of step value from file configuration */
108   double step = 1;
109
110   /* min, max, step and decimals for spin boxes & initial values */
111   GroupPoints->SpinBox_DX->RangeStepAndValidator(COORD_MIN, COORD_MAX, step, DBL_DIGITS_DISPLAY);
112   GroupPoints->SpinBox_DX->SetValue(1e-05);
113
114   // Activate Create a Copy mode
115   GroupPoints->CheckButton1->setChecked(true);
116   CreateCopyModeChanged(true);
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->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
123   connect(myGeomGUI->getApp()->selectionMgr(),
124           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
125
126   connect(GroupPoints->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
127   connect(GroupPoints->CheckButton1, SIGNAL(toggled(bool)), this, SLOT(CreateCopyModeChanged(bool)));
128
129   initName( tr( "GEOM_OFFSET" ) );
130
131   globalSelection( GEOM_ALLSHAPES );
132 }
133
134
135 //=================================================================================
136 // function : ClickOnOk()
137 // purpose  :
138 //=================================================================================
139 void TransformationGUI_OffsetDlg::ClickOnOk()
140 {
141   if ( ClickOnApply() )
142     ClickOnCancel();
143 }
144
145
146 //=================================================================================
147 // function : ClickOnApply()
148 // purpose  :
149 //=================================================================================
150 bool TransformationGUI_OffsetDlg::ClickOnApply()
151 {
152   if ( !onAccept( GroupPoints->CheckButton1->isChecked() ) )
153     return false;
154
155   initName();
156   return true;
157 }
158
159
160 //=================================================================================
161 // function : SelectionIntoArgument()
162 // purpose  : Called when selection has changed
163 //=================================================================================
164 void TransformationGUI_OffsetDlg::SelectionIntoArgument()
165 {
166   myEditCurrentArgument->setText("");
167   QString aName;
168
169   int aNbSel = GEOMBase::GetNameOfSelectedIObjects(selectedIO(), aName);
170   if(aNbSel < 1)
171     {
172       myObjects.length(0);
173       return;
174     }
175
176   // nbSel > 0
177   GEOMBase::ConvertListOfIOInListOfGO(selectedIO(), myObjects);
178   if (!myObjects.length())
179     return;
180
181   myEditCurrentArgument->setText( aName );
182
183   displayPreview();
184 }
185
186
187 //=================================================================================
188 // function : LineEditReturnPressed()
189 // purpose  :
190 //=================================================================================
191 void TransformationGUI_OffsetDlg::LineEditReturnPressed()
192 {
193   QLineEdit* send = (QLineEdit*)sender();
194   if ( send == GroupPoints->LineEdit1 )
195   {
196     myEditCurrentArgument = GroupPoints->LineEdit1;
197     GEOMBase_Skeleton::LineEditReturnPressed();
198   }
199 }
200
201
202 //=================================================================================
203 // function : SetEditCurrentArgument()
204 // purpose  :
205 //=================================================================================
206 void TransformationGUI_OffsetDlg::SetEditCurrentArgument()
207 {
208   QPushButton* send = (QPushButton*)sender();
209
210   if(send == GroupPoints->PushButton1)
211     {
212       myEditCurrentArgument = GroupPoints->LineEdit1;
213       myEditCurrentArgument->setFocus();
214       SelectionIntoArgument();
215     }
216 }
217
218
219 //=================================================================================
220 // function : enterEvent()
221 // purpose  : when mouse enter onto the QWidget
222 //=================================================================================
223 void TransformationGUI_OffsetDlg::enterEvent(QEvent * e)
224 {
225   if ( !GroupConstructors->isEnabled() )
226     ActivateThisDialog();
227 }
228
229
230 //=================================================================================
231 // function : ActivateThisDialog()
232 // purpose  :
233 //=================================================================================
234 void TransformationGUI_OffsetDlg::ActivateThisDialog()
235 {
236   GEOMBase_Skeleton::ActivateThisDialog();
237   connect(myGeomGUI->getApp()->selectionMgr(),
238           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
239   globalSelection( GEOM_ALLSHAPES );
240   myEditCurrentArgument = GroupPoints->LineEdit1;
241   myEditCurrentArgument->setFocus();
242 }
243
244
245 //=================================================================================
246 // function : ValueChangedInSpinBox()
247 // purpose  :
248 //=================================================================================
249 void TransformationGUI_OffsetDlg::ValueChangedInSpinBox()
250 {
251   displayPreview();
252 }
253
254
255 //=================================================================================
256 // function : createOperation
257 // purpose  :
258 //=================================================================================
259 GEOM::GEOM_IOperations_ptr TransformationGUI_OffsetDlg::createOperation()
260 {
261   return getGeomEngine()->GetITransformOperations( getStudyId() );
262 }
263
264 //=================================================================================
265 // function : isValid
266 // purpose  :
267 //=================================================================================
268 bool TransformationGUI_OffsetDlg::isValid( QString& msg )
269 {
270   //return !(myObjects.length() == 0);
271   if (myObjects.length() == 0) return false;
272
273   for (int i = 0; i < myObjects.length(); i++)
274   {
275     GEOM::shape_type aType = myObjects[i]->GetShapeType();
276     if( aType != GEOM::FACE && aType != GEOM::SHELL && aType != GEOM::SOLID ){
277        msg = tr("ERROR_SHAPE_TYPE");
278        return false;
279     }
280   }
281   return true;
282 }
283
284
285 //=================================================================================
286 // function : execute
287 // purpose  :
288 //=================================================================================
289 bool TransformationGUI_OffsetDlg::execute( ObjectList& objects )
290 {
291   bool res = false;
292
293   GEOM::GEOM_Object_var anObj;
294
295   if (GroupPoints->CheckButton1->isChecked() || IsPreview())
296     for (int i = 0; i < myObjects.length(); i++)
297     {
298       anObj = GEOM::GEOM_ITransformOperations::_narrow( getOperation() )->
299         OffsetShapeCopy( myObjects[i], GetOffset() );
300       if ( !anObj->_is_nil() )
301         objects.push_back( anObj._retn() );
302     }
303   else
304     for (int i = 0; i < myObjects.length(); i++)
305     {
306       anObj = GEOM::GEOM_ITransformOperations::_narrow( getOperation() )->
307         OffsetShape( myObjects[i], GetOffset() );
308       if ( !anObj->_is_nil() )
309         objects.push_back( anObj._retn() );
310     }
311
312   res = true;
313
314   return res;
315 }
316
317 //=================================================================================
318 // function : closeEvent
319 // purpose  :
320 //=================================================================================
321 void TransformationGUI_OffsetDlg::closeEvent( QCloseEvent* e )
322 {
323   // myGeomGUI->SetState( -1 );
324   GEOMBase_Skeleton::closeEvent( e );
325 }
326
327
328 //=================================================================================
329 // function : GetOffset()
330 // purpose  :
331 //=================================================================================
332 double TransformationGUI_OffsetDlg::GetOffset() const
333 {
334   return GroupPoints->SpinBox_DX->GetValue();
335 }
336
337
338 //=================================================================================
339 // function :  CreateCopyModeChanged()
340 // purpose  :
341 //=================================================================================
342 void TransformationGUI_OffsetDlg::CreateCopyModeChanged(bool isCreateCopy)
343 {
344   this->GroupBoxName->setEnabled(isCreateCopy);
345 }