1 // Copyright (C) 2014 CEA/DEN, EDF R&D, OPEN CASCADE
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #include "GEOMToolsGUI_ReduceStudyDlg.h"
27 #include <SUIT_Session.h>
28 #include <SUIT_ResourceMgr.h>
29 #include <SUIT_MessageBox.h>
31 #include <LightApp_SelectionMgr.h>
33 #include <SalomeApp_Application.h>
34 #include <SalomeApp_Study.h>
35 #include <SALOME_ListIteratorOfListIO.hxx>
38 #include <QGridLayout>
39 #include <QPushButton>
40 #include <QRadioButton>
41 #include <QHeaderView>
42 #include <QMessageBox>
44 GEOMToolsGUI_ReduceStudyDlg::GEOMToolsGUI_ReduceStudyDlg( QWidget* parent )
45 :QDialog( parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint ),
48 SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
49 myVisible = QIcon( resMgr->loadPixmap( "SUIT", tr( "ICON_DATAOBJ_VISIBLE" ) ) );
50 myInvisible = QIcon( resMgr->loadPixmap( "SUIT", tr( "ICON_DATAOBJ_INVISIBLE" ) ) );
52 myApp = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
54 SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( myApp->activeStudy() );
55 myStudy = dynamic_cast<SalomeApp_Study*>( myApp->activeStudy() )->studyDS();
56 myDisplayer = GEOM_Displayer( study );
58 setWindowTitle( tr( "GEOM_REDUCE_STUDY_TITLE" ) );
59 setAttribute(Qt::WA_DeleteOnClose);
61 QGridLayout* topLayout = new QGridLayout( this );
62 topLayout->setMargin( 11 ); topLayout->setSpacing( 6 );
64 /********************** Objects to be kept **********************/
65 QGroupBox* groupKeptObjects = new QGroupBox( tr( "GEOM_REDUCE_STUDY_KEPT_OBJECTS" ) );
66 QGridLayout* layoutKeptObjects = new QGridLayout( groupKeptObjects );
67 createTreeWidget( myTreeKeptObjects = new QTreeWidget() );
68 layoutKeptObjects->addWidget( myTreeKeptObjects );
70 /********************** Objects to be removed **********************/
71 QGroupBox* groupRemoveObjects = new QGroupBox( tr( "GEOM_REDUCE_STUDY_REMOVE_OBJECTS" ) );
72 QGridLayout* layoutRemoveObjects = new QGridLayout( groupRemoveObjects );
73 createTreeWidget( myTreeRemoveObjects = new QTreeWidget() );
74 layoutRemoveObjects->addWidget( myTreeRemoveObjects );
76 /********************** Options **********************/
77 QGroupBox* groupOptions = new QGroupBox( tr( "GEOM_REDUCE_STUDY_OPTIONS" ) );
78 QVBoxLayout* layoutOptions = new QVBoxLayout( groupOptions );
80 // Intermediate objects
81 QGroupBox* groupIntermediates = createButtonGroup( myGroupIntermediates = new QButtonGroup() );
82 groupIntermediates->setTitle( tr( "GEOM_REDUCE_STUDY_INTERMEDIATES" ) );
85 QGroupBox* groupSubObjects = createButtonGroup( myGroupSubObjects = new QButtonGroup() );
86 groupSubObjects->setTitle( tr( "GEOM_REDUCE_STUDY_SUB_OBJECTS" ) );
89 myCBRemoveEmptyFolder = new QCheckBox( tr( "GEOM_REDUCE_STUDY_REMOVE_EMPTY_FOLDER" ) );
90 myCBRemoveEmptyFolder->setChecked( true );
91 myCBSoftRemoval = new QCheckBox( tr( "GEOM_REDUCE_STUDY_SOFT_REMOVAL" ) );
93 layoutOptions->addWidget( groupIntermediates );
94 layoutOptions->addWidget( groupSubObjects );
95 layoutOptions->addWidget( myCBRemoveEmptyFolder );
96 layoutOptions->addWidget( myCBSoftRemoval );
98 /********************** Buttons **********************/
99 QGroupBox* groupButtons = new QGroupBox();
100 QHBoxLayout* layoutButtons = new QHBoxLayout( groupButtons );
102 QPushButton* buttonOk = new QPushButton( tr( "GEOM_BUT_OK" ) );
103 QPushButton* buttonCancel = new QPushButton( tr( "GEOM_BUT_CANCEL" ) );
104 QPushButton* buttonHelp = new QPushButton( tr( "GEOM_BUT_HELP" ) );
106 layoutButtons->addWidget( buttonOk );
107 layoutButtons->addStretch();
108 layoutButtons->addWidget( buttonCancel );
109 layoutButtons->addWidget( buttonHelp );
111 topLayout->addWidget( groupKeptObjects, 0, 0 );
112 topLayout->addWidget( groupRemoveObjects, 0, 1 );
113 topLayout->addWidget( groupOptions, 1, 0, 1, 2 );
114 topLayout->addWidget( groupButtons, 2, 0, 1, 2 );
116 // Signals and slots connections
118 connect( myTreeKeptObjects, SIGNAL( itemClicked( QTreeWidgetItem*, int) ), this, SLOT( onItemClicked( QTreeWidgetItem*, int ) ) );
119 connect( myTreeRemoveObjects, SIGNAL( itemClicked( QTreeWidgetItem*, int) ), this, SLOT( onItemClicked( QTreeWidgetItem*, int ) ) );
120 connect( myTreeKeptObjects->header(), SIGNAL( sectionClicked ( int ) ), this, SLOT( onHeaderClicked( int ) ) );
121 connect( myTreeRemoveObjects->header(), SIGNAL( sectionClicked ( int ) ), this, SLOT( onHeaderClicked( int ) ) );
123 connect( myGroupIntermediates, SIGNAL( buttonClicked( int ) ), this, SLOT( update() ) );
124 connect( myGroupSubObjects, SIGNAL( buttonClicked( int ) ), this, SLOT( update() ) );
126 connect( buttonOk, SIGNAL( clicked() ), this, SLOT( clickOnOk() ) );
127 connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( reject() ) );
128 connect( buttonHelp, SIGNAL( clicked() ), this, SLOT( clickOnHelp() ) );
130 connect( myApp->selectionMgr(), SIGNAL( currentSelectionChanged() ),
131 this, SLOT( selectionChanged() ) );
133 init( getSelectedObjects() );
136 GEOMToolsGUI_ReduceStudyDlg::~GEOMToolsGUI_ReduceStudyDlg()
138 // no need to delete child widgets, Qt does it all for us
141 //=================================================================================
143 // purpose : initialize dialog data
144 //=================================================================================
145 void GEOMToolsGUI_ReduceStudyDlg::init( const std::set<std::string>& theObjectEntries )
147 myMainEntries.clear();
149 myKeptObjects.clear();
150 myListParents.clear();
151 myListSubObjects.clear();
152 myRemovedObjects.clear();
154 myMainEntries = theObjectEntries;
156 GEOM::string_array_var keptObjects = new GEOM::string_array();
158 keptObjects->length( theObjectEntries.size() );
159 std::set<std::string>::iterator iter;
160 for( iter=theObjectEntries.begin(); iter!=theObjectEntries.end(); ++iter, It++ )
161 keptObjects[ It ] = (*iter).c_str();
163 GEOM::string_array_var parentsObjects = new GEOM::string_array();
164 GEOM::string_array_var subObjects = new GEOM::string_array();
165 GEOM::string_array_var otherObjects = new GEOM::string_array();
167 GeometryGUI::GetGeomGen()->GetEntriesToReduceStudy( GeometryGUI::ClientStudyToStudy( myStudy ),
168 keptObjects, parentsObjects,
169 subObjects, otherObjects );
171 for ( int i = 0; i < keptObjects->length(); i++ )
172 myKeptObjects.insert( keptObjects[i].in() );
173 for( int i = 0; i< otherObjects->length(); i++ )
174 myRemovedObjects.insert( otherObjects[i].in() );
175 for( int i = 0; i< parentsObjects->length(); i++ )
176 myListParents.insert( parentsObjects[i].in() );
177 for( int i = 0; i< subObjects->length(); i++ )
178 myListSubObjects.insert( subObjects[i].in() );
182 checkVisibleIcon( myTreeKeptObjects );
183 checkVisibleIcon( myTreeRemoveObjects );
186 //=================================================================================
187 // function : getSelectedObjects()
188 // purpose : get selected objects in object browser
189 //=================================================================================
190 std::set<std::string> GEOMToolsGUI_ReduceStudyDlg::getSelectedObjects() const
192 std::set<std::string> objects;
194 SALOME_ListIO selected;
195 myApp->selectionMgr()->selectedObjects( selected );
197 for( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
198 Handle( SALOME_InteractiveObject ) io = It.Value();
199 if( !io->hasEntry() )
201 GEOM::GEOM_Object_var geomObject = GEOM::GEOM_Object::_nil();
202 geomObject = GEOMBase::ConvertIOinGEOMObject( io );
203 if( geomObject->_is_nil() )
205 QString entry = geomObject->GetEntry();
206 objects.insert( entry.toStdString().c_str() );
211 //=================================================================================
212 // function : createTreeWidget()
213 // purpose : create tree widget for unpublished or removed objects
214 //=================================================================================
215 void GEOMToolsGUI_ReduceStudyDlg::createTreeWidget( QTreeWidget* theTreeWidget )
217 theTreeWidget->setColumnCount( 2 );
218 QStringList columnNames;
219 columnNames.append(tr( "GEOM_REDUCE_STUDY_NAME" ));
220 columnNames.append("");
221 theTreeWidget->setHeaderLabels( columnNames );
222 QTreeWidgetItem * headerItem = new QTreeWidgetItem( columnNames );
223 theTreeWidget->setHeaderItem ( headerItem );
224 theTreeWidget->header()->moveSection( 1, 0 );
225 theTreeWidget->header()->setClickable( true );
226 theTreeWidget->header()->setMovable( false );
227 theTreeWidget->header()->setResizeMode( 1, QHeaderView::ResizeToContents );
228 theTreeWidget->setSelectionMode( QAbstractItemView::ExtendedSelection );
231 //=================================================================================
232 // function : createButtonGroup()
233 // purpose : create button group for intermediate objects or sub-objects
234 //=================================================================================
235 QGroupBox* GEOMToolsGUI_ReduceStudyDlg::createButtonGroup( QButtonGroup* theButtonGroup )
237 QGroupBox* groupObjects = new QGroupBox();
238 QHBoxLayout* layoutObjects = new QHBoxLayout( groupObjects );
240 QRadioButton* buttonKeep = new QRadioButton( tr( "GEOM_REDUCE_STUDY_KEEP") );
241 theButtonGroup->addButton( buttonKeep, 0 );
242 QRadioButton* buttonUnpublish = new QRadioButton( tr( "GEOM_REDUCE_STUDY_UNPUBLISH") );
243 theButtonGroup->addButton( buttonUnpublish, 1 );
244 QRadioButton* buttonRemove = new QRadioButton( tr( "GEOM_REDUCE_STUDY_REMOVE") );
245 theButtonGroup->addButton( buttonRemove, 2 );
247 theButtonGroup->button( 0 )->setChecked( true );
248 theButtonGroup->setExclusive( true );
250 layoutObjects->addWidget( buttonKeep );
251 layoutObjects->addWidget( buttonUnpublish );
252 layoutObjects->addWidget( buttonRemove );
257 //=================================================================================
258 // function : addObjectsToTree()
259 // purpose : add the list of objects to tree
260 //=================================================================================
261 void GEOMToolsGUI_ReduceStudyDlg::addObjectsToTree( QTreeWidget* theWidget, std::set<std::string>& theObjects )
263 std::set<std::string>::iterator it;
264 for( it = theObjects.begin(); it != theObjects.end(); ++it ) {
265 std::string objectEntry = *it;
266 GEOM::GEOM_BaseObject_var GeomBaseObject = GeometryGUI::GetGeomGen()->GetObject( myStudy->StudyId(), objectEntry.c_str() );
267 GEOM::GEOM_Object_var GeomObject = GEOM::GEOM_Object::_narrow( GeomBaseObject );
268 QString studyEntry = GeomBaseObject->GetStudyEntry();
269 if( GeomObject->_is_nil() || studyEntry.isEmpty() || !isObjectDrawable( studyEntry.toStdString() ) )
271 addSubObject( theWidget, theObjects, GeomObject );
275 //=================================================================================
276 // function : addSubObject()
277 // purpose : add sub-object to parent object in the tree
278 //=================================================================================
279 GEOMToolsGUI_TreeWidgetItem* GEOMToolsGUI_ReduceStudyDlg::addSubObject( QTreeWidget* theWidget,
280 std::set<std::string>& theObjects,
281 GEOM::GEOM_Object_var theObject )
283 GEOMToolsGUI_TreeWidgetItem* item;
284 if( !theObject->IsMainShape() ) {
285 GEOMToolsGUI_TreeWidgetItem* parentItem = addSubObject( theWidget, theObjects, theObject->GetMainShape() );
286 item = findObjectInTree( theWidget, theObject );
288 item = new GEOMToolsGUI_TreeWidgetItem( parentItem, QStringList() << theObject->GetName(), theObject->GetStudyEntry() );
291 item = findObjectInTree( theWidget, theObject );
293 item = new GEOMToolsGUI_TreeWidgetItem( theWidget, QStringList() << theObject->GetName(), theObject->GetStudyEntry() );
296 bool isDisplayed = false;
297 if( theObjects.find( theObject->GetEntry() ) != theObjects.end() ) {
298 isDisplayed = myDisplayer.IsDisplayed( theObject->GetStudyEntry() );
300 item->setVisible( true, myVisible );
302 item->setVisible( false, myInvisible );
304 if( myMainEntries.find( theObject->GetEntry() ) != myMainEntries.end() ) {
305 QFont Textfont = item->font(0);
306 Textfont.setBold( true );
307 item->setFont( 0, Textfont );
311 item->setFlags( item->flags() & ~Qt::ItemIsSelectable );
312 item->setTextColor( 0, QColor( 150, 150, 150 ) );
317 //=================================================================================
318 // function : findObjectInTree()
319 // purpose : find object in the tree
320 //=================================================================================
321 GEOMToolsGUI_TreeWidgetItem* GEOMToolsGUI_ReduceStudyDlg::findObjectInTree( QTreeWidget* theWidget, GEOM::GEOM_Object_var theObject )
323 QTreeWidgetItemIterator it( theWidget );
325 GEOMToolsGUI_TreeWidgetItem* item = dynamic_cast<GEOMToolsGUI_TreeWidgetItem*>(*it);
326 if( QString( item->getStudyEntry() ) == QString( theObject->GetStudyEntry() ) )
333 //=================================================================================
334 // function : checkVisibleIcon()
335 // purpose : set visible or invisible icon in the header of tree
336 //=================================================================================
337 void GEOMToolsGUI_ReduceStudyDlg::checkVisibleIcon( QTreeWidget* theWidget )
339 bool isInvisible = false;
340 QTreeWidgetItemIterator it( theWidget );
342 GEOMToolsGUI_TreeWidgetItem* item = dynamic_cast<GEOMToolsGUI_TreeWidgetItem*>(*it);
343 const char* entry = item->getStudyEntry();
344 if( item->flags() & Qt::ItemIsSelectable )
345 if( !item->isVisible() )
351 theWidget->headerItem()->setIcon( 1, myInvisible );
352 myMapTreeSelectAll[ theWidget ] = false;
355 theWidget->headerItem()->setIcon( 1, myVisible );
356 myMapTreeSelectAll[ theWidget ] = true;
360 //=================================================================================
361 // function : isObjectDrawable()
362 // purpose : return true if object is drawable, and false if object is hidden in the study
363 //=================================================================================
364 bool GEOMToolsGUI_ReduceStudyDlg::isObjectDrawable( std::string theStudyEntry )
366 _PTR(StudyBuilder) aStudyBuilder = myStudy->NewBuilder();
367 //If object hasn't "AttributeDrawable" => it visible
368 bool isDrawable = true;
369 _PTR(SObject) SO ( myStudy->FindObjectID( theStudyEntry ) );
370 _PTR(GenericAttribute) anAttr;
371 if ( SO && SO->FindAttribute( anAttr, "AttributeDrawable" ) ) {
372 _PTR(AttributeDrawable) aDrw (anAttr);
373 isDrawable = aDrw->IsDrawable();
378 //=================================================================================
379 // function : unpublishObjects()
380 // purpose : unpublish(hide) objects in the study
381 //=================================================================================
382 void GEOMToolsGUI_ReduceStudyDlg::unpublishObjects( std::set<std::string>& theObjects )
384 _PTR(StudyBuilder) aStudyBuilder = myStudy->NewBuilder();
385 std::set<std::string>::iterator it;
386 for( it = theObjects.begin(); it != theObjects.end(); ++it ) {
387 std::string objectEntry = *it;
388 GEOM::GEOM_BaseObject_var GeomBaseObject = GeometryGUI::GetGeomGen()->GetObject( myStudy->StudyId(),
389 objectEntry.c_str() );
390 std::string studyEntry = GeomBaseObject->GetStudyEntry();
391 if ( studyEntry == "" || !isObjectDrawable( studyEntry ) )
393 _PTR(SObject) obj ( myStudy->FindObjectID( studyEntry.c_str() ) );
394 _PTR(GenericAttribute) anAttr;
396 _PTR(AttributeDrawable) aDrw = aStudyBuilder->FindOrCreateAttribute( obj, "AttributeDrawable" );
397 aDrw->SetDrawable( false );
398 myDisplayer.EraseWithChildren( new SALOME_InteractiveObject( studyEntry.c_str(), "GEOM", "TEMP_IO" ) );
401 myApp->updateObjectBrowser( false );
402 myApp->updateActions();
405 //=================================================================================
406 // function : removeObjects()
407 // purpose : remove objects from the study
408 //=================================================================================
409 void GEOMToolsGUI_ReduceStudyDlg::removeObjects( std::set<std::string>& theObjects )
411 std::set<std::string>::iterator it;
412 for( it = theObjects.begin(); it != theObjects.end(); ++it ) {
413 std::string objectEntry = *it;
414 GEOM::GEOM_BaseObject_var GeomBaseObject = GeometryGUI::GetGeomGen()->GetObject( myStudy->StudyId(),
415 objectEntry.c_str() );
416 std::string studyEntry = GeomBaseObject->GetStudyEntry();
417 if ( studyEntry == "" )
418 GeometryGUI::GetGeomGen()->RemoveObject( GeomBaseObject );
420 if( !isObjectDrawable( studyEntry ) )
422 removeObject( studyEntry );
425 myApp->updateObjectBrowser( false );
426 myApp->updateActions();
429 //=================================================================================
430 // function : removeObject()
431 // purpose : remove object with given study entry
432 //=================================================================================
433 void GEOMToolsGUI_ReduceStudyDlg::removeObject( std::string& theStudyEntry )
435 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( myApp->activeStudy() );
436 _PTR(StudyBuilder) aStudyBuilder = myStudy->NewBuilder();
437 _PTR(UseCaseBuilder) aUseCaseBuilder = myStudy->GetUseCaseBuilder();
439 _PTR(SObject) obj ( myStudy->FindObjectID( theStudyEntry.c_str() ) );
441 // remove visual properties of the object
442 appStudy->removeObjectFromAll(obj->GetID().c_str());
443 // remove objects from study
444 aStudyBuilder->RemoveObjectWithChildren( obj );
445 // remove object from use case tree
446 aUseCaseBuilder->Remove( obj );
447 myDisplayer.EraseWithChildren( new SALOME_InteractiveObject( theStudyEntry.c_str(), "GEOM", "TEMP_IO" ) );
451 //=================================================================================
452 // function : removeEmptyFolders()
453 // purpose : remove empty folders from the study
454 //=================================================================================
455 void GEOMToolsGUI_ReduceStudyDlg::removeEmptyFolders()
457 std::set<std::string> emptyFolders;
459 _PTR(SComponent) SC ( myStudy->FindComponent( "GEOM" ) );
462 _PTR(ChildIterator) anIter ( myStudy->NewChildIterator( SC ) );
463 anIter->InitEx( true );
464 while( anIter->More() ) {
465 _PTR(SObject) valSO ( anIter->Value() );
467 if ( !valSO->ReferencedObject( refSO ) )
468 getEmptyFolders( valSO, emptyFolders );
472 std::set<std::string>::iterator iter;
473 for( iter = emptyFolders.begin(); iter != emptyFolders.end(); ++iter ) {
474 std::string studyEntry = *iter;
475 removeObject( studyEntry );
477 myApp->updateObjectBrowser( false );
478 myApp->updateActions();
481 //=================================================================================
482 // function : removeEmptyFolders()
483 // purpose : remove empty folders from the study
484 //=================================================================================
485 void GEOMToolsGUI_ReduceStudyDlg::getEmptyFolders( _PTR(SObject) theSO, std::set<std::string>& theFolders )
487 _PTR(UseCaseBuilder) aUseCaseBuilder = myStudy->GetUseCaseBuilder();
489 bool isFolder = false;
490 _PTR(GenericAttribute) anAttr;
491 if ( theSO->FindAttribute(anAttr, "AttributeLocalID") ) {
492 _PTR(AttributeLocalID) aLocalID( anAttr );
493 isFolder = aLocalID->Value() == 999;
495 QString studyEntry = theSO->GetID().c_str();
497 if( !aUseCaseBuilder->HasChildren( theSO ) )
498 theFolders.insert( studyEntry.toStdString() );
500 _PTR(UseCaseIterator) ucit ( aUseCaseBuilder->GetUseCaseIterator( theSO ) );
501 for ( ucit->Init( false ); ucit->More(); ucit->Next() )
502 getEmptyFolders( ucit->Value(), theFolders );
507 //=================================================================================
508 // function : onItemClicked()
509 // purpose : called when tree item was clicked
510 //=================================================================================
511 void GEOMToolsGUI_ReduceStudyDlg::onItemClicked( QTreeWidgetItem* theItem, int theColumn )
513 if( theColumn != 1 || !( theItem->flags() & Qt::ItemIsSelectable ) )
516 GEOMToolsGUI_TreeWidgetItem* item = dynamic_cast<GEOMToolsGUI_TreeWidgetItem*>( theItem );
518 const char* entry = item->getStudyEntry();
519 Handle(SALOME_InteractiveObject) io = new SALOME_InteractiveObject( entry, "GEOM", "TEMP_IO" );
520 if( myDisplayer.IsDisplayed( entry ) ) {
521 item->setVisible( false, myInvisible );
522 myDisplayer.Erase( io );
525 item->setVisible( true, myVisible );
526 myDisplayer.Display( io );
528 myDisplayer.UpdateViewer();
529 checkVisibleIcon( item->treeWidget() );
532 //=================================================================================
533 // function : onHeaderClicked()
534 // purpose : called when header item of tree was clicked
535 //=================================================================================
536 void GEOMToolsGUI_ReduceStudyDlg::onHeaderClicked( int theColumn )
541 QTreeWidget* treeWidget = dynamic_cast<QTreeWidget*>(sender()->parent());
542 if( myMapTreeSelectAll[ treeWidget ] ) {
543 myMapTreeSelectAll[ treeWidget ] = false;
544 treeWidget->headerItem()->setIcon( 1, myInvisible );
545 QTreeWidgetItemIterator it( treeWidget );
547 GEOMToolsGUI_TreeWidgetItem* item = dynamic_cast<GEOMToolsGUI_TreeWidgetItem*>(*it);
548 if( ( item->flags() & Qt::ItemIsSelectable ) && item->isVisible() ) {
549 const char* entry = item->getStudyEntry();
550 item->setVisible( false, myInvisible );
551 myDisplayer.Erase( new SALOME_InteractiveObject( entry, "GEOM", "TEMP_IO" ) );
557 myMapTreeSelectAll[ treeWidget ] = true;
558 treeWidget->headerItem()->setIcon( 1, myVisible );
559 QTreeWidgetItemIterator it( treeWidget );
561 GEOMToolsGUI_TreeWidgetItem* item = dynamic_cast<GEOMToolsGUI_TreeWidgetItem*>(*it);
562 if( ( item->flags() & Qt::ItemIsSelectable ) && !item->isVisible() ) {
563 const char* entry = item->getStudyEntry();
564 item->setVisible( true, myVisible );
565 myDisplayer.Display( new SALOME_InteractiveObject( entry, "GEOM", "TEMP_IO" ) );
570 myDisplayer.UpdateViewer();
573 //=================================================================================
574 // function : selectionChanged()
575 // purpose : called when selection of object browser was changed
576 //=================================================================================
577 void GEOMToolsGUI_ReduceStudyDlg::selectionChanged()
579 init( getSelectedObjects() );
582 //=================================================================================
583 // function : update()
584 // purpose : update tree data
585 //=================================================================================
586 void GEOMToolsGUI_ReduceStudyDlg::update()
588 myTreeKeptObjects->clear();
589 myTreeRemoveObjects->clear();
591 std::set<std::string> keptObjects( myKeptObjects );
592 std::set<std::string> removeObjects( myRemovedObjects );
594 // Intermediate objects
595 if( myGroupIntermediates->checkedId() == 2 ) { // remove
596 std::set<std::string>::iterator iter;
597 for( iter=myListParents.begin(); iter!=myListParents.end(); ++iter)
598 removeObjects.insert( *iter );
600 else { // keep or unpublish
601 std::set<std::string>::iterator iter;
602 for( iter=myListParents.begin(); iter!=myListParents.end(); ++iter)
603 keptObjects.insert( *iter );
607 if( myGroupSubObjects->checkedId() == 2 ) {
608 std::set<std::string>::iterator iter;
609 for( iter=myListSubObjects.begin(); iter!=myListSubObjects.end(); ++iter)
610 removeObjects.insert( *iter );
613 std::set<std::string>::iterator iter;
614 for( iter=myListSubObjects.begin(); iter!=myListSubObjects.end(); ++iter)
615 keptObjects.insert( *iter );
618 addObjectsToTree( myTreeKeptObjects, keptObjects );
619 addObjectsToTree( myTreeRemoveObjects, removeObjects );
621 myTreeKeptObjects->collapseAll();
622 myTreeRemoveObjects->collapseAll();
626 //=================================================================================
627 // function : clickOnOk()
628 // purpose : called when OK button was clicked
629 //=================================================================================
630 void GEOMToolsGUI_ReduceStudyDlg::clickOnOk()
632 std::set<std::string> objectsToBeRemoved = myRemovedObjects;
633 std::set<std::string> objectsToBeUnpublished;
635 // Create lists of intermediate objects to be removed or to be unpublished
636 std::set<std::string>::iterator iter;
637 if( myGroupIntermediates->checkedId() == 1 ) { // unpublish
638 for( iter = myListParents.begin(); iter != myListParents.end(); ++iter )
639 objectsToBeUnpublished.insert( *iter );
641 if( myGroupIntermediates->checkedId() == 2 ) { // remove
642 if( myCBSoftRemoval->isChecked() )
643 for( iter = myListParents.begin(); iter != myListParents.end(); ++iter )
644 objectsToBeRemoved.insert( *iter );
646 if ( SUIT_MessageBox::question( this,
647 tr( "GEOM_WRN_WARNING" ),
648 tr( "GEOM_REDUCE_STUDY_WARNING_DELETE" ),
649 QMessageBox::Yes | QMessageBox::No,
650 QMessageBox::Yes ) == QMessageBox::Yes ) {
651 for( iter = myListParents.begin(); iter != myListParents.end(); ++iter )
652 objectsToBeRemoved.insert( *iter );
659 // Create lists of sub-objects to be removed or to be unpublished
660 if( myGroupSubObjects->checkedId() == 1 ) { // unpublish
661 for( iter = myListSubObjects.begin(); iter != myListSubObjects.end(); ++iter )
662 objectsToBeUnpublished.insert( *iter );
664 else if( myGroupSubObjects->checkedId() == 2 ) { // remove
665 for( iter = myListSubObjects.begin(); iter != myListSubObjects.end(); ++iter )
666 objectsToBeRemoved.insert( *iter );
669 // if user chosen the soft removal
670 if( myCBSoftRemoval->isChecked() ) {
671 for( iter = objectsToBeRemoved.begin(); iter != objectsToBeRemoved.end(); ++iter )
672 objectsToBeUnpublished.insert( *iter );
673 unpublishObjects( objectsToBeUnpublished );
676 unpublishObjects( objectsToBeUnpublished );
677 removeObjects( objectsToBeRemoved );
680 // if user want to delete the empty folders
681 if( myCBRemoveEmptyFolder->isChecked() )
682 removeEmptyFolders();
687 //=================================================================================
688 // function : clickOnHelp()
689 // purpose : called when Help button was clicked
690 //=================================================================================
691 void GEOMToolsGUI_ReduceStudyDlg::clickOnHelp()
695 GEOMToolsGUI_TreeWidgetItem::GEOMToolsGUI_TreeWidgetItem( QTreeWidget* view, const QStringList &strings,
696 char* studyEntry, int type )
697 :QTreeWidgetItem( view, strings, type ),
698 myStudyEntry( studyEntry ),
703 GEOMToolsGUI_TreeWidgetItem::GEOMToolsGUI_TreeWidgetItem( QTreeWidgetItem* parent, const QStringList &strings,
704 char* studyEntry, int type )
705 :QTreeWidgetItem( parent, strings, type ),
706 myStudyEntry( studyEntry ),
711 GEOMToolsGUI_TreeWidgetItem::~GEOMToolsGUI_TreeWidgetItem()
715 bool GEOMToolsGUI_TreeWidgetItem::isVisible()
720 void GEOMToolsGUI_TreeWidgetItem::setVisible( bool theIsVisible, QIcon& theIcon )
722 myVisible = theIsVisible;
723 setIcon( 1, theIcon );
726 char* GEOMToolsGUI_TreeWidgetItem::getStudyEntry() const