Salome HOME
Notebook: automatic variable definition.
[modules/geom.git] / src / TransformationGUI / TransformationGUI_OffsetDlg.cxx
1 //  Copyright (C) 2007-2008  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 // GEOM GEOMGUI : GUI for Geometry component
23 // File   : TransformationGUI_OffsetDlg.cxx
24 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
25 //
26 #include "TransformationGUI_OffsetDlg.h"
27
28 #include <DlgRef.h>
29 #include <GeometryGUI.h>
30 #include <GEOMBase.h>
31
32 #include <SUIT_ResourceMgr.h>
33 #include <SUIT_Session.h>
34 #include <SalomeApp_Application.h>
35 #include <SalomeApp_Notebook.h>
36 #include <LightApp_SelectionMgr.h>
37
38 //=================================================================================
39 // class    : TransformationGUI_OffsetDlg()
40 // purpose  : Constructs a TransformationGUI_OffsetDlg 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 TransformationGUI_OffsetDlg::TransformationGUI_OffsetDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
46                                                           bool modal, Qt::WindowFlags fl )
47   : GEOMBase_Skeleton( theGeometryGUI, parent, modal, fl )
48 {
49   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_OFFSET" ) ) );
50   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
51
52   setWindowTitle( tr( "GEOM_OFFSET_TITLE" ) );
53
54   /***************************************************************/
55   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_OFFSET" ) );
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_1Sel1Spin1Check( centralWidget() );
63   GroupPoints->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
64   GroupPoints->TextLabel1->setText( tr( "GEOM_OBJECTS" ) );
65   GroupPoints->TextLabel2->setText( tr( "GEOM_OFFSET" ) );
66   GroupPoints->CheckButton1->setText( tr( "GEOM_CREATE_COPY" ) );
67
68   // san -- modification of an exisitng object by offset is not allowed
69   GroupPoints->CheckButton1->hide();
70
71   GroupPoints->PushButton1->setIcon( image1 );
72   
73   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
74   layout->setMargin( 0 ); layout->setSpacing( 6 );
75   layout->addWidget( GroupPoints );
76   
77   /***************************************************************/
78
79   setHelpFileName( "offset_operation_page.html" );
80   
81   Init();
82 }
83
84
85 //=================================================================================
86 // function : ~TransformationGUI_OffsetDlg()
87 // purpose  : Destroys the object and frees any allocated resources
88 //=================================================================================
89 TransformationGUI_OffsetDlg::~TransformationGUI_OffsetDlg()
90 {  
91   /* no need to delete child widgets, Qt does it all for us */
92 }
93
94
95 //=================================================================================
96 // function : Init()
97 // purpose  :
98 //=================================================================================
99 void TransformationGUI_OffsetDlg::Init()
100 {  
101   /* init variables */
102   myEditCurrentArgument = GroupPoints->LineEdit1;
103   GroupPoints->LineEdit1->setReadOnly( true );
104   
105   /* Get setting of step value from file configuration */
106   double step = 1;
107    
108   /* min, max, step and decimals for spin boxes & initial values */
109   initSpinBox( GroupPoints->SpinBox_DX, COORD_MIN, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
110   GroupPoints->SpinBox_DX->setValue( 1e-05 );
111   
112   // Activate Create a Copy mode
113   GroupPoints->CheckButton1->setChecked( true );
114   CreateCopyModeChanged( true );
115
116   mainFrame()->GroupBoxPublish->show();
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   resize(100,100);
133 }
134
135
136 //=================================================================================
137 // function : ClickOnOk()
138 // purpose  :
139 //=================================================================================
140 void TransformationGUI_OffsetDlg::ClickOnOk()
141 {
142   if ( ClickOnApply() )
143     ClickOnCancel();
144 }
145
146
147 //=================================================================================
148 // function : ClickOnApply()
149 // purpose  :
150 //=================================================================================
151 bool TransformationGUI_OffsetDlg::ClickOnApply()
152 {
153   if ( !onAccept( GroupPoints->CheckButton1->isChecked() ) )
154     return false;
155   
156   initName();
157   return true;
158 }
159
160
161 //=================================================================================
162 // function : SelectionIntoArgument()
163 // purpose  : Called when selection has changed
164 //=================================================================================
165 void TransformationGUI_OffsetDlg::SelectionIntoArgument()
166 {
167   myEditCurrentArgument->setText( "" );
168   QString aName;
169
170   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
171   SALOME_ListIO aSelList;
172   aSelMgr->selectedObjects(aSelList);
173
174   int aNbSel = GEOMBase::GetNameOfSelectedIObjects(aSelList, aName);
175   if ( aNbSel < 1 ) {
176     myObjects.length( 0 );
177     return;
178   }
179
180   // nbSel > 0
181   GEOMBase::ConvertListOfIOInListOfGO (aSelList, myObjects);
182   if (!myObjects.length())
183     return;
184
185   myEditCurrentArgument->setText(aName);
186
187   displayPreview();
188 }
189
190
191 //=================================================================================
192 // function : LineEditReturnPressed()
193 // purpose  :
194 //=================================================================================
195 void TransformationGUI_OffsetDlg::LineEditReturnPressed()
196 {
197   QLineEdit* send = (QLineEdit*)sender();
198   if ( send == GroupPoints->LineEdit1 ) {
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     GroupPoints->PushButton1->setDown(true);
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* )
227 {
228   if ( !mainFrame()->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, QStringList& absentParams )
272 {
273   //return !(myObjects.length() == 0);
274   if ( myObjects.length() == 0 ) return false;
275
276   for ( int i = 0; i < myObjects.length(); i++ ) {
277     GEOM::shape_type aType = myObjects[i]->GetShapeType();
278     if ( aType != GEOM::FACE && aType != GEOM::SHELL && aType != GEOM::SOLID ) {
279       msg = tr( "ERROR_SHAPE_TYPE" );
280       return false;
281     }
282   }
283   return GroupPoints->SpinBox_DX->isValid( msg, absentParams, !IsPreview() );
284 }
285
286 //=================================================================================
287 // function : execute
288 // purpose  :
289 //=================================================================================
290 bool TransformationGUI_OffsetDlg::execute( ObjectList& objects )
291 {
292   bool res = false;
293   
294   GEOM::GEOM_Object_var anObj;
295   
296   GEOM::GEOM_ITransformOperations_var anOper = GEOM::GEOM_ITransformOperations::_narrow(getOperation());
297
298   if ( GroupPoints->CheckButton1->isChecked() || IsPreview() ) {
299     for ( int i = 0; i < myObjects.length(); i++ ) {
300       
301       anObj = anOper->OffsetShapeCopy( myObjects[i], GetOffset() );
302       if ( !anObj->_is_nil() ) {
303         if(!IsPreview()) {
304           myNoteBook->setParameters(anObj, 1, GroupPoints->SpinBox_DX);
305         }
306         objects.push_back( anObj._retn() );
307       }
308     }
309   }
310   else {
311     for ( int i = 0; i < myObjects.length(); i++ ) {
312       anObj = anOper->OffsetShape( myObjects[i], GetOffset() );
313       if ( !anObj->_is_nil() )
314         objects.push_back( anObj._retn() );
315     }
316   }
317   res = true;
318     
319   return res;
320 }
321
322 //=================================================================================
323 // function : restoreSubShapes
324 // purpose  :
325 //=================================================================================
326 void TransformationGUI_OffsetDlg::restoreSubShapes( SALOMEDS::Study_ptr   theStudy,
327                                                     SALOMEDS::SObject_ptr theSObject )
328 {
329   if ( mainFrame()->CheckBoxRestoreSS->isChecked() ) {
330     // empty list of arguments means that all arguments should be restored
331     getGeomEngine()->RestoreSubShapesSO( theStudy, theSObject, GEOM::ListOfGO(),
332                                          /*theFindMethod=*/GEOM::FSM_Transformed,
333                                          /*theInheritFirstArg=*/true );
334   }
335 }
336
337 //=================================================================================
338 // function : GetOffset()
339 // purpose  :
340 //=================================================================================
341 double TransformationGUI_OffsetDlg::GetOffset() const
342 {
343   return GroupPoints->SpinBox_DX->value();
344 }
345
346 //=================================================================================
347 // function :  CreateCopyModeChanged()
348 // purpose  :
349 //=================================================================================
350 void TransformationGUI_OffsetDlg::CreateCopyModeChanged( bool isCreateCopy )
351 {
352   mainFrame()->GroupBoxName->setEnabled( isCreateCopy );
353 }