Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/geom.git] / src / RepairGUI / RepairGUI_FreeBoundDlg.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   : RepairGUI_FreeBoundDlg.cxx
24 // Author : Sergey LITONIN, Open CASCADE S.A.S. (sergey.litonin@opencascade.com)
25 //
26 #include "RepairGUI_FreeBoundDlg.h"
27
28 #include <GEOMBase.h>
29 #include <GeometryGUI.h>
30 #include <GEOM_Displayer.h>
31 #include <GEOMImpl_Types.hxx>
32
33 #include <SalomeApp_Application.h>
34 #include <LightApp_Application.h>
35 #include <LightApp_SelectionMgr.h>
36 #include <SUIT_MessageBox.h>
37 #include <SUIT_Desktop.h>
38 #include <SUIT_Session.h>
39 #include <SUIT_ResourceMgr.h>
40
41 #include <TColStd_MapOfInteger.hxx>
42
43 #include <QLineEdit>
44 #include <QLabel>
45 #include <QHBoxLayout>
46 #include <QVBoxLayout>
47 #include <QGridLayout>
48 #include <QGroupBox>
49 #include <QPushButton>
50 #include <QKeyEvent>
51
52 #define SPACING 6
53 #define MARGIN  9
54
55 /*!
56   Class       : RepairGUI_FreeBoundDlg
57   Description : Dialog for displaying free boundaries of selected face, shell or solid
58 */
59
60 //=================================================================================
61 // function : RepairGUI_FreeBoundDlg
62 // purpose  : Constructor
63 //=================================================================================
64 RepairGUI_FreeBoundDlg::RepairGUI_FreeBoundDlg( GeometryGUI* theGUI, QWidget* theParent )
65   : QDialog( theParent, false ),
66     GEOMBase_Helper( dynamic_cast<SUIT_Desktop*>( theParent ) ),
67     myGeomGUI( theGUI )
68 {
69   setAttribute( Qt::WA_DeleteOnClose );
70
71   setWindowTitle( tr( "CAPTION" ) );
72
73   QPixmap iconSelect( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
74   
75   QGroupBox* aMainGrp = new QGroupBox( tr( "FREE_BOUND" ), this );
76   
77   QLabel* lab = new QLabel( tr( "GEOM_OBJECT" ), aMainGrp );
78   QPushButton* btn = new QPushButton( aMainGrp );
79   btn->setIcon( iconSelect );
80   myEdit = new QLineEdit( aMainGrp );
81   myEdit->setReadOnly( true );
82   myEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
83
84   myClosedLbl = new QLabel( tr( "NUMBER_CLOSED" ), aMainGrp );
85   myOpenLbl   = new QLabel( tr( "NUMBER_OPEN" ),   aMainGrp );
86   myClosedLbl->setMinimumWidth( 150 );
87   myOpenLbl->setMinimumWidth( 150 );
88   
89   QGridLayout* aMainGrpLayout = new QGridLayout( aMainGrp );
90   aMainGrpLayout->setMargin( MARGIN ); aMainGrpLayout->setSpacing( SPACING );
91   aMainGrpLayout->addWidget( lab,    0, 0 );
92   aMainGrpLayout->addWidget( btn,    0, 1 );
93   aMainGrpLayout->addWidget( myEdit, 0, 2 );
94   aMainGrpLayout->addWidget( myClosedLbl, 1, 0, 1, 3 );
95   aMainGrpLayout->addWidget( myOpenLbl,   2, 0, 1, 3 );
96
97   QFrame* aFrame = new QFrame( this );
98   aFrame->setFrameStyle( QFrame::Box | QFrame::Sunken );
99   QPushButton* aCloseBtn = new QPushButton( tr( "GEOM_BUT_CLOSE" ), aFrame );
100   QPushButton* aHelpBtn = new QPushButton( tr( "GEOM_BUT_HELP" ), aFrame );
101   QHBoxLayout* aBtnLay = new QHBoxLayout( aFrame );
102   aBtnLay->setMargin( MARGIN ); aBtnLay->setSpacing( SPACING );
103   aBtnLay->addWidget( aCloseBtn );
104   aBtnLay->addSpacing( SPACING ); aBtnLay->addStretch();
105   aBtnLay->addWidget( aHelpBtn );
106
107   QVBoxLayout* aLay = new QVBoxLayout( this );
108   aLay->setSpacing( SPACING );
109   aLay->setMargin( MARGIN );
110   aLay->addWidget( aMainGrp );
111   aLay->addWidget( aFrame );
112
113   myHelpFileName = "using_measurement_tools_page.html#boundaries_anchor";
114
115   connect( aCloseBtn, SIGNAL( clicked() ), SLOT( onClose() ) );
116   connect( aHelpBtn,  SIGNAL( clicked() ), SLOT( onHelp() ) );
117
118   Init();
119 }
120
121 //=================================================================================
122 // function : ~RepairGUI_FreeBoundDlg
123 // purpose  : Destructor
124 //=================================================================================
125 RepairGUI_FreeBoundDlg::~RepairGUI_FreeBoundDlg()
126 {
127 }
128
129 //=================================================================================
130 // function : onClose
131 // purpose  : SLOT. Called when "close" button pressed. Close dialog
132 //=================================================================================
133 void RepairGUI_FreeBoundDlg::onClose()
134 {
135   globalSelection();
136   disconnect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 0, this, 0 );
137   myGeomGUI->SetActiveDialogBox( 0 );
138   reject();
139   erasePreview();
140 }
141
142 //=================================================================================
143 // function : onHelp()
144 // purpose  :
145 //=================================================================================
146 void RepairGUI_FreeBoundDlg::onHelp()
147 {
148   LightApp_Application* app = (LightApp_Application*)( SUIT_Session::session()->activeApplication() );
149   if ( app )
150     app->onHelpContextModule( myGeomGUI ? app->moduleName( myGeomGUI->moduleName() ) : QString(""), myHelpFileName );
151   else {
152     QString platform;
153 #ifdef WIN32
154     platform = "winapplication";
155 #else
156     platform = "application";
157 #endif
158     SUIT_MessageBox::warning( this, 
159                               tr( "WRN_WARNING" ), 
160                               tr( "EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
161                               arg( app->resourceMgr()->stringValue( "ExternalBrowser", 
162                                                                     platform ) ).arg( myHelpFileName ) );
163   }
164 }
165
166 //=================================================================================
167 // function : onDeactivate
168 // purpose  : Deactivate this dialog
169 //=================================================================================
170 void RepairGUI_FreeBoundDlg::onDeactivate()
171 {
172   setEnabled( false );
173   globalSelection();
174   disconnect( myGeomGUI->getApp()->selectionMgr(), 0, this, 0 );
175   myGeomGUI->SetActiveDialogBox( 0 );
176 }
177
178 //=================================================================================
179 // function : onActivate
180 // purpose  : Activate this dialog
181 //=================================================================================
182 void RepairGUI_FreeBoundDlg::onActivate()
183 {
184   myGeomGUI->EmitSignalDeactivateDialog();
185   setEnabled( true );
186   myGeomGUI->SetActiveDialogBox( this );
187   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
188            SIGNAL( currentSelectionChanged() ), SLOT( onSelectionDone() ) );
189   activateSelection();
190   onSelectionDone();
191 }
192
193 //=================================================================================
194 // function : onSelectionDone
195 // purpose  : SLOT. Called when selection changed.
196 //=================================================================================
197 void RepairGUI_FreeBoundDlg::onSelectionDone()
198 {
199   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
200   SALOME_ListIO aSelList;
201   aSelMgr->selectedObjects(aSelList);
202
203   if ( aSelList.Extent() != 1 )
204     return;
205
206   Standard_Boolean isOk = Standard_False;
207   GEOM::GEOM_Object_var anObj =
208     GEOMBase::ConvertIOinGEOMObject( aSelList.First(), isOk );
209
210   if ( !isOk || anObj->_is_nil() || !GEOMBase::IsShape( anObj ) )
211     return;
212   else {
213     myObj = anObj;
214     displayPreview( 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   bool result = GEOM::GEOM_IHealingOperations::_narrow(
297     getOperation() )->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 }