2005-06-02 15:34:45 +06:00
|
|
|
#include "GEOMGUI_Selection.h"
|
2005-08-18 12:15:31 +06:00
|
|
|
|
|
|
|
#include "GeometryGUI.h"
|
2005-06-02 15:34:45 +06:00
|
|
|
#include "GEOM_Displayer.h"
|
|
|
|
|
2005-11-03 13:30:14 +05:00
|
|
|
#include <LightApp_DataOwner.h>
|
2005-06-02 15:34:45 +06:00
|
|
|
#include <SalomeApp_Study.h>
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
#include <OCCViewer_ViewModel.h>
|
|
|
|
|
2005-06-02 15:34:45 +06:00
|
|
|
#include <SUIT_Session.h>
|
|
|
|
#include <SUIT_ViewWindow.h>
|
|
|
|
#include <SUIT_ViewManager.h>
|
|
|
|
#include <SUIT_ViewModel.h>
|
|
|
|
|
|
|
|
#include <SALOMEDSClient_SObject.hxx>
|
|
|
|
#include <SALOMEDSClient_Study.hxx>
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2005-06-02 15:34:45 +06:00
|
|
|
#include <SALOME_Prs.h>
|
|
|
|
#include <SALOME_InteractiveObject.hxx>
|
|
|
|
|
|
|
|
#include <SOCC_Prs.h>
|
2005-06-14 18:40:36 +06:00
|
|
|
#include <SVTK_Prs.h>
|
|
|
|
#include <SALOME_Actor.h>
|
2005-06-02 15:34:45 +06:00
|
|
|
|
|
|
|
#include <OCCViewer_ViewModel.h>
|
2005-10-05 12:28:23 +06:00
|
|
|
#include <SVTK_ViewModel.h>
|
2005-06-02 15:34:45 +06:00
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
#include "GEOMImpl_Types.hxx"
|
|
|
|
|
|
|
|
// OCCT Includes
|
2005-06-02 15:34:45 +06:00
|
|
|
#include <AIS.hxx>
|
|
|
|
#include <AIS_InteractiveObject.hxx>
|
|
|
|
#include <AIS_ListOfInteractive.hxx>
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
// VTK Includes
|
|
|
|
#include <vtkActorCollection.h>
|
|
|
|
|
2005-06-02 15:34:45 +06:00
|
|
|
GEOMGUI_Selection::GEOMGUI_Selection()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
GEOMGUI_Selection::~GEOMGUI_Selection()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:13:27 +06:00
|
|
|
QtxValue GEOMGUI_Selection::globalParam( const QString& p ) const
|
2005-06-02 15:34:45 +06:00
|
|
|
{
|
2005-07-11 17:07:49 +06:00
|
|
|
if ( p == "isOCC" ) return QtxValue( activeViewType() == OCCViewer_Viewer::Type() );
|
2005-11-03 13:30:14 +05:00
|
|
|
|
|
|
|
return LightApp_Selection::globalParam( p );
|
2005-06-24 12:13:27 +06:00
|
|
|
}
|
2005-06-02 15:34:45 +06:00
|
|
|
|
2005-06-24 12:13:27 +06:00
|
|
|
QtxValue GEOMGUI_Selection::param( const int ind, const QString& p ) const
|
|
|
|
{
|
2005-09-27 12:32:15 +06:00
|
|
|
// if ( p == "isVisible" ) return QtxValue( isVisible( ind ) );
|
|
|
|
// parameter isVisible is calculated in base SalomeApp_Selection
|
|
|
|
// else
|
|
|
|
if( p == "type" )
|
|
|
|
return QtxValue( typeName( ind ) );
|
|
|
|
else if ( p == "displaymode" )
|
|
|
|
return QtxValue( displayMode( ind ) );
|
|
|
|
else
|
2005-11-03 13:30:14 +05:00
|
|
|
return LightApp_Selection::param( ind, p );
|
2005-06-02 15:34:45 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
QString GEOMGUI_Selection::typeName( const int index ) const
|
|
|
|
{
|
|
|
|
if ( isComponent( index ) )
|
|
|
|
return "Component";
|
|
|
|
GEOM::GEOM_Object_var anObj = getObject( index );
|
|
|
|
if ( !CORBA::is_nil( anObj ) ) {
|
|
|
|
const int aGeomType = anObj->GetType();
|
|
|
|
if ( aGeomType == GEOM_GROUP )
|
|
|
|
return "Group";
|
|
|
|
else
|
|
|
|
return "Shape";
|
|
|
|
}
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GEOMGUI_Selection::isVisible( const int index ) const
|
|
|
|
{
|
|
|
|
GEOM::GEOM_Object_var obj = getObject( index );
|
|
|
|
SALOME_View* view = GEOM_Displayer::GetActiveView();
|
|
|
|
if ( !CORBA::is_nil( obj ) && view ) {
|
|
|
|
Handle(SALOME_InteractiveObject) io = new SALOME_InteractiveObject( entry( index ).latin1(), "GEOM", "TEMP_IO" );
|
|
|
|
return view->isVisible( io );
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString GEOMGUI_Selection::displayMode( const int index ) const
|
|
|
|
{
|
|
|
|
SALOME_View* view = GEOM_Displayer::GetActiveView();
|
2005-07-11 17:07:49 +06:00
|
|
|
QString viewType = activeViewType();
|
2005-10-05 12:28:23 +06:00
|
|
|
if ( view /*fix for 9320==>*/&& ( viewType == OCCViewer_Viewer::Type() || viewType == SVTK_Viewer::Type() ) ) {
|
2005-06-02 15:34:45 +06:00
|
|
|
SALOME_Prs* prs = view->CreatePrs( entry( index ) );
|
|
|
|
if ( prs ) {
|
2005-07-11 17:07:49 +06:00
|
|
|
if ( viewType == OCCViewer_Viewer::Type() ) { // assuming OCC
|
2005-06-02 15:34:45 +06:00
|
|
|
SOCC_Prs* occPrs = (SOCC_Prs*) prs;
|
|
|
|
AIS_ListOfInteractive lst;
|
|
|
|
occPrs->GetObjects( lst );
|
|
|
|
if ( lst.Extent() ) {
|
|
|
|
Handle(AIS_InteractiveObject) io = lst.First();
|
|
|
|
if ( !io.IsNull() ) {
|
|
|
|
int dm = io->DisplayMode();
|
|
|
|
if ( dm == AIS_WireFrame )
|
|
|
|
return "Wireframe";
|
|
|
|
else if ( dm == AIS_Shaded )
|
|
|
|
return "Shading";
|
|
|
|
else { // return default display mode of AIS_InteractiveContext
|
|
|
|
OCCViewer_Viewer* occViewer = (OCCViewer_Viewer*) SUIT_Session::session()->activeApplication()->desktop(
|
|
|
|
)->activeWindow()->getViewManager()->getViewModel();
|
|
|
|
Handle(AIS_InteractiveContext) ic = occViewer->getAISContext();
|
|
|
|
dm = ic->DisplayMode();
|
|
|
|
if ( dm == AIS_WireFrame )
|
|
|
|
return "Wireframe";
|
|
|
|
else if ( dm == AIS_Shaded )
|
|
|
|
return "Shading";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-08-18 12:15:31 +06:00
|
|
|
}
|
2005-10-05 12:28:23 +06:00
|
|
|
else if ( viewType == SVTK_Viewer::Type() ) { // assuming VTK
|
|
|
|
SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
|
|
|
|
vtkActorCollection* lst = vtkPrs ? vtkPrs->GetObjects() : 0;
|
2005-06-14 18:40:36 +06:00
|
|
|
if ( lst ) {
|
|
|
|
lst->InitTraversal();
|
|
|
|
vtkActor* actor = lst->GetNextActor();
|
|
|
|
if ( actor ) {
|
|
|
|
SALOME_Actor* salActor = dynamic_cast<SALOME_Actor*>( actor );
|
|
|
|
if ( salActor ) {
|
|
|
|
int dm = salActor->getDisplayMode();
|
|
|
|
if ( dm == 0 )
|
|
|
|
return "Wireframe";
|
2005-08-18 12:15:31 +06:00
|
|
|
else if ( dm == 1 )
|
2005-06-14 18:40:36 +06:00
|
|
|
return "Shading";
|
|
|
|
} // if ( salome actor )
|
|
|
|
} // if ( actor )
|
|
|
|
} // if ( lst == vtkPrs->GetObjects() )
|
|
|
|
} // if VTK
|
2005-06-02 15:34:45 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GEOMGUI_Selection::isComponent( const int index ) const
|
|
|
|
{
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>
|
|
|
|
(SUIT_Session::session()->activeApplication()->activeStudy());
|
|
|
|
|
|
|
|
if ( appStudy && index >= 0 && index < count() ) {
|
|
|
|
_PTR(Study) study = appStudy->studyDS();
|
|
|
|
QString anEntry = entry( index );
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
if ( study && !anEntry.isNull() ) {
|
2005-06-02 15:34:45 +06:00
|
|
|
_PTR(SObject) aSO( study->FindObjectID( anEntry.latin1() ) );
|
2005-08-18 12:15:31 +06:00
|
|
|
if ( aSO && aSO->GetFatherComponent() )
|
2005-06-02 15:34:45 +06:00
|
|
|
return aSO->GetFatherComponent()->GetIOR() == aSO->GetIOR();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
GEOM::GEOM_Object_ptr GEOMGUI_Selection::getObject( const int index ) const
|
|
|
|
{
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>
|
|
|
|
(SUIT_Session::session()->activeApplication()->activeStudy());
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
if (appStudy && index >= 0 && index < count()) {
|
2005-06-02 15:34:45 +06:00
|
|
|
_PTR(Study) study = appStudy->studyDS();
|
2005-08-18 12:15:31 +06:00
|
|
|
QString anEntry = entry(index);
|
2005-06-02 15:34:45 +06:00
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
if (study && !anEntry.isNull()) {
|
|
|
|
_PTR(SObject) aSO (study->FindObjectID(anEntry.latin1()));
|
|
|
|
if (aSO) {
|
|
|
|
CORBA::Object_var anObj = GeometryGUI::ClientSObjectToObject(aSO);
|
|
|
|
return GEOM::GEOM_Object::_narrow(anObj);
|
2005-06-02 15:34:45 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return GEOM::GEOM_Object::_nil();
|
|
|
|
}
|