Salome HOME
1cc024fd4042e25bfd8efcbc41b0e3eb35ef10f7
[modules/geom.git] / src / TransformationGUI / TransformationGUI_OffsetDlg.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   : TransformationGUI_OffsetDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26 //
27 #include "TransformationGUI_OffsetDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SUIT_ResourceMgr.h>
34 #include <SUIT_Session.h>
35 #include <SalomeApp_Application.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   myObjects.clear();
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   initSpinBox( GroupPoints->SpinBox_DX, COORD_MIN, COORD_MAX, step, "length_precision" );
112   GroupPoints->SpinBox_DX->setValue( 1e-05 );
113   
114   // Activate Create a Copy mode
115   GroupPoints->CheckButton1->setChecked( true );
116   CreateCopyModeChanged();
117
118   mainFrame()->GroupBoxPublish->show();
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() ) );
130   
131   initName( tr( "GEOM_OFFSET" ) );
132
133   globalSelection( GEOM_ALLSHAPES );
134   resize(100,100);
135   SelectionIntoArgument();
136 }
137
138
139 //=================================================================================
140 // function : ClickOnOk()
141 // purpose  :
142 //=================================================================================
143 void TransformationGUI_OffsetDlg::ClickOnOk()
144 {
145   if ( ClickOnApply() )
146     ClickOnCancel();
147 }
148
149
150 //=================================================================================
151 // function : ClickOnApply()
152 // purpose  :
153 //=================================================================================
154 bool TransformationGUI_OffsetDlg::ClickOnApply()
155 {
156   if ( !onAccept( GroupPoints->CheckButton1->isChecked() ) )
157     return false;
158   
159   initName();
160   return true;
161 }
162
163
164 //=================================================================================
165 // function : SelectionIntoArgument()
166 // purpose  : Called when selection has changed
167 //=================================================================================
168 void TransformationGUI_OffsetDlg::SelectionIntoArgument()
169 {
170   myObjects = getSelected( TopAbs_SHAPE, -1 );
171   if ( !myObjects.isEmpty() ) {
172     QString aName = myObjects.count() > 1 ? QString( "%1_objects").arg( myObjects.count() ) : GEOMBase::GetName( myObjects[0].get() );
173     myEditCurrentArgument->setText( aName );
174   }
175   else {
176     myEditCurrentArgument->setText("");
177   }
178
179   displayPreview();
180 }
181
182
183 //=================================================================================
184 // function : SetEditCurrentArgument()
185 // purpose  :
186 //=================================================================================
187 void TransformationGUI_OffsetDlg::SetEditCurrentArgument()
188 {
189   QPushButton* send = (QPushButton*)sender();
190   
191   if ( send == GroupPoints->PushButton1 ) {
192     GroupPoints->PushButton1->setDown(true);
193     myEditCurrentArgument = GroupPoints->LineEdit1;
194     myEditCurrentArgument->setFocus();
195     SelectionIntoArgument();
196   }
197 }
198
199
200 //=================================================================================
201 // function : enterEvent()
202 // purpose  : when mouse enter onto the QWidget
203 //=================================================================================
204 void TransformationGUI_OffsetDlg::enterEvent( QEvent* )
205 {
206   if ( !mainFrame()->GroupConstructors->isEnabled() )
207     ActivateThisDialog();
208 }
209
210
211 //=================================================================================
212 // function : ActivateThisDialog()
213 // purpose  :
214 //=================================================================================
215 void TransformationGUI_OffsetDlg::ActivateThisDialog()
216 {
217   GEOMBase_Skeleton::ActivateThisDialog();
218   connect( myGeomGUI->getApp()->selectionMgr(), 
219            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
220   globalSelection( GEOM_ALLSHAPES );
221   myEditCurrentArgument = GroupPoints->LineEdit1;
222   myEditCurrentArgument->setFocus();
223 }
224
225
226 //=================================================================================
227 // function : ValueChangedInSpinBox()
228 // purpose  :
229 //=================================================================================
230 void TransformationGUI_OffsetDlg::ValueChangedInSpinBox()
231 {
232   displayPreview();
233 }
234
235
236 //=================================================================================
237 // function : createOperation
238 // purpose  :
239 //=================================================================================
240 GEOM::GEOM_IOperations_ptr TransformationGUI_OffsetDlg::createOperation()
241 {
242   return getGeomEngine()->GetITransformOperations( getStudyId() );
243 }
244
245 //=================================================================================
246 // function : isValid
247 // purpose  :
248 //=================================================================================
249 bool TransformationGUI_OffsetDlg::isValid( QString& msg )
250 {
251   bool ok = GroupPoints->SpinBox_DX->isValid( msg, !IsPreview() ) && !myObjects.isEmpty();
252   for ( int i = 0; i < myObjects.count() && ok; i++ ) {
253     GEOM::shape_type aType = myObjects[i]->GetShapeType();
254     ok = aType == GEOM::FACE || aType == GEOM::SHELL || aType == GEOM::SOLID;
255     if ( !ok )
256       msg = tr( "ERROR_SHAPE_TYPE" );
257   }
258   return ok;
259 }
260
261 //=================================================================================
262 // function : execute
263 // purpose  :
264 //=================================================================================
265 bool TransformationGUI_OffsetDlg::execute( ObjectList& objects )
266 {
267   bool res = false;
268   
269   GEOM::GEOM_Object_var anObj;
270   
271   GEOM::GEOM_ITransformOperations_var anOper = GEOM::GEOM_ITransformOperations::_narrow(getOperation());
272
273   if ( GroupPoints->CheckButton1->isChecked() || IsPreview() ) {
274     for ( int i = 0; i < myObjects.count(); i++ ) {
275       
276       anObj = anOper->OffsetShapeCopy( myObjects[i].get(), GetOffset() );
277       if ( !anObj->_is_nil() ) {
278         if(!IsPreview()) {
279           anObj->SetParameters(GroupPoints->SpinBox_DX->text().toLatin1().constData());
280         }
281         objects.push_back( anObj._retn() );
282       }
283     }
284   }
285   else {
286     for ( int i = 0; i < myObjects.count(); i++ ) {
287       anObj = anOper->OffsetShape( myObjects[i].get(), GetOffset() );
288       if ( !anObj->_is_nil() )
289         objects.push_back( anObj._retn() );
290     }
291   }
292   res = true;
293     
294   return res;
295 }
296
297 //=================================================================================
298 // function : restoreSubShapes
299 // purpose  :
300 //=================================================================================
301 void TransformationGUI_OffsetDlg::restoreSubShapes( SALOMEDS::Study_ptr   theStudy,
302                                                     SALOMEDS::SObject_ptr theSObject )
303 {
304   if ( mainFrame()->CheckBoxRestoreSS->isChecked() ) {
305     // empty list of arguments means that all arguments should be restored
306     getGeomEngine()->RestoreSubShapesSO( theStudy, theSObject, GEOM::ListOfGO(),
307                                          /*theFindMethod=*/GEOM::FSM_Transformed,
308                                          /*theInheritFirstArg=*/true,
309                                          mainFrame()->CheckBoxAddPrefix->isChecked() );
310   }
311 }
312
313 //=================================================================================
314 // function : GetOffset()
315 // purpose  :
316 //=================================================================================
317 double TransformationGUI_OffsetDlg::GetOffset() const
318 {
319   return GroupPoints->SpinBox_DX->value();
320 }
321
322 //=================================================================================
323 // function :  CreateCopyModeChanged()
324 // purpose  :
325 //=================================================================================
326 void TransformationGUI_OffsetDlg::CreateCopyModeChanged()
327 {
328   mainFrame()->GroupBoxName->setEnabled( GroupPoints->CheckButton1->isChecked() );
329 }