Salome HOME
Update copyright
[modules/geom.git] / src / RepairGUI / RepairGUI_FreeBoundDlg.cxx
1 // Copyright (C) 2007-2011  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   : RepairGUI_FreeBoundDlg.cxx
25 // Author : Sergey LITONIN, Open CASCADE S.A.S. (sergey.litonin@opencascade.com)
26 //
27 #include "RepairGUI_FreeBoundDlg.h"
28
29 #include <GEOMBase.h>
30 #include <GeometryGUI.h>
31 #include <GEOM_Displayer.h>
32 #include <GEOMImpl_Types.hxx>
33
34 #include <SalomeApp_Application.h>
35 #include <LightApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
37 #include <SUIT_MessageBox.h>
38 #include <SUIT_Desktop.h>
39 #include <SUIT_Session.h>
40 #include <SUIT_ResourceMgr.h>
41
42 #include <TColStd_MapOfInteger.hxx>
43
44 #include <QLineEdit>
45 #include <QLabel>
46 #include <QHBoxLayout>
47 #include <QVBoxLayout>
48 #include <QGridLayout>
49 #include <QGroupBox>
50 #include <QPushButton>
51 #include <QKeyEvent>
52
53 #define SPACING 6
54 #define MARGIN  9
55
56 /*!
57   Class       : RepairGUI_FreeBoundDlg
58   Description : Dialog for displaying free boundaries of selected face, shell or solid
59 */
60
61 //=================================================================================
62 // function : RepairGUI_FreeBoundDlg
63 // purpose  : Constructor
64 //=================================================================================
65 RepairGUI_FreeBoundDlg::RepairGUI_FreeBoundDlg( GeometryGUI* theGUI, QWidget* theParent )
66   : QDialog( theParent, 0 ),
67     GEOMBase_Helper( dynamic_cast<SUIT_Desktop*>( theParent ) ),
68     myGeomGUI( theGUI )
69 {
70   setAttribute( Qt::WA_DeleteOnClose );
71
72   setWindowTitle( tr( "CAPTION" ) );
73
74   QPixmap iconSelect( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
75   
76   QGroupBox* aMainGrp = new QGroupBox( tr( "FREE_BOUND" ), this );
77   
78   QLabel* lab = new QLabel( tr( "GEOM_OBJECT" ), aMainGrp );
79   QPushButton* btn = new QPushButton( aMainGrp );
80   btn->setIcon( iconSelect );
81   myEdit = new QLineEdit( aMainGrp );
82   myEdit->setReadOnly( true );
83   myEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
84
85   myClosedLbl = new QLabel( tr( "NUMBER_CLOSED" ), aMainGrp );
86   myOpenLbl   = new QLabel( tr( "NUMBER_OPEN" ),   aMainGrp );
87   myClosedLbl->setMinimumWidth( 150 );
88   myOpenLbl->setMinimumWidth( 150 );
89   
90   QGridLayout* aMainGrpLayout = new QGridLayout( aMainGrp );
91   aMainGrpLayout->setMargin( MARGIN ); aMainGrpLayout->setSpacing( SPACING );
92   aMainGrpLayout->addWidget( lab,    0, 0 );
93   aMainGrpLayout->addWidget( btn,    0, 1 );
94   aMainGrpLayout->addWidget( myEdit, 0, 2 );
95   aMainGrpLayout->addWidget( myClosedLbl, 1, 0, 1, 3 );
96   aMainGrpLayout->addWidget( myOpenLbl,   2, 0, 1, 3 );
97
98   QFrame* aFrame = new QFrame( this );
99   aFrame->setFrameStyle( QFrame::Box | QFrame::Sunken );
100   QPushButton* aCloseBtn = new QPushButton( tr( "GEOM_BUT_CLOSE" ), aFrame );
101   QPushButton* aHelpBtn = new QPushButton( tr( "GEOM_BUT_HELP" ), aFrame );
102   QHBoxLayout* aBtnLay = new QHBoxLayout( aFrame );
103   aBtnLay->setMargin( MARGIN ); aBtnLay->setSpacing( SPACING );
104   aBtnLay->addWidget( aCloseBtn );
105   aBtnLay->addSpacing( SPACING ); aBtnLay->addStretch();
106   aBtnLay->addWidget( aHelpBtn );
107
108   QVBoxLayout* aLay = new QVBoxLayout( this );
109   aLay->setSpacing( SPACING );
110   aLay->setMargin( MARGIN );
111   aLay->addWidget( aMainGrp );
112   aLay->addWidget( aFrame );
113
114   myHelpFileName = "using_measurement_tools_page.html#boundaries_anchor";
115
116   connect( aCloseBtn, SIGNAL( clicked() ), SLOT( onClose() ) );
117   connect( aHelpBtn,  SIGNAL( clicked() ), SLOT( onHelp() ) );
118
119   Init();
120 }
121
122 //=================================================================================
123 // function : ~RepairGUI_FreeBoundDlg
124 // purpose  : Destructor
125 //=================================================================================
126 RepairGUI_FreeBoundDlg::~RepairGUI_FreeBoundDlg()
127 {
128 }
129
130 //=================================================================================
131 // function : onClose
132 // purpose  : SLOT. Called when "close" button pressed. Close dialog
133 //=================================================================================
134 void RepairGUI_FreeBoundDlg::onClose()
135 {
136   globalSelection();
137   disconnect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 0, this, 0 );
138   myGeomGUI->SetActiveDialogBox( 0 );
139   reject();
140   erasePreview();
141 }
142
143 //=================================================================================
144 // function : onHelp()
145 // purpose  :
146 //=================================================================================
147 void RepairGUI_FreeBoundDlg::onHelp()
148 {
149   LightApp_Application* app = (LightApp_Application*)( SUIT_Session::session()->activeApplication() );
150   if ( app )
151     app->onHelpContextModule( myGeomGUI ? app->moduleName( myGeomGUI->moduleName() ) : QString(""), myHelpFileName );
152   else {
153     QString platform;
154 #ifdef WIN32
155     platform = "winapplication";
156 #else
157     platform = "application";
158 #endif
159     SUIT_MessageBox::warning( this, 
160                               tr( "WRN_WARNING" ), 
161                               tr( "EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
162                               arg( app->resourceMgr()->stringValue( "ExternalBrowser", 
163                                                                     platform ) ).arg( myHelpFileName ) );
164   }
165 }
166
167 //=================================================================================
168 // function : onDeactivate
169 // purpose  : Deactivate this dialog
170 //=================================================================================
171 void RepairGUI_FreeBoundDlg::onDeactivate()
172 {
173   setEnabled( false );
174   globalSelection();
175   disconnect( myGeomGUI->getApp()->selectionMgr(), 0, this, 0 );
176   myGeomGUI->SetActiveDialogBox( 0 );
177 }
178
179 //=================================================================================
180 // function : onActivate
181 // purpose  : Activate this dialog
182 //=================================================================================
183 void RepairGUI_FreeBoundDlg::onActivate()
184 {
185   myGeomGUI->EmitSignalDeactivateDialog();
186   setEnabled( true );
187   myGeomGUI->SetActiveDialogBox( this );
188   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
189            SIGNAL( currentSelectionChanged() ), SLOT( onSelectionDone() ) );
190   activateSelection();
191   onSelectionDone();
192 }
193
194 //=================================================================================
195 // function : onSelectionDone
196 // purpose  : SLOT. Called when selection changed.
197 //=================================================================================
198 void RepairGUI_FreeBoundDlg::onSelectionDone()
199 {
200   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
201   SALOME_ListIO aSelList;
202   aSelMgr->selectedObjects(aSelList);
203
204   if ( aSelList.Extent() != 1 )
205     return;
206
207   GEOM::GEOM_Object_var anObj =
208     GEOMBase::ConvertIOinGEOMObject( aSelList.First() );
209
210   if ( !GEOMBase::IsShape( anObj ) )
211     return;
212   else {
213     myObj = anObj;
214     displayPreview( true, false, true, true, 3 );
215   }
216 }
217
218 //=================================================================================
219 // function : Init
220 // purpose  : Initialize dialog fields
221 //=================================================================================
222 void RepairGUI_FreeBoundDlg::Init()
223 {
224   myNbClosed = myNbOpen = 0;
225   myObj = GEOM::GEOM_Object::_nil();
226
227   connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), SLOT  ( onDeactivate() ) );
228   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
229            SIGNAL( currentSelectionChanged() ), SLOT( onSelectionDone() ) );
230
231   activateSelection();
232   onSelectionDone();
233 }
234
235 //=================================================================================
236 // function : enterEvent
237 // purpose  : Activate dialog
238 //=================================================================================
239 void RepairGUI_FreeBoundDlg::enterEvent( QEvent* )
240 {
241   onActivate();
242 }
243
244 //=================================================================================
245 // function : closeEvent
246 // purpose  : Close dialog
247 //=================================================================================
248 void RepairGUI_FreeBoundDlg::closeEvent( QCloseEvent* )
249 {
250   onClose();
251 }
252
253 //=================================================================================
254 // function : activateSelection
255 // purpose  : activate selection of faces, shells, and solids
256 //=================================================================================
257 void RepairGUI_FreeBoundDlg::activateSelection()
258 {
259   TColStd_MapOfInteger aMap;
260   aMap.Add( GEOM_FACE );
261   aMap.Add( GEOM_SHELL );
262   aMap.Add( GEOM_SOLID );
263   aMap.Add( GEOM_COMPOUND );
264   globalSelection( aMap );
265 }
266
267 //=================================================================================
268 // function : createOperation
269 // purpose  : Create operation
270 //=================================================================================
271 GEOM::GEOM_IOperations_ptr RepairGUI_FreeBoundDlg::createOperation()
272 {
273   return getGeomEngine()->GetIHealingOperations( getStudyId() );
274 }
275
276 //=================================================================================
277 // function : isValid
278 // purpose  :
279 //=================================================================================
280 bool RepairGUI_FreeBoundDlg::isValid( QString& )
281 {
282   return !myObj->_is_nil();
283 }
284
285 //=================================================================================
286 // function : execute
287 // purpose  : Get free boundaries
288 //=================================================================================
289 bool RepairGUI_FreeBoundDlg::execute( ObjectList& objects )
290 {
291   if ( !IsPreview() || myObj->_is_nil() )
292     return false;
293
294   GEOM::ListOfGO_var aClosed, anOpen;
295
296   GEOM::GEOM_IHealingOperations_var anOper = GEOM::GEOM_IHealingOperations::_narrow( getOperation() );
297   bool result = anOper->GetFreeBoundary( myObj, aClosed, anOpen );
298
299   if ( result ) {
300     myNbClosed = aClosed->length();
301     myNbOpen = anOpen->length();
302     int i;
303     for ( i = 0; i < myNbClosed; i++ )
304       objects.push_back( aClosed[i]._retn() );
305     for ( i = 0; i < myNbOpen; i++ )
306       objects.push_back( anOpen[i]._retn() );
307
308     myEdit->setText( GEOMBase::GetName( myObj ) );
309     QString aLabelText = tr( "NUMBER_CLOSED" ) + QString( "%1" ).arg( myNbClosed );
310     myClosedLbl->setText( aLabelText );
311     aLabelText = tr( "NUMBER_OPEN" ) + QString( "%1" ).arg( myNbOpen );
312     myOpenLbl->setText( aLabelText );
313   }
314   else {
315     myEdit->setText( GEOMBase::GetName( myObj ) );
316     myClosedLbl->setText( tr( "NUMBER_CLOSED" ) );
317     myOpenLbl->setText( tr( "NUMBER_OPEN" ) );
318   }
319
320   return result;
321 }
322
323 //=================================================================================
324 // function : keyPressEvent()
325 // purpose  :
326 //=================================================================================
327 void RepairGUI_FreeBoundDlg::keyPressEvent( QKeyEvent* e )
328 {
329   QDialog::keyPressEvent( e );
330   if ( e->isAccepted() )
331     return;
332
333   if ( e->key() == Qt::Key_F1 ) {
334     e->accept();
335     onHelp();
336   }
337 }