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 : GEOMToolsGUI_1.cxx
25 // Author : Sergey ANIKIN, Open CASCADE S.A.S. (sergey.anikin@opencascade.com)
27 #include <PyConsole_Console.h>
29 #include "GEOMToolsGUI.h"
30 #include "GEOMToolsGUI_TransparencyDlg.h"
31 #include "GEOMToolsGUI_NbIsosDlg.h"
32 #include "GEOMToolsGUI_DeflectionDlg.h"
33 #include "GEOMToolsGUI_MarkerDlg.h"
35 #include <GeometryGUI.h>
36 #include <GEOM_Displayer.h>
39 #include <GEOM_Actor.h>
41 #include <SALOME_ListIO.hxx>
42 #include <SALOME_ListIteratorOfListIO.hxx>
47 #include <SVTK_ViewModel.h>
48 #include <SVTK_ViewWindow.h>
49 #include <SVTK_View.h>
51 #include <OCCViewer_ViewModel.h>
53 #include <SUIT_ViewManager.h>
54 #include <SUIT_Desktop.h>
55 #include <SUIT_ResourceMgr.h>
56 #include <SUIT_Session.h>
57 #include <SUIT_OverrideCursor.h>
58 #include <SUIT_MessageBox.h>
59 #include <SUIT_Tools.h>
61 #include <SalomeApp_Application.h>
62 #include <SalomeApp_Study.h>
63 #include <SalomeApp_Module.h>
65 #include <LightApp_SelectionMgr.h>
66 #include <LightApp_NameDlg.h>
68 #include <GEOMImpl_Types.hxx>
70 #include "utilities.h"
73 #include <AIS_Drawer.hxx>
74 #include <Prs3d_IsoAspect.hxx>
75 #include <Prs3d_PointAspect.hxx>
76 #include <Graphic3d_AspectMarker3d.hxx>
77 #include <Graphic3d_HArray1OfBytes.hxx>
80 #include <QColorDialog>
81 #include <QInputDialog>
84 #include <QGridLayout>
87 #include <QPushButton>
91 #include <vtkRenderer.h>
93 void GEOMToolsGUI::OnRename()
95 SALOME_ListIO selected;
96 SalomeApp_Application* app =
97 dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
99 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
100 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
101 if ( aSelMgr && appStudy ) {
102 aSelMgr->selectedObjects( selected );
103 if ( !selected.IsEmpty() ) {
104 _PTR(Study) aStudy = appStudy->studyDS();
106 bool aLocked = (_PTR(AttributeStudyProperties)(aStudy->GetProperties()))->IsLocked();
108 SUIT_MessageBox::warning ( app->desktop(),
109 QObject::tr("WRN_WARNING"),
110 QObject::tr("WRN_STUDY_LOCKED") );
114 bool isAny = false; // is there any appropriate object selected
115 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
116 Handle(SALOME_InteractiveObject) IObject = It.Value();
118 _PTR(SObject) obj ( aStudy->FindObjectID(IObject->getEntry()) );
119 _PTR(GenericAttribute) anAttr;
121 if ( obj->FindAttribute(anAttr, "AttributeName") ) {
122 _PTR(AttributeName) aName (anAttr);
124 GEOM::GEOM_Object_var anObj =
125 GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(obj));
126 if (!CORBA::is_nil(anObj)) {
128 QString newName = LightApp_NameDlg::getName( app->desktop(), aName->Value().c_str() );
129 if (!newName.isEmpty()) {
130 aName->SetValue( newName.toLatin1().data() ); // rename the SObject
131 IObject->setName( newName.toLatin1().data() );// rename the InteractiveObject
132 anObj->SetName( newName.toLatin1().data() ); // Rename the corresponding GEOM_Object
133 (dynamic_cast<SalomeApp_Module*>(app->activeModule()))->updateObjBrowser( false );
136 } // if ( name attribute )
141 SUIT_MessageBox::warning( app->desktop(),
142 QObject::tr("WRN_WARNING"),
143 QObject::tr("GEOM_WRN_NO_APPROPRIATE_SELECTION") );
150 app->updateActions(); //SRN: To update a Save button in the toolbar
153 void GEOMToolsGUI::OnCheckGeometry()
155 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
156 PyConsole_Console* pyConsole = app->pythonConsole();
159 pyConsole->exec("from GEOM_usinggeom import *");
162 void GEOMToolsGUI::OnAutoColor()
164 SALOME_ListIO selected;
165 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
169 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
170 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
171 if( !aSelMgr || !appStudy )
174 aSelMgr->selectedObjects( selected );
175 if( selected.IsEmpty() )
178 Handle(SALOME_InteractiveObject) anIObject = selected.First();
180 _PTR(Study) aStudy = appStudy->studyDS();
181 _PTR(SObject) aMainSObject( aStudy->FindObjectID( anIObject->getEntry() ) );
182 GEOM::GEOM_Object_var aMainObject = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aMainSObject));
183 if( CORBA::is_nil( aMainObject ) )
186 aMainObject->SetAutoColor( true );
188 QList<SALOMEDS::Color> aReservedColors;
190 GEOM_Displayer aDisp (appStudy);
192 SALOME_View* vf = aDisp.GetActiveView();
194 SUIT_ViewWindow* window = app->desktop()->activeWindow();
195 bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
196 bool isVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
198 for( _PTR(ChildIterator) it( aStudy->NewChildIterator( aMainSObject ) ); it->More(); it->Next() )
200 _PTR(SObject) aChildSObject( it->Value() );
201 GEOM::GEOM_Object_var aChildObject = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aChildSObject));
202 if( CORBA::is_nil( aChildObject ) )
205 if( aChildObject->GetType() != GEOM_GROUP )
208 SALOMEDS::Color aColor = GEOM_Displayer::getUniqueColor( aReservedColors );
209 aChildObject->SetColor( aColor );
210 aReservedColors.append( aColor );
212 QColor c( (int)( aColor.R * 255.0 ), (int)( aColor.G * 255.0 ), (int)( aColor.B * 255.0 ) );
214 SALOME_Prs* aPrs = vf->CreatePrs( aChildSObject->GetID().c_str() );
218 SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
221 SVTK_View* aView = vtkVW->getView();
222 SUIT_OverrideCursor();
223 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() )
224 aView->SetColor( It.Value(), c );
228 OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>( window->getViewManager()->getViewModel() );
229 Handle(AIS_InteractiveContext) ic = vm->getAISContext();
231 SOCC_Prs* anOCCPrs = dynamic_cast<SOCC_Prs*>( aPrs );
235 AIS_ListOfInteractive aList;
236 anOCCPrs->GetObjects( aList );
237 if( !aList.Extent() )
240 Handle(AIS_InteractiveObject) io = aList.First();
244 Quantity_Color aQuanColor( c.red() / 255., c.green() / 255., c.blue() / 255., Quantity_TOC_RGB );
246 // Set color for a point
247 Handle(AIS_Drawer) aCurDrawer = io->Attributes();
248 Handle(Prs3d_PointAspect) aCurPointAspect = aCurDrawer->PointAspect();
249 Quantity_Color aCurColor;
250 Standard_Real aCurScale;
251 Aspect_TypeOfMarker aCurTypeOfMarker;
252 aCurPointAspect->Aspect()->Values( aCurColor, aCurTypeOfMarker, aCurScale );
253 if ( aCurTypeOfMarker != Aspect_TOM_USERDEFINED ) {
254 aCurDrawer->SetPointAspect( new Prs3d_PointAspect( aCurTypeOfMarker, aQuanColor, aCurScale) );
257 Standard_Integer aWidth, aHeight;
258 aCurPointAspect->GetTextureSize( aWidth, aHeight );
259 Handle(Graphic3d_HArray1OfBytes) aTexture = aCurPointAspect->GetTexture();
260 aCurDrawer->SetPointAspect( new Prs3d_PointAspect( aQuanColor, 1, aWidth, aHeight, aTexture ) );
262 ic->SetLocalAttributes( io, aCurDrawer );
264 io->SetColor( aQuanColor );
265 if ( io->IsKind( STANDARD_TYPE(GEOM_AISShape) ) )
266 Handle(GEOM_AISShape)::DownCast( io )->SetShadingColor( aQuanColor );
268 io->Redisplay( Standard_True );
272 app->updateActions(); //SRN: To update a Save button in the toolbar
275 void GEOMToolsGUI::OnDisableAutoColor()
277 SALOME_ListIO selected;
278 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
282 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
283 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
284 if( !aSelMgr || !appStudy )
287 aSelMgr->selectedObjects( selected );
288 if( selected.IsEmpty() )
291 Handle(SALOME_InteractiveObject) anIObject = selected.First();
293 _PTR(Study) aStudy = appStudy->studyDS();
294 _PTR(SObject) aMainSObject( aStudy->FindObjectID( anIObject->getEntry() ) );
295 GEOM::GEOM_Object_var aMainObject = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aMainSObject));
296 if( CORBA::is_nil( aMainObject ) )
299 aMainObject->SetAutoColor( false );
303 void GEOMToolsGUI::OnColor()
305 SALOME_ListIO selected;
306 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
307 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
308 if ( app && appStudy ) {
309 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
311 aSelMgr->selectedObjects( selected );
312 if ( !selected.IsEmpty() ) {
313 SUIT_ViewWindow* window = app->desktop()->activeWindow();
314 bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
315 bool isVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
317 SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
320 SVTK_View* aView = vtkVW->getView();
321 QColor initcolor = aView->GetColor( selected.First() );
322 QColor c = QColorDialog::getColor( initcolor, app->desktop() );
324 SUIT_OverrideCursor();
325 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
326 aView->SetColor( It.Value(), c );
331 Handle(AIS_InteractiveObject) io = GEOMBase::GetAIS( selected.First() );
332 if ( !io.IsNull() ) {
333 Quantity_Color aColor;
335 QColor initcolor ((int)( aColor.Red() * 255.0 ),
336 (int)( aColor.Green() * 255.0 ),
337 (int)( aColor.Blue() * 255.0 ));
338 QColor c = QColorDialog::getColor( initcolor, app->desktop() );
340 SUIT_OverrideCursor();
341 aColor = Quantity_Color( c.red() / 255., c.green() / 255., c.blue() / 255., Quantity_TOC_RGB );
342 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
343 io = GEOMBase::GetAIS( It.Value(), true );
344 if ( !io.IsNull() ) {
345 // Set color for a point
346 OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>
347 ( window->getViewManager()->getViewModel() );
348 Handle (AIS_InteractiveContext) ic = vm->getAISContext();
349 Handle(AIS_Drawer) aCurDrawer = io->Attributes();
350 Handle(Prs3d_PointAspect) aCurPointAspect = aCurDrawer->PointAspect();
351 Quantity_Color aCurColor;
352 Standard_Real aCurScale;
353 Aspect_TypeOfMarker aCurTypeOfMarker;
354 aCurPointAspect->Aspect()->Values( aCurColor, aCurTypeOfMarker, aCurScale );
355 if ( aCurTypeOfMarker != Aspect_TOM_USERDEFINED ) {
356 aCurDrawer->SetPointAspect(new Prs3d_PointAspect(aCurTypeOfMarker, aColor, aCurScale));
359 Standard_Integer aWidth, aHeight;
360 aCurPointAspect->GetTextureSize( aWidth, aHeight );
361 Handle(Graphic3d_HArray1OfBytes) aTexture = aCurPointAspect->GetTexture();
362 aCurDrawer->SetPointAspect(new Prs3d_PointAspect(aColor, 1, aWidth, aHeight, aTexture));
364 ic->SetLocalAttributes(io, aCurDrawer);
366 io->SetColor( aColor );
367 if ( io->IsKind( STANDARD_TYPE(GEOM_AISShape) ) )
368 Handle(GEOM_AISShape)::DownCast( io )->SetShadingColor( aColor );
370 io->Redisplay( Standard_True );
372 // store color to GEOM_Object
373 _PTR(Study) aStudy = appStudy->studyDS();
374 _PTR(SObject) aSObject( aStudy->FindObjectID( It.Value()->getEntry() ) );
375 GEOM::GEOM_Object_var anObject =
376 GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aSObject));
378 SALOMEDS::Color aSColor;
379 aSColor.R = (double)c.red() / 255.0;
380 aSColor.G = (double)c.green() / 255.0;
381 aSColor.B = (double)c.blue() / 255.0;
382 anObject->SetColor( aSColor );
383 anObject->SetAutoColor( false );
387 } // first IO is not null
389 } // if ( selection not empty )
393 app->updateActions(); //SRN: To update a Save button in the toolbar
396 void GEOMToolsGUI::OnTransparency()
398 GEOMToolsGUI_TransparencyDlg dlg( SUIT_Session::session()->activeApplication()->desktop() );
402 void GEOMToolsGUI::OnChangeTransparency( bool increase )
404 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
407 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
410 SALOME_ListIO selected;
411 aSelMgr->selectedObjects( selected );
412 if ( selected.IsEmpty() )
415 Handle(SALOME_InteractiveObject) FirstIOS = selected.First();
416 if ( FirstIOS.IsNull() )
424 SUIT_ViewWindow* window = app->desktop()->activeWindow();
425 bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
426 bool isVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
429 SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
432 SVTK_View* aView = vtkVW->getView();
434 float transp = aView->GetTransparency(FirstIOS);
436 // Compute new transparency value
437 transp = transp + delta;
440 else if ( transp > 1 )
443 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
444 aView->SetTransparency( It.Value(), transp );
450 GEOMBase* gb = new GEOMBase();
451 Standard_Boolean found;
452 Handle(GEOM_AISShape) aisShape;
454 aisShape = gb->ConvertIOinGEOMAISShape( FirstIOS, found );
457 float transp = aisShape->Transparency();
459 // Compute new transparency value
460 transp = transp + delta;
463 else if ( transp > 1 )
466 OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>( window->getViewManager()->getViewModel() );
469 Handle(AIS_InteractiveContext) ic = vm->getAISContext();
470 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
471 aisShape = gb->ConvertIOinGEOMAISShape( It.Value(), found );
473 ic->SetTransparency( aisShape, transp, false );
474 ic->Redisplay( aisShape, Standard_False, Standard_True );
477 ic->UpdateCurrentViewer();
481 void GEOMToolsGUI::OnNbIsos( ActionType actionType )
483 SUIT_ViewWindow* window = SUIT_Session::session()->activeApplication()->desktop()->activeWindow();
485 bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
486 bool isVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
488 if(isOCC){ // if is OCCViewer
490 OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>( window->getViewManager()->getViewModel() );
491 Handle (AIS_InteractiveContext) ic = vm->getAISContext();
494 if ( ic->MoreCurrent() ) {
495 Handle(GEOM_AISShape) CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
496 Handle(AIS_Drawer) CurDrawer = CurObject->Attributes();
498 int UIso = CurDrawer->UIsoAspect()->Number();
499 int VIso = CurDrawer->VIsoAspect()->Number();
504 if ( actionType == SHOWDLG ) {
505 GEOMToolsGUI_NbIsosDlg * NbIsosDlg =
506 new GEOMToolsGUI_NbIsosDlg( SUIT_Session::session()->activeApplication()->desktop() );
508 NbIsosDlg->setU( UIso );
509 NbIsosDlg->setV( VIso );
511 if ( NbIsosDlg->exec() ) {
512 SUIT_OverrideCursor();
514 newNbUIso = NbIsosDlg->getU();
515 newNbVIso = NbIsosDlg->getV();
518 else if ( actionType == INCR || actionType == DECR ) {
520 if (actionType == DECR)
523 newNbUIso = UIso + delta;
524 newNbVIso = VIso + delta;
526 if ( newNbUIso < 0 || newNbVIso < 0 || newNbUIso > 99 || newNbVIso > 99 )
530 for(; ic->MoreCurrent(); ic->NextCurrent()) {
531 CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
532 Handle(AIS_Drawer) CurDrawer = CurObject->Attributes();
534 CurDrawer->SetUIsoAspect( new Prs3d_IsoAspect(Quantity_NOC_GRAY75, Aspect_TOL_SOLID, 0.5 , newNbUIso) );
535 CurDrawer->SetVIsoAspect( new Prs3d_IsoAspect(Quantity_NOC_GRAY75, Aspect_TOL_SOLID, 0.5 , newNbVIso) );
537 ic->SetLocalAttributes(CurObject, CurDrawer);
538 ic->Redisplay(CurObject);
542 else if(isVTK){ // if is VTKViewer
544 // Warning. It's works incorrect. must be recheked.
546 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >
547 ( SUIT_Session::session()->activeApplication() );
550 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
553 SALOME_ListIO selected;
554 aSelMgr->selectedObjects( selected );
555 if ( selected.IsEmpty() )
558 SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
562 SALOME_View* view = GEOM_Displayer::GetActiveView();
564 vtkActorCollection* aCollection = vtkActorCollection::New();
566 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
567 Handle(SALOME_InteractiveObject) anIObject = It.Value();
568 SALOME_Prs* aPrs = view->CreatePrs( anIObject->getEntry() );
569 SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( aPrs );
571 vtkActorCollection* anActors = vtkPrs->GetObjects();
572 anActors->InitTraversal();
573 vtkActor* anAct = anActors->GetNextActor();
574 aCollection->AddItem(anAct);
579 aCollection->InitTraversal();
586 vtkActor* anAct = aCollection->GetNextActor();
587 if (GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct))
588 anActor->GetNbIsos(UIso,VIso);
595 if ( actionType == SHOWDLG ) {
596 GEOMToolsGUI_NbIsosDlg* NbIsosDlg =
597 new GEOMToolsGUI_NbIsosDlg( SUIT_Session::session()->activeApplication()->desktop() );
599 NbIsosDlg->setU( UIso );
600 NbIsosDlg->setV( VIso );
602 if ( NbIsosDlg->exec() ) {
603 SUIT_OverrideCursor();
605 newNbUIso = NbIsosDlg->getU();
606 newNbVIso = NbIsosDlg->getV();
609 else if ( actionType == INCR || actionType == DECR ) {
611 if (actionType == DECR)
614 newNbUIso = UIso + delta;
615 newNbVIso = VIso + delta;
617 if ( newNbUIso < 0 || newNbVIso < 0 || newNbUIso > 99 || newNbVIso > 99 )
621 while( anAct!=NULL ) {
622 if(GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct)){
623 // There are no casting to needed actor.
624 int aIsos[2]={newNbUIso,newNbVIso};
625 anActor->SetNbIsos(aIsos);
627 anAct = aCollection->GetNextActor();
633 void GEOMToolsGUI::OnDeflection()
635 SUIT_ViewWindow* window = SUIT_Session::session()->activeApplication()->desktop()->activeWindow();
637 bool isOCC = (window && window->getViewManager()->getType() == OCCViewer_Viewer::Type());
638 bool isVTK = (window && window->getViewManager()->getType() == SVTK_Viewer::Type());
640 if (isOCC) { // if is OCCViewer
641 OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>(window->getViewManager()->getViewModel());
642 Handle (AIS_InteractiveContext) ic = vm->getAISContext();
645 if (ic->MoreCurrent()) {
646 Handle(GEOM_AISShape) CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
648 Standard_Real aDC, aPrevDC;
649 Standard_Boolean isOwnDC = CurObject->OwnDeviationCoefficient(aDC, aPrevDC);
651 aDC = ic->DeviationCoefficient();
653 GEOMToolsGUI_DeflectionDlg * DeflectionDlg = new GEOMToolsGUI_DeflectionDlg
654 (SUIT_Session::session()->activeApplication()->desktop());
655 DeflectionDlg->setTheDC(aDC);
659 if (DeflectionDlg->exec()) {
660 SUIT_OverrideCursor();
661 aNewDC = DeflectionDlg->getTheDC();
662 ok = (1e-07 <= aNewDC && aNewDC <= 1.0); // spinbox can return zero
664 for (; ic->MoreCurrent(); ic->NextCurrent()) {
665 CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
666 ic->SetDeviationCoefficient(CurObject, aNewDC, Standard_True);
667 ic->Redisplay(CurObject);
677 else if (isVTK) { // if is VTKViewer
678 SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>
679 (SUIT_Session::session()->activeApplication());
683 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
687 SALOME_ListIO selected;
688 aSelMgr->selectedObjects(selected);
689 if (selected.IsEmpty())
692 SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>(window);
696 SALOME_View* view = GEOM_Displayer::GetActiveView();
698 vtkActorCollection* aCollection = vtkActorCollection::New();
700 for (SALOME_ListIteratorOfListIO It (selected); It.More(); It.Next()) {
701 Handle(SALOME_InteractiveObject) anIObject = It.Value();
702 SALOME_Prs* aPrs = view->CreatePrs(anIObject->getEntry());
703 SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>(aPrs);
705 vtkActorCollection* anActors = vtkPrs->GetObjects();
706 anActors->InitTraversal();
707 vtkActor* anAct = anActors->GetNextActor();
708 aCollection->AddItem(anAct);
713 aCollection->InitTraversal();
719 vtkActor* anAct = aCollection->GetNextActor();
720 if (GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct))
721 aDC = anActor->GetDeflection();
725 GEOMToolsGUI_DeflectionDlg* DeflectionDlg = new GEOMToolsGUI_DeflectionDlg
726 (SUIT_Session::session()->activeApplication()->desktop());
727 DeflectionDlg->setTheDC(aDC);
728 if (DeflectionDlg->exec()) {
729 SUIT_OverrideCursor();
730 aDC = DeflectionDlg->getTheDC();
731 while (anAct != NULL) {
732 if (GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct)) {
733 // There are no casting to needed actor.
734 bool isRel = anActor->GetIsRelative();
735 anActor->SetDeflection(aDC, isRel);
737 anAct = aCollection->GetNextActor();
743 void GEOMToolsGUI::OnSelectOnly(int mode)
745 SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
747 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
748 GEOM_Displayer aDisp (appStudy);
749 aDisp.GlobalSelection(mode);
750 getGeometryGUI()->setLocalSelectionMode(mode);
754 void GEOMToolsGUI::OnShowHideChildren( bool show )
756 SALOME_ListIO selected;
757 SalomeApp_Application* app =
758 dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
760 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
761 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
762 if ( aSelMgr && appStudy ) {
763 aSelMgr->selectedObjects( selected );
764 if ( !selected.IsEmpty() ) {
765 _PTR(Study) aStudy = appStudy->studyDS();
766 _PTR(StudyBuilder) B = aStudy->NewBuilder();
768 bool aLocked = ( _PTR(AttributeStudyProperties)( aStudy->GetProperties() ) )->IsLocked();
770 SUIT_MessageBox::warning( app->desktop(),
771 QObject::tr( "WRN_WARNING" ),
772 QObject::tr( "WRN_STUDY_LOCKED" ) );
776 for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
777 Handle(SALOME_InteractiveObject) IObject = It.Value();
779 _PTR(SObject) obj ( aStudy->FindObjectID( IObject->getEntry() ) );
780 _PTR(GenericAttribute) anAttr;
782 _PTR(AttributeExpandable) aExp = B->FindOrCreateAttribute( obj, "AttributeExpandable" );
783 aExp->SetExpandable( show );
788 app->updateObjectBrowser( false );
789 app->updateActions();
793 void GEOMToolsGUI::OnPointMarker()
795 GEOMToolsGUI_MarkerDlg dlg( SUIT_Session::session()->activeApplication()->desktop() );