]> SALOME platform Git repositories - modules/geom.git/blob - src/BuildGUI/BuildGUI_SolidDlg.cxx
Salome HOME
Fix hang-up when displaying sphere in OCC viewer
[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   myShells.clear();
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   if ( !onAccept() )
141     return false;
142
143   initName();
144   return true;
145 }
146
147
148 //=================================================================================
149 // function : SelectionIntoArgument()
150 // purpose  : Called when selection as changed or other case
151 //=================================================================================
152 void BuildGUI_SolidDlg::SelectionIntoArgument()
153 {
154   myEditCurrentArgument->setText( "" );
155
156   myShells = getSelected( TopAbs_SHELL, -1 );
157
158   if ( !myShells.isEmpty() ) {
159     QString aName = myShells.count() > 1 ? QString( "%1_objects").arg( myShells.count() ) : GEOMBase::GetName( myShells[0].get() );
160     myEditCurrentArgument->setText( aName );
161   }
162 }
163
164 //=================================================================================
165 // function : SetEditCurrentArgument()
166 // purpose  :
167 //=================================================================================
168 void BuildGUI_SolidDlg::SetEditCurrentArgument()
169 {
170   QPushButton* send = (QPushButton*)sender();
171   if ( send != GroupSolid->PushButton1 )
172     return;
173   
174   globalSelection( GEOM_SHELL );
175   myEditCurrentArgument = GroupSolid->LineEdit1;
176
177   myEditCurrentArgument->setFocus();
178   SelectionIntoArgument();
179 }
180
181
182 //=================================================================================
183 // function : ActivateThisDialog()
184 // purpose  :
185 //=================================================================================
186 void BuildGUI_SolidDlg::ActivateThisDialog()
187 {
188   GEOMBase_Skeleton::ActivateThisDialog();
189   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
190            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
191   globalSelection( GEOM_SHELL );
192 }
193
194
195 //=================================================================================
196 // function : enterEvent()
197 // purpose  :
198 //=================================================================================
199 void BuildGUI_SolidDlg::enterEvent( QEvent* )
200 {
201   if ( !mainFrame()->GroupConstructors->isEnabled() )
202     ActivateThisDialog();
203 }
204
205
206 //=================================================================================
207 // function :  EnableNameField()
208 // purpose  :
209 //=================================================================================
210 void  BuildGUI_SolidDlg::EnableNameField( bool toEnable )
211 {
212   mainFrame()->GroupBoxName->setEnabled( toEnable ); 
213 }
214
215 //=================================================================================
216 // function : createOperation
217 // purpose  :
218 //=================================================================================
219 GEOM::GEOM_IOperations_ptr BuildGUI_SolidDlg::createOperation()
220 {
221   return getGeomEngine()->GetIShapesOperations( getStudyId() );
222 }
223
224 //=================================================================================
225 // function : isValid
226 // purpose  :
227 //=================================================================================
228 bool BuildGUI_SolidDlg::isValid( QString& msg )
229 {
230   bool ok = !myShells.isEmpty();
231   for ( int i = 0, n = myShells.count(); i < n && ok; i++ ) {
232     ok = isClosed( myShells[i].get() );
233     if ( !ok )
234       msg = QObject::tr("WRN_SHAPE_UNCLOSED").arg( GEOMBase::GetName( myShells[i].get() ) );
235   }
236   return ok;
237 }
238
239 //=================================================================================
240 // function : isClosed
241 // purpose  : Check the object 'i' in myShells list is closed or unclosed
242 //=================================================================================
243 bool BuildGUI_SolidDlg::isClosed( GEOM::GEOM_Object_ptr shell )
244 {
245   bool ok = false;
246
247   GEOM::GEOM_IKindOfShape::shape_kind aKind;
248   GEOM::ListOfLong_var anInts;
249   GEOM::ListOfDouble_var aDbls;
250
251   if ( !CORBA::is_nil( shell ) ) {
252     GEOM::MeasureOpPtr anOp;
253     anOp.take( myGeomGUI->GetGeomGen()->GetIMeasureOperations( getStudyId() ) );
254     
255     // Detect kind of shape and parameters
256     aKind = anOp->KindOfShape(shell, anInts, aDbls);
257     
258     if ( anOp->IsDone() ) {
259       if ( anInts[0] == 1 )
260         ok = true;
261       else if ( anInts[0] == 2 )
262         ok = false;
263     }
264     else {
265       MESSAGE ("KindOfShape Operation is NOT DONE!!!");
266     }
267   }
268   else {
269     MESSAGE ("Shape is NULL!!!");
270   }
271
272   return ok;
273 }
274
275 //=================================================================================
276 // function : execute
277 // purpose  :
278 //=================================================================================
279 bool BuildGUI_SolidDlg::execute( ObjectList& objects )
280 {
281   GEOM::GEOM_IShapesOperations_var anOper = GEOM::GEOM_IShapesOperations::_narrow( getOperation() );
282     
283   if ( GroupSolid->CheckButton1->isChecked() ) {
284     GEOM::ListOfGO_var objlist = new GEOM::ListOfGO();
285     objlist->length( myShells.count() );
286     for ( int i = 0; i < myShells.count(); i++ )
287       objlist[i] = myShells[i].copy();
288
289     GEOM::GEOM_Object_var anObj = anOper->MakeSolidShells( objlist.in() );
290
291     if ( !anObj->_is_nil() )
292       objects.push_back( anObj._retn() );
293   }
294   else {
295     for ( int i = 0, n = myShells.count(); i< n; i++ ) {
296       GEOM::GEOM_Object_var anObj = anOper->MakeSolidShell( myShells[ i ].get() );
297
298      if ( !anObj->_is_nil() )
299        objects.push_back( anObj._retn() );
300     }
301   }
302
303   return true;
304 }
305