1 // Copyright (C) 2007-2016 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, or (at your option) any later version.
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 : GEOMToolsGUI_1.cxx
25 // Author : Sergey ANIKIN, Open CASCADE S.A.S. (sergey.anikin@opencascade.com)
27 #ifndef DISABLE_PYCONSOLE
28 #include <PyConsole_Console.h>
31 #include "GEOMToolsGUI.h"
32 #include "GEOMToolsGUI_TransparencyDlg.h"
33 #include "GEOMToolsGUI_NbIsosDlg.h"
34 #include "GEOMToolsGUI_DeflectionDlg.h"
35 #include "GEOMToolsGUI_MarkerDlg.h"
36 #include "GEOMToolsGUI_PublishDlg.h"
37 #include "GEOMToolsGUI_MaterialPropertiesDlg.h"
38 #include "GEOMToolsGUI_LineWidthDlg.h"
39 #include "GEOMToolsGUI_ReduceStudyDlg.h"
40 #include <Material_Model.h>
42 #include <GEOM_VTKPropertyMaterial.hxx>
44 #include <GeometryGUI.h>
45 #include <GeometryGUI_Operations.h>
46 #include <GEOM_Constants.h>
47 #include <GEOM_Displayer.h>
50 #include <GEOM_Actor.h>
52 #ifndef DISABLE_GRAPHICSVIEW
53 #include <DependencyTree_ViewModel.h>
54 #include <DependencyTree_View.h>
55 #include <DependencyTree_Selector.h>
58 #include <Basics_OCCTVersion.hxx>
60 #include <SALOME_ListIO.hxx>
62 #include <SALOMEDS_SObject.hxx>
67 #include <SVTK_ViewModel.h>
68 #include <SVTK_ViewWindow.h>
69 #include <SVTK_View.h>
71 #include <OCCViewer_ViewModel.h>
73 #include <SUIT_ViewManager.h>
74 #include <SUIT_Desktop.h>
75 #include <SUIT_ResourceMgr.h>
76 #include <SUIT_Session.h>
77 #include <SUIT_OverrideCursor.h>
78 #include <SUIT_MessageBox.h>
79 #include <SUIT_Tools.h>
81 #include <STD_TabDesktop.h>
83 #include <QtxWorkstack.h>
85 #include <SalomeApp_Application.h>
86 #include <SalomeApp_Study.h>
87 #include <SalomeApp_Module.h>
89 #include <LightApp_SelectionMgr.h>
90 #include <LightApp_NameDlg.h>
92 #include <GEOMImpl_Types.hxx>
94 #include "utilities.h"
97 #include <Prs3d_IsoAspect.hxx>
98 #include <Prs3d_PointAspect.hxx>
99 #include <Graphic3d_AspectMarker3d.hxx>
100 #include <Graphic3d_AspectLine3d.hxx>
101 #include <AIS_ListIteratorOfListOfInteractive.hxx>
102 #include <AIS_ListOfInteractive.hxx>
104 #include <TColStd_HArray1OfByte.hxx>
108 #include <QApplication>
109 #include <QColorDialog>
110 #include <QInputDialog>
111 #include <QFileDialog>
114 #include <QGridLayout>
117 #include <QPushButton>
121 #include <vtkRenderer.h>
123 // If the next macro is defined, autocolor feature works for all sub-shapes;
124 // if it is undefined, autocolor feature works for groups only
125 #define GENERAL_AUTOCOLOR
126 // Below macro, when uncommented, switches on simplified (more performant) algorithm
127 // of auto-color picking up
128 #define SIMPLE_AUTOCOLOR
129 // Below macro, when defined, switches on automatic layouting of OCC and Dependecy views
130 // on Show Dependencies operation
131 #define LAYOUT_DEPVIEW
133 #ifndef DISABLE_PYCONSOLE
134 void GEOMToolsGUI::OnCheckGeometry()
136 SalomeApp_Application* app =
137 dynamic_cast< SalomeApp_Application* >(SUIT_Session::session()->activeApplication());
138 PyConsole_Console* pyConsole = app->pythonConsole();
141 pyConsole->exec("from GEOM_usinggeom import *");
145 void GEOMToolsGUI::OnAutoColor()
147 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
150 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy() );
151 if ( !appStudy ) return;
153 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
154 if ( !aSelMgr ) return;
156 SALOME_ListIO selected;
157 aSelMgr->selectedObjects( selected );
158 if ( selected.IsEmpty() ) return;
160 Handle(SALOME_InteractiveObject) anIObject = selected.First();
162 _PTR(Study) aStudy = appStudy->studyDS();
163 _PTR(SObject) aMainSObject(aStudy->FindObjectID(anIObject->getEntry()));
164 GEOM::GEOM_Object_var aMainObject = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aMainSObject));
165 if (CORBA::is_nil(aMainObject)) return;
167 aMainObject->SetAutoColor( true );
169 QList<SALOMEDS::Color> aReservedColors;
171 GEOM_Displayer displayer ( appStudy );
173 SALOME_View* window = displayer.GetActiveView();
174 if ( !window ) return;
176 int aMgrId = dynamic_cast< SUIT_ViewModel* >( window )->getViewManager()->getGlobalId();
178 for( _PTR(ChildIterator) it( aStudy->NewChildIterator( aMainSObject ) ); it->More(); it->Next() )
180 _PTR(SObject) aChildSObject( it->Value() );
181 GEOM::GEOM_Object_var aChildObject = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aChildSObject));
182 if( CORBA::is_nil( aChildObject ) )
185 #ifndef GENERAL_AUTOCOLOR // auto-color for groups only
186 if( aChildObject->GetType() != GEOM_GROUP )
188 #endif // GENERAL_AUTOCOLOR
190 #ifdef SIMPLE_AUTOCOLOR // simplified algorithm for auto-colors
191 SALOMEDS::Color aColor = GEOM_Displayer::getPredefinedUniqueColor();
192 #else // old algorithm for auto-colors
193 SALOMEDS::Color aColor = GEOM_Displayer::getUniqueColor( aReservedColors );
194 aReservedColors.append( aColor );
195 #endif // SIMPLE_AUTOCOLOR
196 aChildObject->SetColor( aColor );
198 QColor c( (int)( aColor.R * 255.0 ), (int)( aColor.G * 255.0 ), (int)( aColor.B * 255.0 ) );
200 SUIT_OverrideCursor wc;
202 appStudy->setObjectProperty( aMgrId, aChildObject->GetStudyEntry(), GEOM::propertyName( GEOM::Color ), c );
203 Handle( SALOME_InteractiveObject ) io = new SALOME_InteractiveObject( aChildObject->GetStudyEntry(), "GEOM", "" );
204 if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
206 displayer.UpdateViewer();
209 appStudy->Modified();
210 app->updateActions(); //SRN: To update a Save button in the toolbar
213 void GEOMToolsGUI::OnDisableAutoColor()
215 SALOME_ListIO selected;
216 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
220 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
221 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
222 if( !aSelMgr || !appStudy )
225 aSelMgr->selectedObjects( selected );
226 if( selected.IsEmpty() )
229 Handle(SALOME_InteractiveObject) anIObject = selected.First();
231 _PTR(Study) aStudy = appStudy->studyDS();
232 _PTR(SObject) aMainSObject( aStudy->FindObjectID( anIObject->getEntry() ) );
233 GEOM::GEOM_Object_var aMainObject = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aMainSObject));
234 if( CORBA::is_nil( aMainObject ) )
237 aMainObject->SetAutoColor( false );
240 void GEOMToolsGUI::OnColor()
242 // get active application
243 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
247 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy() );
248 if ( !appStudy ) return;
250 // get selection manager
251 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
252 if ( !aSelMgr ) return;
255 SALOME_ListIO selected;
256 aSelMgr->selectedObjects( selected );
257 if ( selected.IsEmpty() ) return;
259 GEOM_Displayer displayer( appStudy );
262 SALOME_View* window = displayer.GetActiveView();
263 if ( !window ) return;
266 int aMgrId = dynamic_cast< SUIT_ViewModel* >( window )->getViewManager()->getGlobalId();
269 QVariant v = appStudy->getObjectProperty( aMgrId, selected.First()->getEntry(), GEOM::propertyName( GEOM::Color ), color );
271 // show Choose Color dialog box
272 color = QColorDialog::getColor( v.value<QColor>(), app->desktop() );
273 if ( !color.isValid() ) return;
275 SALOMEDS::Color aSColor;
276 aSColor.R = (double)color.red() / 255.0;
277 aSColor.G = (double)color.green() / 255.0;
278 aSColor.B = (double)color.blue() / 255.0;
280 // iterate through list of objects and assign new color
281 SUIT_OverrideCursor wc;
282 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
283 Handle( SALOME_InteractiveObject ) io = It.Value();
284 GEOM::GEOM_Object_var aObject = GEOMBase::ConvertIOinGEOMObject( io );
285 if ( !CORBA::is_nil( aObject ) ) aObject->SetColor( aSColor );
286 appStudy->setObjectProperty( aMgrId, io->getEntry(), GEOM::propertyName( GEOM::Color ), color );
287 if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
289 displayer.UpdateViewer();
290 GeometryGUI::Modified();
293 app->updateActions(); //SRN: To update a Save button in the toolbar
296 void GEOMToolsGUI::OnTexture()
298 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
301 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy() );
302 if ( !appStudy ) return;
304 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
305 if ( !aSelMgr ) return;
307 SALOME_ListIO selected;
308 aSelMgr->selectedObjects( selected );
309 if ( selected.IsEmpty() ) return;
311 GEOM_Displayer displayer( appStudy );
312 SALOME_View* window = displayer.GetActiveView();
313 if ( !window ) return;
315 int aMgrId = dynamic_cast< SUIT_ViewModel* >( window )->getViewManager()->getGlobalId();
317 QString aTexture = QFileDialog::getOpenFileName( dynamic_cast< SUIT_ViewWindow* >( window ),tr("GEOM_SELECT_IMAGE"),QString(), tr("OCC_TEXTURE_FILES"));
318 if( !aTexture.isEmpty() ) {
319 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
320 Handle( SALOME_InteractiveObject ) io = It.Value();
321 appStudy->setObjectProperty( aMgrId, io->getEntry(), GEOM::propertyName( GEOM::Texture ), aTexture );
322 appStudy->setObjectProperty( aMgrId, io->getEntry(), GEOM::propertyName( GEOM::DisplayMode ), 3 );
323 if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
326 displayer.UpdateViewer();
327 GeometryGUI::Modified();
330 app->updateActions(); //SRN: To update a Save button in the toolbar
333 void GEOMToolsGUI::OnTransparency()
335 GEOMToolsGUI_TransparencyDlg dlg( SUIT_Session::session()->activeApplication()->desktop() );
339 void GEOMToolsGUI::OnChangeTransparency( bool increase )
341 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
344 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy() );
345 if( !appStudy) return;
347 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
348 if ( !aSelMgr ) return;
350 SALOME_ListIO selected;
351 aSelMgr->selectedObjects( selected );
352 if ( selected.IsEmpty() ) return;
354 GEOM_Displayer displayer( appStudy );
355 SALOME_View* window = displayer.GetActiveView();
356 if ( !window ) return;
358 int aMgrId = dynamic_cast< SUIT_ViewModel* >( window )->getViewManager()->getGlobalId();
361 float delta = 0.1; // VSR: 23/11/2010 (transparency value <= 0.05 is ignored)
365 QVariant v = appStudy->getObjectProperty( aMgrId, selected.First()->getEntry(), GEOM::propertyName( GEOM::Transparency ), QVariant() );
366 float transp = v.isValid() ? v.toFloat() : 1;
368 // Compute new transparency value
369 transp = transp + delta;
372 else if ( transp > 1 )
375 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
376 Handle( SALOME_InteractiveObject ) io = It.Value();
377 appStudy->setObjectProperty( aMgrId ,io->getEntry(), GEOM::propertyName( GEOM::Transparency ), transp );
378 if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
380 displayer.UpdateViewer();
381 GeometryGUI::Modified();
384 void GEOMToolsGUI::OnNbIsos( ActionType actionType )
386 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
389 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy() );
390 if ( !appStudy ) return;
392 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
393 if ( !aSelMgr ) return;
395 SALOME_ListIO selected;
396 aSelMgr->selectedObjects( selected );
397 if ( selected.IsEmpty() ) return;
399 GEOM_Displayer displayer( appStudy );
400 SALOME_View* window = displayer.GetActiveView();
401 if ( !window ) return;
403 int aMgrId = dynamic_cast< SUIT_ViewModel* >( window )->getViewManager()->getGlobalId();
405 QVariant v = appStudy->getObjectProperty( aMgrId, selected.First()->getEntry(), GEOM::propertyName( GEOM::NbIsos ) , QVariant() );
406 QString aStr = v.toString();
407 QStringList aStrList = aStr.split( GEOM::subSectionSeparator() );
408 int UIso = SUIT_Session::session()->resourceMgr()->integerValue( "Geometry", "iso_number_u", 1 );
409 int VIso = SUIT_Session::session()->resourceMgr()->integerValue( "Geometry", "iso_number_v", 1 );
410 if ( aStrList.count() == 2 ) {
411 if ( !aStrList[0].isEmpty() ) UIso = aStrList[0].toInt();
412 if ( !aStrList[1].isEmpty() ) VIso = aStrList[1].toInt();
418 if ( actionType == SHOWDLG ) {
419 GEOMToolsGUI_NbIsosDlg * NbIsosDlg =
420 new GEOMToolsGUI_NbIsosDlg( SUIT_Session::session()->activeApplication()->desktop() );
422 NbIsosDlg->setU( UIso );
423 NbIsosDlg->setV( VIso );
425 if ( NbIsosDlg->exec() ) {
426 SUIT_OverrideCursor wc;
427 newNbUIso = NbIsosDlg->getU();
428 newNbVIso = NbIsosDlg->getV();
432 else if ( actionType == INCR || actionType == DECR ) {
434 if (actionType == DECR)
437 newNbUIso = UIso + delta;
438 newNbVIso = VIso + delta;
440 if ( newNbUIso < 0 || newNbVIso < 0 || newNbUIso > 99 || newNbVIso > 99 )
444 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
445 Handle( SALOME_InteractiveObject ) io = It.Value();
446 QString anIsos = QString( "%1%2%3" ).arg( newNbUIso ).arg( GEOM::subSectionSeparator() ).arg( newNbVIso );
447 appStudy->setObjectProperty( aMgrId ,io->getEntry(), GEOM::propertyName( GEOM::NbIsos ), anIsos );
448 if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
450 displayer.UpdateViewer();
451 GeometryGUI::Modified();
454 void GEOMToolsGUI::OnDeflection()
456 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
459 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy() );
460 if ( !appStudy ) return;
462 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
463 if ( !aSelMgr ) return;
465 SALOME_ListIO selected;
466 aSelMgr->selectedObjects( selected );
467 if ( selected.IsEmpty() ) return;
469 GEOM_Displayer displayer( appStudy );
470 SALOME_View* window = displayer.GetActiveView();
471 if ( !window ) return;
473 int aMgrId = dynamic_cast< SUIT_ViewModel* >( window )->getViewManager()->getGlobalId();
475 QVariant v = appStudy->getObjectProperty( aMgrId, selected.First()->getEntry(), GEOM::propertyName( GEOM::Deflection ), QVariant() );
476 double aDC = v.isValid() ? v.toDouble() : SUIT_Session::session()->resourceMgr()->doubleValue( "Geometry", "deflection_coef", 0.001 );
478 GEOMToolsGUI_DeflectionDlg * DeflectionDlg = new GEOMToolsGUI_DeflectionDlg
479 ( SUIT_Session::session()->activeApplication()->desktop() );
480 DeflectionDlg->setTheDC( aDC );
481 if ( DeflectionDlg->exec() ) {
482 SUIT_OverrideCursor wc;
483 aDC = DeflectionDlg->getTheDC();
485 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
486 Handle( SALOME_InteractiveObject ) io = It.Value();
487 appStudy->setObjectProperty( aMgrId, io->getEntry(), GEOM::propertyName( GEOM::Deflection ), aDC );
488 if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
491 displayer.UpdateViewer();
492 GeometryGUI::Modified();
495 void GEOMToolsGUI::OnSelectOnly(int mode)
497 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
499 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
500 GEOM_Displayer aDisp (appStudy);
501 aDisp.GlobalSelection(mode);
502 getGeometryGUI()->setLocalSelectionMode(mode);
506 void GEOMToolsGUI::OnDiscloseConcealChildren( bool show )
508 SALOME_ListIO selected;
509 SalomeApp_Application* app =
510 dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
512 SalomeApp_Module* mod = app ? dynamic_cast<SalomeApp_Module*>(app->activeModule()) : 0;
514 GEOM_Displayer* disp = mod ? dynamic_cast<GEOM_Displayer*>(mod->displayer()) : 0;
517 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
518 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
519 if ( aSelMgr && appStudy ) {
520 aSelMgr->selectedObjects( selected );
521 if ( !selected.IsEmpty() ) {
522 _PTR(Study) aStudy = appStudy->studyDS();
523 _PTR(StudyBuilder) B = aStudy->NewBuilder();
525 bool aLocked = ( _PTR(AttributeStudyProperties)( aStudy->GetProperties() ) )->IsLocked();
527 SUIT_MessageBox::warning( app->desktop(),
528 QObject::tr( "WRN_WARNING" ),
529 QObject::tr( "WRN_STUDY_LOCKED" ) );
533 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
534 Handle(SALOME_InteractiveObject) IObject = It.Value();
536 _PTR(SObject) obj ( aStudy->FindObjectID( IObject->getEntry() ) );
537 _PTR(GenericAttribute) anAttr;
539 _PTR(AttributeExpandable) aExp = B->FindOrCreateAttribute( obj, "AttributeExpandable" );
540 aExp->SetExpandable( show );
542 disp->EraseWithChildren(IObject,true);
547 app->updateObjectBrowser( false );
548 app->updateActions();
552 void GEOMToolsGUI::OnPointMarker()
554 GEOMToolsGUI_MarkerDlg dlg( SUIT_Session::session()->activeApplication()->desktop() );
558 void GEOMToolsGUI::OnMaterialProperties()
560 GEOMToolsGUI_MaterialPropertiesDlg* dlg = new GEOMToolsGUI_MaterialPropertiesDlg( SUIT_Session::session()->activeApplication()->desktop(), true, false, QtxDialog::OK | QtxDialog::Close | QtxDialog::Apply | QtxDialog::Help );
564 void GEOMToolsGUI::OnMaterialsLibrary()
566 GEOMToolsGUI_MaterialPropertiesDlg dlg( SUIT_Session::session()->activeApplication()->desktop(), false, true, QtxDialog::Standard );
567 dlg.setWindowTitle( tr( "MATERIAL_LIBRARY_TLT" ) );
571 void GEOMToolsGUI::OnUnpublishObject() {
572 SALOME_ListIO selected;
573 SalomeApp_Application* app =
574 dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
576 SalomeApp_Module* mod = app ? dynamic_cast<SalomeApp_Module*>(app->activeModule()) : 0;
578 GEOM_Displayer* disp = mod ? dynamic_cast<GEOM_Displayer*>(mod->displayer()) : 0;
581 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
582 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
583 if ( aSelMgr && appStudy ) {
584 aSelMgr->selectedObjects( selected );
585 if ( !selected.IsEmpty() ) {
586 _PTR(Study) aStudy = appStudy->studyDS();
587 _PTR(StudyBuilder) B = aStudy->NewBuilder();
589 bool aLocked = ( _PTR(AttributeStudyProperties)( aStudy->GetProperties() ) )->IsLocked();
591 SUIT_MessageBox::warning( app->desktop(),
592 QObject::tr( "WRN_WARNING" ),
593 QObject::tr( "WRN_STUDY_LOCKED" ) );
597 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
598 Handle(SALOME_InteractiveObject) IObject = It.Value();
600 _PTR(SObject) obj ( aStudy->FindObjectID( IObject->getEntry() ) );
601 _PTR(GenericAttribute) anAttr;
603 _PTR(AttributeDrawable) aDrw = B->FindOrCreateAttribute( obj, "AttributeDrawable" );
604 aDrw->SetDrawable( false );
605 disp->EraseWithChildren(IObject);
606 // hide references if any
607 std::vector< _PTR(SObject) > vso = aStudy->FindDependances(obj);
608 for ( int i = 0; i < vso.size(); i++ ) {
609 _PTR(SObject) refObj = vso[i];
610 aDrw = B->FindOrCreateAttribute( refObj, "AttributeDrawable" );
611 aDrw->SetDrawable( false );
615 aSelMgr->clearSelected();
618 app->updateObjectBrowser( false );
619 app->updateActions();
624 void GEOMToolsGUI::OnPublishObject() {
625 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
629 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
633 _PTR(Study) aStudy = appStudy->studyDS();
638 //Check lock of the study
639 bool aLocked = ( _PTR(AttributeStudyProperties)( aStudy->GetProperties() ) )->IsLocked();
641 SUIT_MessageBox::warning( app->desktop(),
642 QObject::tr( "WRN_WARNING" ),
643 QObject::tr( "WRN_STUDY_LOCKED" ) );
647 GEOMToolsGUI_PublishDlg* publishDlg =
648 new GEOMToolsGUI_PublishDlg( SUIT_Session::session()->activeApplication()->desktop() );
653 void GEOMToolsGUI::OnEdgeWidth()
655 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
658 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy() );
659 if ( !appStudy ) return;
661 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
662 if ( !aSelMgr ) return;
664 SALOME_ListIO selected;
665 aSelMgr->selectedObjects( selected );
666 if ( selected.IsEmpty() ) return;
668 GEOM_Displayer displayer( appStudy );
670 SALOME_View* window = displayer.GetActiveView();
671 if ( !window ) return;
673 int aMgrId = dynamic_cast< SUIT_ViewModel* >( window )->getViewManager()->getGlobalId();
675 GEOMToolsGUI_LineWidthDlg* Dlg =
676 new GEOMToolsGUI_LineWidthDlg( SUIT_Session::session()->activeApplication()->desktop(), "EDGE_WIDTH_TLT" );
678 QVariant v = appStudy->getObjectProperty( aMgrId, selected.First()->getEntry(), GEOM::propertyName( GEOM::LineWidth ), QVariant() );
679 int aWidth = v.isValid() ? v.toInt() : SUIT_Session::session()->resourceMgr()->integerValue( "Geometry", "edge_width", 1 );
681 Dlg->setTheLW( aWidth );
683 SUIT_OverrideCursor wc;
684 aWidth = Dlg->getTheLW();
686 return; //Cancel case
687 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
688 Handle( SALOME_InteractiveObject ) io = It.Value();
689 appStudy->setObjectProperty( aMgrId, io->getEntry(), GEOM::propertyName( GEOM::LineWidth ), aWidth );
690 if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
692 displayer.UpdateViewer();
693 GeometryGUI::Modified();
697 void GEOMToolsGUI::OnIsosWidth() {
698 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
701 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy() );
702 if ( !appStudy ) return;
704 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
705 if ( !aSelMgr ) return;
707 SALOME_ListIO selected;
708 aSelMgr->selectedObjects( selected );
709 if ( selected.IsEmpty() ) return;
711 GEOM_Displayer displayer( appStudy );
713 SALOME_View* window = displayer.GetActiveView();
714 if ( !window ) return;
716 int aMgrId = dynamic_cast< SUIT_ViewModel* >( window )->getViewManager()->getGlobalId();
718 GEOMToolsGUI_LineWidthDlg* Dlg =
719 new GEOMToolsGUI_LineWidthDlg( SUIT_Session::session()->activeApplication()->desktop(), "ISOS_WIDTH_TLT" );
721 QVariant v = appStudy->getObjectProperty( aMgrId, selected.First()->getEntry(), GEOM::propertyName( GEOM::IsosWidth ), QVariant() );
722 int aWidth = v.isValid() ? v.toInt() : SUIT_Session::session()->resourceMgr()->integerValue( "Geometry", "isolines_width", 1 );
724 Dlg->setTheLW( aWidth );
726 SUIT_OverrideCursor wc;
727 aWidth = Dlg->getTheLW();
729 return; //Cancel case
730 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
731 Handle( SALOME_InteractiveObject ) io = It.Value();
732 appStudy->setObjectProperty( aMgrId, io->getEntry(), GEOM::propertyName( GEOM::IsosWidth ), aWidth );
733 if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
735 displayer.UpdateViewer();
736 GeometryGUI::Modified();
739 void GEOMToolsGUI::OnBringToFront() {
740 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
743 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy());
744 if (!appStudy) return;
746 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
747 if ( !aSelMgr ) return;
749 SALOME_ListIO selected;
750 aSelMgr->selectedObjects( selected );
751 if ( selected.IsEmpty() ) return;
753 GEOM_Displayer displayer( appStudy );
755 SALOME_View* window = displayer.GetActiveView();
756 if ( !window ) return;
758 int aMgrId = dynamic_cast< SUIT_ViewModel* >( window )->getViewManager()->getGlobalId();
760 QAction* a = getGeometryGUI()->getAction( GEOMOp::OpBringToFront );
761 bool checked = a->isChecked();
763 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
764 Handle( SALOME_InteractiveObject ) io = It.Value();
765 appStudy->setObjectProperty( aMgrId, io->getEntry(), GEOM::propertyName( GEOM::TopLevel ), checked );
766 if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
768 displayer.UpdateViewer();
769 GeometryGUI::Modified();
772 void GEOMToolsGUI::OnClsBringToFront() {
773 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
776 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy() );
777 if ( !appStudy ) return;
779 GEOM_Displayer displayer( appStudy );
781 SALOME_View* window = displayer.GetActiveView();
782 if ( !window ) return;
784 int aMgrId = dynamic_cast< SUIT_ViewModel* >( window )->getViewManager()->getGlobalId();
786 SALOME_ListIO anIOlst;
787 window->GetVisible( anIOlst );
789 for ( SALOME_ListIteratorOfListIO It( anIOlst ); It.More(); It.Next() ) {
790 Handle( SALOME_InteractiveObject ) io = It.Value();
791 appStudy->setObjectProperty( aMgrId, QString( io->getEntry() ), GEOM::propertyName( GEOM::TopLevel ), Standard_False );
792 if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
794 displayer.Redisplay( anIOlst );
795 displayer.UpdateViewer();
796 GeometryGUI::Modified();
799 void GEOMToolsGUI::OnSetMaterial( const QVariant& theParam )
801 if ( !theParam.canConvert<QString>() ) return;
803 QString theName = theParam.toString();
805 SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( SUIT_Session::session()->activeApplication() );
808 SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
809 if ( !study ) return;
811 LightApp_SelectionMgr* selMgr = app->selectionMgr();
813 SALOME_ListIO selected;
814 selMgr->selectedObjects( selected );
816 if ( selected.IsEmpty() ) return;
818 GEOM_Displayer displayer( study );
820 SALOME_View* window = displayer.GetActiveView();
821 if ( !window ) return;
823 int mgrId = dynamic_cast<SUIT_ViewModel*>( window )->getViewManager()->getGlobalId();
825 Material_Model aModel;
826 aModel.fromResources( theName );
827 QString prop = aModel.toProperties();
829 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
830 Handle(SALOME_InteractiveObject) io = It.Value();
831 study->setObjectProperty( mgrId, io->getEntry(), GEOM::propertyName( GEOM::Material ), prop );
832 if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
834 displayer.UpdateViewer();
837 void GEOMToolsGUI::OnCreateFolder()
839 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
842 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy() );
843 if ( !appStudy ) return;
845 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
846 if ( !aSelMgr ) return;
848 SALOME_ListIO selected;
849 aSelMgr->selectedObjects( selected );
850 if ( selected.IsEmpty() ) return;
852 Handle(SALOME_InteractiveObject) anIObject = selected.First();
854 _PTR(Study) aStudy = appStudy->studyDS();
855 if( !aStudy ) return;
856 _PTR(SObject) aFatherSO(aStudy->FindObjectID(anIObject->getEntry()));
857 if ( !aFatherSO ) return;
859 GeometryGUI::GetGeomGen()->CreateFolder( tr("NEW_FOLDER_NAME").toLatin1().constData(),
860 _CAST(SObject, aFatherSO)->GetSObject() );
861 app->updateObjectBrowser( false );
864 void GEOMToolsGUI::OnSortChildren()
866 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
869 SalomeApp_Study* appStudy = dynamic_cast< SalomeApp_Study* >( app->activeStudy() );
870 if ( !appStudy ) return;
872 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
873 if ( !aSelMgr ) return;
875 SALOME_ListIO selected;
876 aSelMgr->selectedObjects( selected );
877 if ( selected.IsEmpty() ) return;
879 Handle(SALOME_InteractiveObject) anIObject = selected.First();
881 _PTR(Study) aStudy = appStudy->studyDS();
882 if( !aStudy ) return;
883 _PTR(SObject) aFatherSO(aStudy->FindObjectID(anIObject->getEntry()));
884 if ( !aFatherSO ) return;
886 aStudy->GetUseCaseBuilder()->SortChildren( aFatherSO, true/*AscendingOrder*/ );
888 app->updateObjectBrowser( true );
891 #ifndef DISABLE_GRAPHICSVIEW
892 void GEOMToolsGUI::OnShowDependencyTree()
894 SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
896 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
899 #ifdef LAYOUT_DEPVIEW
900 SUIT_ViewManager* occVm = app->getViewManager( OCCViewer_Viewer::Type(), true );
901 SUIT_ViewWindow* occVw = occVm->getActiveView();
903 SUIT_ViewManager* depVm = app->getViewManager( GraphicsView_Viewer::Type(), false );
904 SUIT_ViewWindow* depVw = 0;
907 DependencyTree_View* view = new DependencyTree_View();
908 DependencyTree_ViewModel* viewModel = new DependencyTree_ViewModel( GraphicsView_Viewer::Type(), view );
909 depVm = app->createViewManager( viewModel );
911 LightApp_SelectionMgr* selMgr = app->selectionMgr();
912 new DependencyTree_Selector( viewModel, (SUIT_SelectionMgr*)selMgr );
914 depVw = depVm->getActiveView();
915 GraphicsView_ViewFrame* aViewFrame = 0;
916 if ( !depVw ) depVw = depVm->createViewWindow();
917 if ( depVw ) aViewFrame = dynamic_cast<GraphicsView_ViewFrame*>( depVw );
919 view->init( aViewFrame );
920 depVm->setTitle( view->getViewName() );
922 else if ( DependencyTree_ViewModel* viewModel = dynamic_cast<DependencyTree_ViewModel*>( depVm->getViewModel() ) ) {
923 if ( DependencyTree_View* view = dynamic_cast<DependencyTree_View*>( viewModel->getActiveViewPort() ) ) {
924 depVw = depVm->getActiveView();
929 #ifdef LAYOUT_DEPVIEW
930 // layout views properly
931 STD_TabDesktop* d = dynamic_cast<STD_TabDesktop*>( app->desktop() );
932 if ( d && depVw && occVw ) {
933 QtxWorkstack* ws = d->workstack();
935 QApplication::instance()->processEvents();
936 ws->Split( depVw, Qt::Horizontal, QtxWorkstack::SplitMove );
944 void GEOMToolsGUI::OnReduceStudy()
946 QDialog* dlg = new GEOMToolsGUI_ReduceStudyDlg( SUIT_Session::session()->activeApplication()->desktop() );