Salome HOME
Code refactoring
[modules/geom.git] / src / BuildGUI / BuildGUI_SolidDlg.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   : BuildGUI_SolidDlg.cxx
25 // Author : Damien COQUERET, Open CASCADE S.A.S.
26 //
27 #include "BuildGUI_SolidDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <GEOMImpl_Types.hxx>
34
35 #include <SUIT_ResourceMgr.h>
36 #include <SUIT_MessageBox.h>
37 #include <SUIT_Session.h>
38 #include <SalomeApp_Application.h>
39 #include <LightApp_SelectionMgr.h>
40
41 //=================================================================================
42 // class    : BuildGUI_SolidDlg()
43 // purpose  : Constructs a BuildGUI_SolidDlg which is a child of 'parent', with the 
44 //            name 'name' and widget flags set to 'f'.
45 //            The dialog will by default be modeless, unless you set 'modal' to
46 //            TRUE to construct a modal dialog.
47 //=================================================================================
48 BuildGUI_SolidDlg::BuildGUI_SolidDlg( GeometryGUI* theGeometryGUI, QWidget* parent )
49   : GEOMBase_Skeleton( theGeometryGUI, parent )
50 {
51   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_BUILD_SOLID" ) ) );
52   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
53
54   setWindowTitle( tr( "GEOM_SOLID_TITLE" ) );
55     
56   /***************************************************************/
57   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_SOLID" ) );
58   mainFrame()->RadioButton1->setIcon( image0 );
59   mainFrame()->RadioButton2->setAttribute( Qt::WA_DeleteOnClose );
60   mainFrame()->RadioButton2->close();
61   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
62   mainFrame()->RadioButton3->close();
63
64   GroupSolid = new DlgRef_1Sel1Check( centralWidget() );
65
66   GroupSolid->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
67   GroupSolid->TextLabel1->setText( tr( "GEOM_OBJECTS" ) );
68   GroupSolid->CheckButton1->setText( tr( "GEOM_CREATE_SINGLE_SOLID" ) );
69   GroupSolid->PushButton1->setIcon( image1 );
70   GroupSolid->LineEdit1->setReadOnly( true );
71   
72   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
73   layout->setMargin( 0 ); layout->setSpacing( 6 );
74   layout->addWidget( GroupSolid );
75   /***************************************************************/
76
77   setHelpFileName("create_solid_page.html");
78
79   /* Initialisations */
80   Init();
81 }
82
83
84 //=================================================================================
85 // function : ~BuildGUI_SolidDlg()
86 // purpose  : Destroys the object and frees any allocated resources
87 //=================================================================================
88 BuildGUI_SolidDlg::~BuildGUI_SolidDlg()
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 BuildGUI_SolidDlg::Init()
99 {
100   /* init variables */
101   myEditCurrentArgument = GroupSolid->LineEdit1;
102   GroupSolid->LineEdit1->setReadOnly( true );
103   GroupSolid->CheckButton1->setChecked( true );
104
105   myOkShells = false;
106
107   globalSelection( GEOM_SHELL );
108
109   /* signals and slots connections */
110   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
111   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
112
113   connect( GroupSolid->PushButton1,  SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
114   connect( GroupSolid->CheckButton1, SIGNAL( toggled( bool ) ), this, SLOT( EnableNameField( bool ) ) );
115
116   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
117            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
118
119   initName( tr( "GEOM_SOLID" ) );
120   SelectionIntoArgument();
121 }
122
123
124 //=================================================================================
125 // function : ClickOnOk()
126 // purpose  :
127 //=================================================================================
128 void BuildGUI_SolidDlg::ClickOnOk()
129 {
130   if ( ClickOnApply() )
131     ClickOnCancel();
132 }
133
134 //=================================================================================
135 // function : ClickOnApply()
136 // purpose  :
137 //=================================================================================
138 bool BuildGUI_SolidDlg::ClickOnApply()
139 {
140   for ( int i = 0, n = myShells.length(); i< n; i++ ) {
141     if ( !isClosed(i)) {
142       QString aName = GEOMBase::GetName( myShells[i] );
143       SUIT_MessageBox::warning( (QWidget*)SUIT_Session::session()->activeApplication()->desktop(),
144                                  QObject::tr("WRN_WARNING"),
145                                  QObject::tr("WRN_SHAPE_UNCLOSED").arg(aName) ,
146                                  QObject::tr("BUT_OK") );
147        return false;
148     }
149   }
150
151   if ( !onAccept() )
152     return false;
153
154   initName();
155   return true;
156 }
157
158
159 //=================================================================================
160 // function : SelectionIntoArgument()
161 // purpose  : Called when selection as changed or other case
162 //=================================================================================
163 void BuildGUI_SolidDlg::SelectionIntoArgument()
164 {
165   myEditCurrentArgument->setText( "" );
166   QString aString = "";
167   
168   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
169   SALOME_ListIO aSelList;
170   aSelMgr->selectedObjects(aSelList);
171
172   myOkShells = false;
173   int nbSel = GEOMBase::GetNameOfSelectedIObjects(aSelList, aString);
174   if ( nbSel == 0 )
175     return;
176   if ( nbSel != 1 )
177     aString = tr( "%1_objects" ).arg( nbSel );
178   
179   GEOMBase::ConvertListOfIOInListOfGO(aSelList, myShells);
180   if ( !myShells.length() )
181     return;
182   
183   myEditCurrentArgument->setText( aString );
184   myOkShells = true;
185 }
186
187 //=================================================================================
188 // function : SetEditCurrentArgument()
189 // purpose  :
190 //=================================================================================
191 void BuildGUI_SolidDlg::SetEditCurrentArgument()
192 {
193   QPushButton* send = (QPushButton*)sender();
194   if ( send != GroupSolid->PushButton1 )
195     return;
196   
197   globalSelection( GEOM_SHELL );
198   myEditCurrentArgument = GroupSolid->LineEdit1;
199
200   myEditCurrentArgument->setFocus();
201   SelectionIntoArgument();
202 }
203
204
205 //=================================================================================
206 // function : ActivateThisDialog()
207 // purpose  :
208 //=================================================================================
209 void BuildGUI_SolidDlg::ActivateThisDialog()
210 {
211   GEOMBase_Skeleton::ActivateThisDialog();
212   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
213            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
214   globalSelection( GEOM_SHELL );
215 }
216
217
218 //=================================================================================
219 // function : enterEvent()
220 // purpose  :
221 //=================================================================================
222 void BuildGUI_SolidDlg::enterEvent( QEvent* )
223 {
224   if ( !mainFrame()->GroupConstructors->isEnabled() )
225     ActivateThisDialog();
226 }
227
228
229 //=================================================================================
230 // function :  EnableNameField()
231 // purpose  :
232 //=================================================================================
233 void  BuildGUI_SolidDlg::EnableNameField( bool toEnable )
234 {
235   mainFrame()->GroupBoxName->setEnabled( toEnable ); 
236 }
237
238 //=================================================================================
239 // function : createOperation
240 // purpose  :
241 //=================================================================================
242 GEOM::GEOM_IOperations_ptr BuildGUI_SolidDlg::createOperation()
243 {
244   return getGeomEngine()->GetIShapesOperations( getStudyId() );
245 }
246
247 //=================================================================================
248 // function : isValid
249 // purpose  :
250 //=================================================================================
251 bool BuildGUI_SolidDlg::isValid( QString& )
252 {
253   return myOkShells;
254 }
255
256 //=================================================================================
257 // function : isClosed
258 // purpose  : Check the object 'i' in myShells list is closed or unclosed
259 //=================================================================================
260 bool BuildGUI_SolidDlg::isClosed(int i)
261 {
262   GEOM::GEOM_Object_var aShape = myShells[i];
263   GEOM::GEOM_IKindOfShape::shape_kind aKind;
264   GEOM::ListOfLong_var anInts;
265   GEOM::ListOfDouble_var aDbls;
266
267   if (aShape->_is_nil()) {
268     MESSAGE ("Shape is NULL!!!");
269     return false;
270   }
271
272   GEOM::GEOM_IMeasureOperations_var anOp = myGeomGUI->GetGeomGen()->GetIMeasureOperations( getStudyId() );
273
274   // Detect kind of shape and parameters
275   aKind = anOp->KindOfShape(aShape, anInts, aDbls);
276
277   if ( !anOp->IsDone() ) {
278     MESSAGE ("KindOfShape Operation is NOT DONE!!!");
279     return false;
280   }
281   
282   if ( anInts[0] == 1 )
283     return true;
284   else if ( anInts[0] == 2 )
285     return false;
286  
287   return false;
288 }
289
290 //=================================================================================
291 // function : execute
292 // purpose  :
293 //=================================================================================
294 bool BuildGUI_SolidDlg::execute( ObjectList& objects )
295 {
296   bool toCreateSingleSolid = GroupSolid->CheckButton1->isChecked();
297   
298   GEOM::GEOM_IShapesOperations_var anOper = GEOM::GEOM_IShapesOperations::_narrow( getOperation() );
299     
300   if ( toCreateSingleSolid ) {
301     GEOM::GEOM_Object_var anObj = anOper->MakeSolidShells( myShells );
302
303     if ( !anObj->_is_nil() )
304       objects.push_back( anObj._retn() );
305   }
306   else {
307     for ( int i = 0, n = myShells.length(); i< n; i++ ) {
308       GEOM::GEOM_Object_var anObj = anOper->MakeSolidShell( myShells[ i ] );
309
310      if ( !anObj->_is_nil() )
311        objects.push_back( anObj._retn() );
312     }
313   }
314
315   return true;
316 }
317