1 // Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File : RepairGUI_FreeFacesDlg.cxx
25 // Author : Vladimir KLYACHIN, Open CASCADE S.A.S. (vladimir.klyachin@opencascade.com)
27 #include "RepairGUI_FreeFacesDlg.h"
29 #include <LightApp_Application.h>
30 #include <LightApp_SelectionMgr.h>
31 #include <SalomeApp_Application.h>
32 #include <SalomeApp_Tools.h>
34 #include <SUIT_MessageBox.h>
35 #include <SUIT_Session.h>
36 #include <SUIT_OverrideCursor.h>
37 #include <SUIT_Desktop.h>
38 #include <SUIT_ResourceMgr.h>
40 #include <GEOMImpl_Types.hxx>
42 #include <TopTools_IndexedMapOfShape.hxx>
43 #include <TColStd_MapOfInteger.hxx>
47 #include <GeometryGUI.h>
48 #include <GEOM_Displayer.h>
53 #include <QPushButton>
54 #include <QHBoxLayout>
55 #include <QVBoxLayout>
62 //=================================================================================
63 // class : RepairGUI_FreeFacesDlg()
64 // purpose : Constructs a RepairGUI_FreeFacesDlg which is a child of 'parent', with the
65 // name 'name' and widget flags set to 'f'.
66 // The dialog will by default be modeless, unless you set 'modal' to
67 // TRUE to construct a modal dialog.
68 //=================================================================================
69 RepairGUI_FreeFacesDlg::RepairGUI_FreeFacesDlg( GeometryGUI* GUI, QWidget* parent,
71 : QDialog( parent, false ),
72 GEOMBase_Helper( dynamic_cast<SUIT_Desktop*>( parent ) ),
76 setAttribute( Qt::WA_DeleteOnClose );
78 setSizeGripEnabled( true );
80 QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
82 setWindowTitle( tr( "GEOM_FREE_FACES_TITLE" ) );
84 /***************************************************************/
86 QGroupBox* aMainGrp = new QGroupBox( tr( "GEOM_SELECTED_SHAPE" ), this );
88 QLabel* lab = new QLabel( tr( "GEOM_OBJECT" ), aMainGrp );
89 mySelBtn = new QPushButton( aMainGrp );
90 mySelBtn->setIcon( image1 );
91 myEdit = new QLineEdit( aMainGrp );
92 myEdit->setReadOnly( true );
93 myEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
94 myEdit->setMinimumWidth( MIN_WIDTH );
96 QHBoxLayout* aMainLay = new QHBoxLayout( aMainGrp );
97 aMainLay->setSpacing( SPACING );
98 aMainLay->setMargin( MARGIN );
99 aMainLay->addWidget( lab );
100 aMainLay->addWidget( mySelBtn );
101 aMainLay->addWidget( myEdit );
103 QFrame* aFrame = new QFrame( this );
104 aFrame->setFrameStyle( QFrame::Box | QFrame::Sunken );
105 QPushButton* aCloseBtn = new QPushButton( tr( "GEOM_BUT_CLOSE" ), aFrame );
106 QPushButton* aHelpBtn = new QPushButton( tr( "GEOM_BUT_HELP" ), aFrame );
108 QHBoxLayout* aBtnLay = new QHBoxLayout( aFrame );
109 aBtnLay->setSpacing( SPACING );
110 aBtnLay->setMargin( MARGIN );
111 aBtnLay->addWidget( aCloseBtn );
112 aBtnLay->addSpacing( SPACING );
113 aBtnLay->addStretch();
114 aBtnLay->addWidget( aHelpBtn );
116 QVBoxLayout* aLay = new QVBoxLayout( this );
117 aLay->setSpacing( SPACING );
118 aLay->setMargin( MARGIN );
119 aLay->addWidget( aMainGrp );
121 aLay->addWidget( aFrame );
123 myHelpFileName = "using_measurement_tools_page.html#faces_anchor";
125 connect( aCloseBtn, SIGNAL( clicked() ), SLOT( onClose() ) );
126 connect( aHelpBtn, SIGNAL( clicked() ), SLOT( onHelp() ) );
127 connect( mySelBtn, SIGNAL( clicked() ),
128 this, SLOT ( onSetEditCurrentArgument() ) );
129 /***************************************************************/
135 //=================================================================================
136 // function : ~RepairGUI_FreeFacesDlg()
137 // purpose : Destroys the object and frees any allocated resources
138 //=================================================================================
139 RepairGUI_FreeFacesDlg::~RepairGUI_FreeFacesDlg()
144 //=================================================================================
145 // function : onClose
146 // purpose : SLOT. Called when "close" button pressed. Close dialog
147 //=================================================================================
148 void RepairGUI_FreeFacesDlg::onClose()
151 disconnect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 0, this, 0 );
152 myGeomGUI->SetActiveDialogBox( 0 );
157 //=================================================================================
158 // function : onHelp()
160 //=================================================================================
161 void RepairGUI_FreeFacesDlg::onHelp()
163 LightApp_Application* app = (LightApp_Application*)( SUIT_Session::session()->activeApplication() );
165 app->onHelpContextModule( myGeomGUI ? app->moduleName( myGeomGUI->moduleName() ) : QString(""), myHelpFileName );
169 platform = "winapplication";
171 platform = "application";
173 SUIT_MessageBox::warning( this,
175 tr( "EXTERNAL_BROWSER_CANNOT_SHOW_PAGE" ).
176 arg( app->resourceMgr()->stringValue( "ExternalBrowser",
178 arg( myHelpFileName ) );
182 //=================================================================================
183 // function : onDeactivate
184 // purpose : Deactivate this dialog
185 //=================================================================================
186 void RepairGUI_FreeFacesDlg::onDeactivate()
190 disconnect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 0, this, 0 );
191 myGeomGUI->SetActiveDialogBox( 0 );
194 //=================================================================================
195 // function : onActivate
196 // purpose : Activate this dialog
197 //=================================================================================
198 void RepairGUI_FreeFacesDlg::onActivate()
200 myGeomGUI->EmitSignalDeactivateDialog();
202 myGeomGUI->SetActiveDialogBox( this );
203 connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
204 SIGNAL( currentSelectionChanged() ), SLOT( onSelectionDone() ) );
208 //=================================================================================
211 //=================================================================================
212 void RepairGUI_FreeFacesDlg::Init()
214 myObj = GEOM::GEOM_Object::_nil();
216 /* signals and slots connections */
217 connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), SLOT ( onDeactivate() ) );
218 connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
219 SIGNAL( currentSelectionChanged() ), SLOT ( onSelectionDone() ) );
225 //=================================================================================
226 // function : onSelectionDone
227 // purpose : SLOT. Called when selection changed.
228 //=================================================================================
229 void RepairGUI_FreeFacesDlg::onSelectionDone()
233 LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
234 SALOME_ListIO aSelList;
235 aSelMgr->selectedObjects(aSelList);
237 if ( aSelList.Extent() != 1 ) {
238 myEdit->setText( "" );
242 Standard_Boolean isOk = Standard_False;
243 GEOM::GEOM_Object_var anObj =
244 GEOMBase::ConvertIOinGEOMObject( aSelList.First(), isOk );
246 if ( !isOk || anObj->_is_nil() || !GEOMBase::IsShape( anObj ) ) {
247 myEdit->setText( "" );
252 displayPreview( false, true, true, 3 );
256 //=================================================================================
257 // function : enterEvent()
258 // purpose : Mouse enter onto the dialog to activate it
259 //=================================================================================
260 void RepairGUI_FreeFacesDlg::enterEvent( QEvent* )
265 //=================================================================================
266 // function : activateSelection
267 // purpose : activate selection of faces, shells, and solids
268 //=================================================================================
269 void RepairGUI_FreeFacesDlg::activateSelection()
271 TColStd_MapOfInteger aMap;
272 aMap.Add( GEOM_SOLID );
273 aMap.Add( GEOM_COMPOUND );
274 globalSelection( aMap );
277 //=================================================================================
278 // function : closeEvent()
280 //=================================================================================
281 void RepairGUI_FreeFacesDlg::closeEvent( QCloseEvent* )
286 //=================================================================================
287 // function : createOperation
289 //=================================================================================
290 GEOM::GEOM_IOperations_ptr RepairGUI_FreeFacesDlg::createOperation()
292 return getGeomEngine()->GetIShapesOperations( getStudyId() );
295 //=================================================================================
296 // function : isValid
298 //=================================================================================
299 bool RepairGUI_FreeFacesDlg::isValid( QString& )
301 return !myObj->_is_nil() ;
304 //=================================================================================
305 // function : execute
307 //=================================================================================
308 bool RepairGUI_FreeFacesDlg::execute( ObjectList& objects )
310 bool aResult = false;
311 GEOM::GEOM_IShapesOperations_var anOper = GEOM::GEOM_IShapesOperations::_narrow( getOperation() );
312 GEOM::ListOfLong_var aFaceLst = anOper->GetFreeFacesIDs( myObj );
313 TopoDS_Shape aSelShape;
315 TopTools_IndexedMapOfShape anIndices;
316 if ( !myObj->_is_nil() && GEOMBase::GetShape( myObj, aSelShape ) ) {
317 myEdit->setText( GEOMBase::GetName( myObj ) );
319 if ( !isValid( aMess ) ) {
320 erasePreview( true );
324 SUIT_OverrideCursor();
326 TopExp::MapShapes( aSelShape, anIndices);
327 SALOME_Prs* aPrs = 0;
329 for ( int i = 0, n = aFaceLst->length(); i < n; i++ ) {
330 aFace = anIndices.FindKey( aFaceLst[i] );
332 getDisplayer()->SetColor( Quantity_NOC_RED );
333 getDisplayer()->SetToActivate( false );
334 aPrs = !aFace.IsNull() ? getDisplayer()->BuildPrs( aFace ) : 0;
336 displayPreview( aPrs, true );
338 catch( const SALOME::SALOME_Exception& e )
340 SalomeApp_Tools::QtCatchCorbaException( e );
347 //================================================================
348 // Function : getDisplayer
350 //================================================================
351 GEOM_Displayer* RepairGUI_FreeFacesDlg::getDisplayer()
354 myDisplayer = new GEOM_Displayer( getStudy() );
358 //=================================================================================
359 // function : SetEditCurrentArgument
361 //=================================================================================
362 void RepairGUI_FreeFacesDlg::onSetEditCurrentArgument()
368 //=================================================================================
369 // function : keyPressEvent()
371 //=================================================================================
372 void RepairGUI_FreeFacesDlg::keyPressEvent( QKeyEvent* e )
374 QDialog::keyPressEvent( e );
375 if ( e->isAccepted() )
378 if ( e->key() == Qt::Key_F1 ) {