geom/src/DisplayGUI/DisplayGUI.cxx

594 lines
21 KiB
C++
Raw Normal View History

2012-08-09 13:58:02 +06:00
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
2004-01-07 20:46:21 +05:00
//
2012-08-09 13:58:02 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2004-01-07 20:46:21 +05:00
//
2012-08-09 13:58:02 +06:00
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License.
2004-01-07 20:46:21 +05:00
//
2012-08-09 13:58:02 +06:00
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
2009-02-13 17:16:39 +05:00
// GEOM GEOMGUI : GUI for Geometry component
// File : DisplayGUI.cxx
// Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
2004-01-07 20:46:21 +05:00
//
#include "DisplayGUI.h"
2009-02-13 17:16:39 +05:00
#include <GeometryGUI.h>
2012-08-09 13:58:02 +06:00
#include "GeometryGUI_Operations.h"
#include <GEOM_Constants.h>
2009-02-13 17:16:39 +05:00
#include <GEOM_Displayer.h>
#include <GEOM_AISShape.hxx>
2012-08-09 13:58:02 +06:00
#include <GEOM_Actor.h>
2004-01-07 20:46:21 +05:00
#include <SUIT_Desktop.h>
#include <SUIT_ViewWindow.h>
#include <SUIT_OverrideCursor.h>
#include <OCCViewer_ViewManager.h>
#include <OCCViewer_ViewModel.h>
2009-02-13 17:16:39 +05:00
#include <SALOME_ListIO.hxx>
#include <SALOME_ListIteratorOfListIO.hxx>
#include <SVTK_ViewWindow.h>
#include <SVTK_View.h>
#include <SVTK_ViewModel.h>
#include <SOCC_ViewModel.h>
#include <SVTK_Prs.h>
#include <SOCC_Prs.h>
#include <QtxActionMenuMgr.h>
#include <SalomeApp_Application.h>
#include <LightApp_SelectionMgr.h>
#include <SalomeApp_Study.h>
2004-01-07 20:46:21 +05:00
#include <AIS_ListIteratorOfListOfInteractive.hxx>
2012-08-09 13:58:02 +06:00
#include <vtkActorCollection.h>
#include <vtkRenderer.h>
2009-02-13 17:16:39 +05:00
#include <QAction>
2004-06-16 21:24:55 +06:00
2004-12-01 15:39:14 +05:00
//=======================================================================
// function : DisplayGUI::DisplayGUI()
2004-01-07 20:46:21 +05:00
// purpose : Constructor
//=======================================================================
DisplayGUI::DisplayGUI( GeometryGUI* parent ) : GEOMGUI( parent )
2004-01-07 20:46:21 +05:00
{
}
//=======================================================================
2004-12-01 15:39:14 +05:00
// function : DisplayGUI::~DisplayGUI()
2004-01-07 20:46:21 +05:00
// purpose : Destructor
//=======================================================================
DisplayGUI::~DisplayGUI()
{
}
//=======================================================================
2004-12-01 15:39:14 +05:00
// function : DisplayGUI::OnGUIEvent()
// purpose : Dispatch menu command
2004-01-07 20:46:21 +05:00
//=======================================================================
bool DisplayGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
2004-01-07 20:46:21 +05:00
{
SalomeApp_Application* app = getGeometryGUI()->getApp();
if (!app) return false;
LightApp_SelectionMgr *Sel = app->selectionMgr();
SALOME_ListIO selected;
Sel->selectedObjects( selected );
2004-01-07 20:46:21 +05:00
2012-08-09 13:58:02 +06:00
switch ( theCommandID ) {
case GEOMOp::OpDMWireframe: // MENU VIEW - DISPLAY MODE - WIREFRAME
SetDisplayMode( 0 );
break;
case GEOMOp::OpDMShading: // MENU VIEW - DISPLAY MODE - SHADING
SetDisplayMode( 1 );
break;
case GEOMOp::OpDMShadingWithEdges: // MENU VIEW - DISPLAY MODE - SHADING WITH EDGES
SetDisplayMode( 2 );
break;
case GEOMOp::OpShowAll: // MENU VIEW - SHOW ALL
getGeometryGUI()->EmitSignalDeactivateDialog();
DisplayAll();
break;
case GEOMOp::OpShowOnly: // POPUP MENU - SHOW ONLY
getGeometryGUI()->EmitSignalDeactivateDialog();
DisplayOnly();
break;
case GEOMOp::OpHideAll: // MENU VIEW - HIDE ALL
EraseAll();
break;
case GEOMOp::OpHide: // POPUP MENU - HIDE
Erase();
break;
case GEOMOp::OpShow: // POPUP MENU - SHOW
getGeometryGUI()->EmitSignalDeactivateDialog();
Display();
break;
case GEOMOp::OpSwitchVectors: // MENU VIEW - DISPLAY MODE - SHOW EDGE DIRECTION
SetVectorMode(!GetVectorMode());
getGeometryGUI()->action( GEOMOp::OpSwitchVectors )->setText
( GetVectorMode() ? tr("MEN_VECTOR_MODE_ON") : tr( "MEN_VECTOR_MODE_OFF" ) );
getGeometryGUI()->menuMgr()->update();
break;
case GEOMOp::OpWireframe: // POPUP MENU - DISPLAY MODE - WIREFRAME
ChangeDisplayMode( 0 );
break;
case GEOMOp::OpShading: // POPUP MENU - DISPLAY MODE - SHADING
ChangeDisplayMode( 1 );
break;
case GEOMOp::OpShadingWithEdges: // POPUP MENU - DISPLAY MODE - SHADING WITH EDGES
ChangeDisplayMode( 2 );
break;
case GEOMOp::OpTexture: // POPUP MENU - DISPLAY MODE - TEXTURE
ChangeDisplayMode( 3 );
break;
case GEOMOp::OpVectors: // POPUP MENU - DISPLAY MODE - SHOW EDGE DIRECTION
ChangeDisplayMode( 4 );
break;
2004-12-01 15:39:14 +05:00
default:
2012-08-09 13:58:02 +06:00
app->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
break;
2004-12-01 15:39:14 +05:00
}
Sel->setSelectedObjects( selected );
2004-01-07 20:46:21 +05:00
return true;
}
2004-12-01 15:39:14 +05:00
//=====================================================================================
// function : DisplayGUI::DisplayAll()
// purpose : Display all GEOM objects
//=====================================================================================
void DisplayGUI::DisplayAll()
2004-01-07 20:46:21 +05:00
{
SalomeApp_Application* app = getGeometryGUI()->getApp();
if ( !app ) return;
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
if ( !appStudy ) return;
_PTR(Study) aStudy = appStudy->studyDS();
if ( !aStudy ) return;
_PTR(SComponent) SC ( aStudy->FindComponent( "GEOM" ) );
if ( !SC )
2004-06-16 21:24:55 +06:00
return;
2004-12-01 15:39:14 +05:00
SALOME_ListIO listIO;
_PTR(ChildIterator) anIter ( aStudy->NewChildIterator( SC ) );
2004-12-01 15:39:14 +05:00
anIter->InitEx( true );
SUIT_OverrideCursor();
2004-12-01 15:39:14 +05:00
while( anIter->More() ) {
_PTR(SObject) valSO ( anIter->Value() );
_PTR(SObject) refSO;
2004-12-01 15:39:14 +05:00
if ( !valSO->ReferencedObject( refSO ) ) {
listIO.Append( new SALOME_InteractiveObject(valSO->GetID().c_str(),
SC->ComponentDataType().c_str(),
valSO->GetName().c_str()) );
2004-01-07 20:46:21 +05:00
}
2004-12-01 15:39:14 +05:00
anIter->Next();
2004-01-07 20:46:21 +05:00
}
GEOM_Displayer( appStudy ).Display( listIO, true );
2004-01-07 20:46:21 +05:00
}
//=====================================================================================
2004-12-01 15:39:14 +05:00
// function : DisplayGUI::EraseAll()
// purpose : Erase all GEOM objects
2004-01-07 20:46:21 +05:00
//=====================================================================================
2004-12-01 15:39:14 +05:00
void DisplayGUI::EraseAll()
2004-01-07 20:46:21 +05:00
{
SUIT_OverrideCursor();
SUIT_Application* app = getGeometryGUI()->getApp();
if ( app ) {
SUIT_ViewWindow* vw = app->desktop()->activeWindow();
if ( vw ) {
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
SUIT_ViewManager* vman = vw->getViewManager();
if ( vman->getType() == OCCViewer_Viewer::Type() ||
2012-08-09 13:58:02 +06:00
vman->getType() == SVTK_Viewer::Type() ) {
GEOM_Displayer( appStudy ).EraseAll();
}
}
}
2004-01-07 20:46:21 +05:00
}
//=====================================================================================
2004-12-01 15:39:14 +05:00
// function : DisplayGUI::DisplayOnly()
// purpose : Display selected GEOM objects and erase other
2004-01-07 20:46:21 +05:00
//=====================================================================================
2004-12-01 15:39:14 +05:00
void DisplayGUI::DisplayOnly()
2004-01-07 20:46:21 +05:00
{
2004-12-01 15:39:14 +05:00
EraseAll();
Display();
}
2004-01-07 20:46:21 +05:00
//=====================================================================================
2004-12-01 15:39:14 +05:00
// function : DisplayGUI::Display()
// purpose : Display selected GEOM objects
2004-01-07 20:46:21 +05:00
//=====================================================================================
2004-12-01 15:39:14 +05:00
void DisplayGUI::Display()
2004-01-07 20:46:21 +05:00
{
2004-12-01 15:39:14 +05:00
SALOME_ListIO listIO;
SalomeApp_Application* app = getGeometryGUI()->getApp();
if ( !app ) return;
SalomeApp_Study* anActiveStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
if ( !anActiveStudy ) return;
//get SalomeApp selection manager
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
if ( !aSelMgr ) return;
SALOME_ListIO aList;
aSelMgr->selectedObjects( aList );
SALOME_ListIteratorOfListIO It( aList );
SUIT_OverrideCursor();
2004-12-01 15:39:14 +05:00
for( ;It.More();It.Next() ) {
Handle(SALOME_InteractiveObject) anIObject = It.Value();
if ( anIObject->hasEntry() ) {
_PTR(SObject) SO ( anActiveStudy->studyDS()->FindObjectID( anIObject->getEntry() ) );
if ( SO && QString(SO->GetID().c_str()) == QString(SO->GetFatherComponent()->GetID().c_str()) ) {
2012-08-09 13:58:02 +06:00
_PTR(SComponent) SC ( SO->GetFatherComponent() );
// if component is selected
listIO.Clear();
_PTR(ChildIterator) anIter ( anActiveStudy->studyDS()->NewChildIterator( SO ) );
anIter->InitEx( true );
while( anIter->More() ) {
_PTR(SObject) valSO ( anIter->Value() );
_PTR(SObject) refSO;
if ( !valSO->ReferencedObject( refSO ) ) {
listIO.Append( new SALOME_InteractiveObject(valSO->GetID().c_str(),
SC->ComponentDataType().c_str(),
valSO->GetName().c_str()) );
2012-08-09 13:58:02 +06:00
}
anIter->Next();
}
break;
2004-12-01 15:39:14 +05:00
}
else {
2012-08-09 13:58:02 +06:00
listIO.Append( anIObject );
2004-01-07 20:46:21 +05:00
}
}
else {
2004-12-01 15:39:14 +05:00
listIO.Append( anIObject );
2004-01-07 20:46:21 +05:00
}
}
GEOM_Displayer( anActiveStudy ).Display( listIO, true );
2004-01-07 20:46:21 +05:00
}
//=====================================================================================
2004-12-01 15:39:14 +05:00
// function : DisplayGUI::Erase()
// purpose : Erase selected GEOM objects
2004-01-07 20:46:21 +05:00
//=====================================================================================
2004-12-01 15:39:14 +05:00
void DisplayGUI::Erase()
2004-01-07 20:46:21 +05:00
{
2004-12-01 15:39:14 +05:00
SALOME_ListIO listIO;
SalomeApp_Application* app = getGeometryGUI()->getApp();
if ( !app ) return;
SalomeApp_Study* anActiveStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
if ( !anActiveStudy ) return;
//get SalomeApp selection manager
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
if ( !aSelMgr ) return;
SALOME_ListIO aList;
aSelMgr->selectedObjects( aList );
SALOME_ListIteratorOfListIO It( aList );
SUIT_OverrideCursor();
for( ; It.More(); It.Next() ) {
2004-12-01 15:39:14 +05:00
Handle(SALOME_InteractiveObject) anIObject = It.Value();
if ( anIObject->hasEntry() ) {
_PTR(SObject) SO ( anActiveStudy->studyDS()->FindObjectID( anIObject->getEntry() ) );
if ( SO && QString(SO->GetID().c_str()) == QString(SO->GetFatherComponent()->GetID().c_str()) ) {
2012-08-09 13:58:02 +06:00
_PTR(SComponent) SC ( SO->GetFatherComponent() );
// if component is selected
listIO.Clear();
_PTR(ChildIterator) anIter ( anActiveStudy->studyDS()->NewChildIterator( SO ) );
anIter->InitEx( true );
while( anIter->More() ) {
_PTR(SObject) valSO ( anIter->Value() );
_PTR(SObject) refSO;
if ( !valSO->ReferencedObject( refSO ) ) {
listIO.Append( new SALOME_InteractiveObject(valSO->GetID().c_str(),
SC->ComponentDataType().c_str(),
valSO->GetName().c_str()) );
2012-08-09 13:58:02 +06:00
}
anIter->Next();
}
break;
2004-01-07 20:46:21 +05:00
}
else {
2012-08-09 13:58:02 +06:00
listIO.Append( anIObject );
2004-01-07 20:46:21 +05:00
}
}
2004-12-01 15:39:14 +05:00
else {
listIO.Append( anIObject );
}
2004-01-07 20:46:21 +05:00
}
SUIT_ViewWindow* viewWindow = app->desktop()->activeWindow();
bool aIsForced = true;
if(viewWindow->getViewManager()->getType() == SVTK_Viewer::Type())
aIsForced = false;
GEOM_Displayer(anActiveStudy).Erase( listIO, aIsForced);
getGeometryGUI()->getApp()->selectionMgr()->clearSelected();
2004-01-07 20:46:21 +05:00
}
//=====================================================================================
2004-12-01 15:39:14 +05:00
// function : DisplayGUI::SetDisplayMode()
// purpose : Set display mode for the viewer (current viewer if <viewWindow> - 0 )
2004-01-07 20:46:21 +05:00
//=====================================================================================
void DisplayGUI::SetDisplayMode( const int mode, SUIT_ViewWindow* viewWindow )
2004-01-07 20:46:21 +05:00
{
SUIT_OverrideCursor();
if ( !viewWindow )
viewWindow = getGeometryGUI()->getApp()->desktop()->activeWindow();
if ( viewWindow->getViewManager()->getType() == SVTK_Viewer::Type() ) {
SVTK_View* aView = ((SVTK_ViewWindow*)viewWindow)->getView();
aView->SetDisplayMode( mode );
2012-08-09 13:58:02 +06:00
GeometryGUI::Modified();
2004-12-01 15:39:14 +05:00
}
else if ( viewWindow->getViewManager()->getType() == OCCViewer_Viewer::Type() ) {
OCCViewer_Viewer* v3d = ((OCCViewer_ViewManager*)(viewWindow->getViewManager()))->getOCCViewer();
2004-12-01 15:39:14 +05:00
Handle(AIS_InteractiveContext) ic = v3d->getAISContext();
2012-08-09 13:58:02 +06:00
AIS_DisplayMode newmode;
switch (mode) {
case 0:
newmode = AIS_WireFrame;
break;
case 1:
newmode = AIS_Shaded;
break;
case 2:
newmode = AIS_DisplayMode( GEOM_AISShape::ShadingWithEdges );
break;
case 3:
newmode = AIS_DisplayMode( GEOM_AISShape::TexturedShape );
break;
default:
break;
}
2004-12-01 15:39:14 +05:00
AIS_ListOfInteractive List;
ic->DisplayedObjects( List );
AIS_ListOfInteractive List1;
ic->ObjectsInCollector( List1 );
List.Append( List1 );
2012-08-09 13:58:02 +06:00
2004-12-01 15:39:14 +05:00
AIS_ListIteratorOfListOfInteractive ite( List );
while( ite.More() ) {
if( ite.Value()->IsInstance( STANDARD_TYPE(GEOM_AISShape) ) ) {
Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast( ite.Value() );
2012-08-09 13:58:02 +06:00
if(aSh->isTopLevel()) {
aSh->setPrevDisplayMode(Standard_Integer( newmode ));
}
else {
ic->SetDisplayMode( aSh, Standard_Integer( newmode ),true );
}
2004-12-01 15:39:14 +05:00
}
ite.Next();
2004-01-07 20:46:21 +05:00
}
2012-08-09 13:58:02 +06:00
2004-12-01 15:39:14 +05:00
ic->SetDisplayMode( newmode, Standard_False );
2012-08-09 13:58:02 +06:00
GeometryGUI::Modified();
2004-01-07 20:46:21 +05:00
}
}
//=====================================================================================
2012-08-09 13:58:02 +06:00
// function : DisplayGUI::SetVectorsMode()
// purpose : Set vector mode for the viewer
2004-01-07 20:46:21 +05:00
//=====================================================================================
2012-08-09 13:58:02 +06:00
void DisplayGUI::SetVectorMode( const bool mode, SUIT_ViewWindow* viewWindow )
2004-01-07 20:46:21 +05:00
{
2012-08-09 13:58:02 +06:00
SUIT_OverrideCursor();
if ( !viewWindow )
viewWindow = getGeometryGUI()->getApp()->desktop()->activeWindow();
if ( viewWindow->getViewManager()->getType() == SVTK_Viewer::Type() ) {
2012-08-09 13:58:02 +06:00
viewWindow->setProperty( "VectorsMode", mode );
SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( viewWindow );
vtkActorCollection* allActors = vw->getRenderer()->GetActors();
allActors->InitTraversal();
while (vtkActor* actor = allActors->GetNextActor()) {
if (actor->GetVisibility()) { // only for visible actors
GEOM_Actor* aGeomActor = 0;
if ( actor->IsA( "GEOM_Actor" ) ) {
aGeomActor = GEOM_Actor::SafeDownCast( actor );
if ( aGeomActor )
aGeomActor->SetVectorMode( mode );
}
}
}
GeometryGUI::Modified();
}
else if ( viewWindow->getViewManager()->getType() == OCCViewer_Viewer::Type() ) {
2012-08-09 13:58:02 +06:00
viewWindow->setProperty( "VectorsMode", mode );
OCCViewer_Viewer* v3d = ((OCCViewer_ViewManager*)(viewWindow->getViewManager()))->getOCCViewer();
2004-12-01 15:39:14 +05:00
Handle(AIS_InteractiveContext) ic = v3d->getAISContext();
2012-08-09 13:58:02 +06:00
AIS_ListOfInteractive List;
ic->DisplayedObjects( List );
AIS_ListOfInteractive List1;
ic->ObjectsInCollector( List1 );
List.Append( List1 );
AIS_ListIteratorOfListOfInteractive ite( List );
while( ite.More() ) {
if( ite.Value()->IsInstance( STANDARD_TYPE(GEOM_AISShape) ) ) {
Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast( ite.Value() );
aSh->SetDisplayVectors(mode);
ic->RecomputePrsOnly(ite.Value());
}
ite.Next();
}
GeometryGUI::Modified();
2004-12-01 15:39:14 +05:00
}
}
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
//=====================================================================================
2012-08-09 13:58:02 +06:00
// function : DisplayGUI::GetVectorMode()
// purpose : Get the "show edge direction" mode of the viewer
2004-12-01 15:39:14 +05:00
//=====================================================================================
2012-08-09 13:58:02 +06:00
int DisplayGUI::GetVectorMode( SUIT_ViewWindow* viewWindow )
2004-12-01 15:39:14 +05:00
{
2012-08-09 13:58:02 +06:00
if ( !viewWindow )
viewWindow = getGeometryGUI()->getApp()->desktop()->activeWindow();
return viewWindow->property( "VectorsMode" ).toBool();
2004-01-07 20:46:21 +05:00
}
2004-12-01 15:39:14 +05:00
//=====================================================================================
// function : DisplayGUI::ChangeDisplayMode()
// purpose : Set display mode for selected objects in the viewer given
// (current viewer if <viewWindow> = 0 )
2004-12-01 15:39:14 +05:00
//=====================================================================================
void DisplayGUI::ChangeDisplayMode( const int mode, SUIT_ViewWindow* viewWindow )
2004-12-01 15:39:14 +05:00
{
SalomeApp_Application* app = getGeometryGUI()->getApp();
if ( !app ) return;
if ( !viewWindow )
viewWindow = app->desktop()->activeWindow();
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
if ( !aSelMgr ) return;
2012-08-09 13:58:02 +06:00
SalomeApp_Study* aStudy = dynamic_cast<SalomeApp_Study*>(app->activeStudy());
if(!aStudy)
return;
SUIT_OverrideCursor();
SALOME_ListIO aList;
if ( viewWindow->getViewManager()->getType() == SVTK_Viewer::Type() ) {
SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( viewWindow );
SVTK_View* aView = vw->getView();
2012-08-09 13:58:02 +06:00
int mgrId = viewWindow->getViewManager()->getGlobalId();
bool vectorMode = false;
aSelMgr->selectedObjects( aList );
SALOME_ListIteratorOfListIO It( aList );
2004-12-01 15:39:14 +05:00
for( ;It.More(); It.Next() ) {
SVTK_Viewer* stvkViewer = dynamic_cast<SVTK_Viewer*>(vw->getViewManager()->getViewModel());
SVTK_Prs* vtkPrs =
stvkViewer ? dynamic_cast<SVTK_Prs*>( stvkViewer->CreatePrs( It.Value()->getEntry() ) ) : 0;
2004-12-01 15:39:14 +05:00
if ( vtkPrs && !vtkPrs->IsNull() ) {
2012-08-09 13:58:02 +06:00
if (mode == 0 )
aView->ChangeRepresentationToWireframe( vtkPrs->GetObjects() );
2004-12-01 15:39:14 +05:00
else if ( mode == 1 )
2012-08-09 13:58:02 +06:00
aView->ChangeRepresentationToSurface( vtkPrs->GetObjects() );
else if ( mode == 2 )
aView->ChangeRepresentationToSurfaceWithEdges( vtkPrs->GetObjects() );
else if ( mode == 4 ) {
vtkActorCollection* anActors = vtkPrs->GetObjects();
anActors->InitTraversal();
while (vtkActor* anAct = anActors->GetNextActor()) {
GEOM_Actor* aGeomActor = GEOM_Actor::SafeDownCast(anAct);
vectorMode = !aGeomActor->GetVectorMode();
aGeomActor->SetVectorMode(vectorMode);
}
}
if(mode == 0 || mode == 1 || mode == 2) {
aStudy->setObjectProperty(mgrId,It.Value()->getEntry(),DISPLAY_MODE_PROP, mode);
}
else if (mode == 4) {
aStudy->setObjectProperty(mgrId, It.Value()->getEntry(),VECTOR_MODE_PROP, vectorMode);
}
2004-12-01 15:39:14 +05:00
}
}
aView->Repaint();
2012-08-09 13:58:02 +06:00
GeometryGUI::Modified();
2004-12-01 15:39:14 +05:00
}
else if ( viewWindow->getViewManager()->getType() == OCCViewer_Viewer::Type() ) {
OCCViewer_Viewer* v3d = ((OCCViewer_ViewManager*)(viewWindow->getViewManager()))->getOCCViewer();
2004-12-01 15:39:14 +05:00
Handle(AIS_InteractiveContext) ic = v3d->getAISContext();
aSelMgr->selectedObjects( aList );
SALOME_ListIteratorOfListIO It( aList );
2012-08-09 13:58:02 +06:00
int mgrId = viewWindow->getViewManager()->getGlobalId();
bool vectorMode = 0;
2004-12-01 15:39:14 +05:00
for( ;It.More(); It.Next() ) {
SOCC_Viewer* soccViewer = (SOCC_Viewer*)(viewWindow->getViewManager()->getViewModel());
SOCC_Prs* occPrs = dynamic_cast<SOCC_Prs*>( soccViewer->CreatePrs( It.Value()->getEntry() ) );
2004-12-01 15:39:14 +05:00
if ( occPrs && !occPrs->IsNull() ) {
2012-08-09 13:58:02 +06:00
AIS_ListOfInteractive shapes; occPrs->GetObjects( shapes );
AIS_ListIteratorOfListOfInteractive interIter( shapes );
for ( ; interIter.More(); interIter.Next() ) {
Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast( interIter.Value() );
if ( !aSh.IsNull() ) {
if(!aSh->isTopLevel()) {
if ( mode == 0 )
ic->SetDisplayMode( interIter.Value(), AIS_WireFrame, false );
else if ( mode == 1 )
ic->SetDisplayMode( interIter.Value(), AIS_Shaded, false );
else if ( mode == 2 )
ic->SetDisplayMode( interIter.Value(), GEOM_AISShape::ShadingWithEdges, false );
else if ( mode == 3 )
ic->SetDisplayMode( interIter.Value(), AIS_ExactHLR, false );
} else {
aSh->setPrevDisplayMode(mode);
}
if (mode == 4 ) {
vectorMode = !aSh->isShowVectors();
aSh->SetDisplayVectors(vectorMode);
ic->RecomputePrsOnly(interIter.Value());
}
}
}
if(mode == 0 || mode == 1 || mode == 2 || mode == 3) {
aStudy->setObjectProperty(mgrId, It.Value()->getEntry(),DISPLAY_MODE_PROP, mode);
}
else if (mode == 4) {
aStudy->setObjectProperty(mgrId, It.Value()->getEntry(),VECTOR_MODE_PROP, vectorMode);
2004-12-01 15:39:14 +05:00
}
}
}
ic->UpdateCurrentViewer();
2012-08-09 13:58:02 +06:00
GeometryGUI::Modified();
2004-12-01 15:39:14 +05:00
}
}
2004-01-07 20:46:21 +05:00
//=====================================================================================
// EXPORTED METHODS
//=====================================================================================
extern "C"
{
2009-02-13 17:16:39 +05:00
#ifdef WIN32
__declspec( dllexport )
#endif
GEOMGUI* GetLibGUI( GeometryGUI* parent )
2004-12-01 15:39:14 +05:00
{
return new DisplayGUI( parent );
2004-12-01 15:39:14 +05:00
}
2004-01-07 20:46:21 +05:00
}