Salome HOME
Update mail address
[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(-999.999, 999.999, step, 3);
112   GroupPoints->SpinBox_DX->setPrecision(5);
113   //@ GroupPoints->SpinBox_DX->setDblPrecision(1e-05);    
114   GroupPoints->SpinBox_DX->SetValue(1e-05);
115   
116   // Activate Create a Copy mode
117   GroupPoints->CheckButton1->setChecked(true);
118   CreateCopyModeChanged(true);
119
120   /* signals and slots connections */
121   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
122   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
123   
124   connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
125   connect(myGeomGUI->getApp()->selectionMgr(), 
126           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
127
128   connect(GroupPoints->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
129   connect(GroupPoints->CheckButton1, SIGNAL(toggled(bool)), this, SLOT(CreateCopyModeChanged(bool)));
130   
131   initName( tr( "GEOM_OFFSET" ) );
132
133   globalSelection( GEOM_ALLSHAPES );
134   
135 }
136
137
138 //=================================================================================
139 // function : ClickOnOk()
140 // purpose  :
141 //=================================================================================
142 void TransformationGUI_OffsetDlg::ClickOnOk()
143 {
144   if ( ClickOnApply() )
145     ClickOnCancel();
146 }
147
148
149 //=================================================================================
150 // function : ClickOnApply()
151 // purpose  :
152 //=================================================================================
153 bool TransformationGUI_OffsetDlg::ClickOnApply()
154 {
155   if ( !onAccept( GroupPoints->CheckButton1->isChecked() ) )
156     return false;
157   
158   initName();
159   return true;
160 }
161
162
163 //=================================================================================
164 // function : SelectionIntoArgument()
165 // purpose  : Called when selection has changed
166 //=================================================================================
167 void TransformationGUI_OffsetDlg::SelectionIntoArgument()
168 {
169   myEditCurrentArgument->setText("");
170   QString aName;
171
172   int aNbSel = GEOMBase::GetNameOfSelectedIObjects(selectedIO(), aName);
173   if(aNbSel < 1)
174     {
175       myObjects.length(0);
176       return;
177     }
178
179   // nbSel > 0
180   GEOMBase::ConvertListOfIOInListOfGO(selectedIO(), myObjects);
181   if (!myObjects.length())
182     return;
183   
184   myEditCurrentArgument->setText( aName );
185   
186   displayPreview();
187 }
188
189
190 //=================================================================================
191 // function : LineEditReturnPressed()
192 // purpose  :
193 //=================================================================================
194 void TransformationGUI_OffsetDlg::LineEditReturnPressed()
195 {
196   QLineEdit* send = (QLineEdit*)sender();
197   if ( send == GroupPoints->LineEdit1 )
198   {
199     myEditCurrentArgument = GroupPoints->LineEdit1;
200     GEOMBase_Skeleton::LineEditReturnPressed();
201   }
202 }
203
204
205 //=================================================================================
206 // function : SetEditCurrentArgument()
207 // purpose  :
208 //=================================================================================
209 void TransformationGUI_OffsetDlg::SetEditCurrentArgument()
210 {
211   QPushButton* send = (QPushButton*)sender();
212   
213   if(send == GroupPoints->PushButton1)
214     {
215       myEditCurrentArgument = GroupPoints->LineEdit1;
216       myEditCurrentArgument->setFocus();
217       SelectionIntoArgument();
218     }
219 }
220
221
222 //=================================================================================
223 // function : enterEvent()
224 // purpose  : when mouse enter onto the QWidget
225 //=================================================================================
226 void TransformationGUI_OffsetDlg::enterEvent(QEvent * e)
227 {
228   if ( !GroupConstructors->isEnabled() )
229     ActivateThisDialog();
230 }
231
232
233 //=================================================================================
234 // function : ActivateThisDialog()
235 // purpose  :
236 //=================================================================================
237 void TransformationGUI_OffsetDlg::ActivateThisDialog()
238 {
239   GEOMBase_Skeleton::ActivateThisDialog();
240   connect(myGeomGUI->getApp()->selectionMgr(), 
241           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
242   globalSelection( GEOM_ALLSHAPES );
243   myEditCurrentArgument = GroupPoints->LineEdit1;
244   myEditCurrentArgument->setFocus();
245 }
246
247
248 //=================================================================================
249 // function : ValueChangedInSpinBox()
250 // purpose  :
251 //=================================================================================
252 void TransformationGUI_OffsetDlg::ValueChangedInSpinBox()
253 {
254   displayPreview();
255 }
256
257
258 //=================================================================================
259 // function : createOperation
260 // purpose  :
261 //=================================================================================
262 GEOM::GEOM_IOperations_ptr TransformationGUI_OffsetDlg::createOperation()
263 {
264   return getGeomEngine()->GetITransformOperations( getStudyId() );
265 }
266
267 //=================================================================================
268 // function : isValid
269 // purpose  :
270 //=================================================================================
271 bool TransformationGUI_OffsetDlg::isValid( QString& msg )
272 {
273   return !(myObjects.length() == 0);
274 }
275
276
277 //=================================================================================
278 // function : execute
279 // purpose  :
280 //=================================================================================
281 bool TransformationGUI_OffsetDlg::execute( ObjectList& objects )
282 {
283   bool res = false;
284   
285   GEOM::GEOM_Object_var anObj;
286   
287   
288   if (GroupPoints->CheckButton1->isChecked() || IsPreview())
289     for (int i = 0; i < myObjects.length(); i++)
290       {
291         anObj = GEOM::GEOM_ITransformOperations::_narrow( getOperation() )->OffsetShapeCopy( myObjects[i], GetOffset() );
292         if ( !anObj->_is_nil() )
293           objects.push_back( anObj._retn() );
294       }
295   else
296     for (int i = 0; i < myObjects.length(); i++)
297       {
298         anObj = GEOM::GEOM_ITransformOperations::_narrow( getOperation() )->OffsetShape( myObjects[i], GetOffset() );
299         if ( !anObj->_is_nil() )
300           objects.push_back( anObj._retn() );
301       }
302      
303   res = true;
304     
305   return res;
306 }
307
308 //=================================================================================
309 // function : closeEvent
310 // purpose  :
311 //=================================================================================
312 void TransformationGUI_OffsetDlg::closeEvent( QCloseEvent* e )
313 {
314   // myGeomGUI->SetState( -1 );
315   GEOMBase_Skeleton::closeEvent( e );
316 }
317
318
319 //=================================================================================
320 // function : GetOffset()
321 // purpose  :
322 //=================================================================================
323 double TransformationGUI_OffsetDlg::GetOffset() const
324 {
325   return GroupPoints->SpinBox_DX->GetValue();
326 }
327
328
329 //=================================================================================
330 // function :  CreateCopyModeChanged()
331 // purpose  :
332 //=================================================================================
333 void TransformationGUI_OffsetDlg::CreateCopyModeChanged(bool isCreateCopy)
334 {
335   this->GroupBoxName->setEnabled(isCreateCopy);
336 }