smesh/src/SMESHGUI/SMESHGUI_Displayer.cxx

127 lines
3.9 KiB
C++
Raw Normal View History

2012-08-09 16:03:55 +06:00
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
2005-09-27 12:33:42 +06:00
//
2012-08-09 16:03:55 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2005-09-27 12:33:42 +06:00
//
2012-08-09 16:03:55 +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.
2005-09-27 12:33:42 +06:00
//
2012-08-09 16:03:55 +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.
2005-09-27 12:33:42 +06:00
//
2012-08-09 16:03:55 +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
2005-09-27 12:33:42 +06:00
//
2012-08-09 16:03:55 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2005-09-27 12:33:42 +06:00
//
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
// SMESH SMESHGUI : Displayer for SMESH module
// File : SMESHGUI_Displayer.cxx
// Author : Alexander SOLOVYOV, Open CASCADE S.A.S.
// SMESH includes
2005-09-27 12:33:42 +06:00
//
2009-02-17 10:27:49 +05:00
2012-08-09 16:03:55 +06:00
#include "SMESHGUI_Displayer.h"
2005-09-27 12:33:42 +06:00
#include "SMESHGUI_VTKUtils.h"
2012-08-09 16:03:55 +06:00
#include "SMESHGUI_Utils.h"
2005-09-27 12:33:42 +06:00
2009-02-17 10:27:49 +05:00
// SALOME GUI includes
2005-09-27 12:33:42 +06:00
#include <SalomeApp_Study.h>
2005-11-14 18:55:07 +05:00
#include <SalomeApp_Application.h>
2009-02-17 10:27:49 +05:00
#include <SUIT_ViewManager.h>
2005-09-27 12:33:42 +06:00
#include <SVTK_ViewModel.h>
#include <SVTK_ViewWindow.h>
2012-08-09 16:03:55 +06:00
// IDL includes
#include <SALOMEconfig.h>
#include CORBA_SERVER_HEADER(SMESH_Group)
#include CORBA_SERVER_HEADER(SMESH_Mesh)
2005-11-14 18:55:07 +05:00
SMESHGUI_Displayer::SMESHGUI_Displayer( SalomeApp_Application* app )
: LightApp_Displayer(),
2005-11-14 18:55:07 +05:00
myApp( app )
2005-09-27 12:33:42 +06:00
{
}
SMESHGUI_Displayer::~SMESHGUI_Displayer()
{
}
SALOME_Prs* SMESHGUI_Displayer::buildPresentation( const QString& entry, SALOME_View* theViewFrame )
{
SALOME_Prs* prs = 0;
SALOME_View* aViewFrame = theViewFrame ? theViewFrame : GetActiveView();
if ( aViewFrame )
{
SVTK_Viewer* vtk_viewer = dynamic_cast<SVTK_Viewer*>( aViewFrame );
if( vtk_viewer )
{
SUIT_ViewWindow* wnd = vtk_viewer->getViewManager()->getActiveView();
2009-02-17 10:27:49 +05:00
SMESH_Actor* anActor = SMESH::FindActorByEntry( wnd, entry.toLatin1().data() );
2005-09-27 12:33:42 +06:00
if( !anActor )
2012-08-09 16:03:55 +06:00
anActor = SMESH::CreateActor( study()->studyDS(), entry.toLatin1().data(), true );
2005-09-27 12:33:42 +06:00
if( anActor )
{
2012-08-09 16:03:55 +06:00
SMESH::DisplayActor( wnd, anActor );
2009-02-17 10:27:49 +05:00
prs = LightApp_Displayer::buildPresentation( entry.toLatin1().data(), aViewFrame );
2005-09-27 12:33:42 +06:00
}
if( prs )
2012-08-09 16:03:55 +06:00
UpdatePrs( prs );
2005-09-27 12:33:42 +06:00
else if( anActor )
2012-08-09 16:03:55 +06:00
SMESH::RemoveActor( vtk_viewer->getViewManager()->getActiveView(), anActor );
2005-09-27 12:33:42 +06:00
}
}
return prs;
}
2005-11-14 18:55:07 +05:00
SalomeApp_Study* SMESHGUI_Displayer::study() const
{
return dynamic_cast<SalomeApp_Study*>( myApp->activeStudy() );
}
2012-08-09 16:03:55 +06:00
bool SMESHGUI_Displayer::canBeDisplayed( const QString& entry, const QString& viewer_type ) const {
bool res = false;
if(viewer_type != SVTK_Viewer::Type())
return res;
SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( myApp->activeStudy() );
if( !study )
return res;
_PTR(SObject) obj = study->studyDS()->FindObjectID( (const char*)entry.toLatin1() );
CORBA::Object_var anObj = SMESH::SObjectToObject( obj );
/*
if( !CORBA::is_nil( anObj ) ) {
SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( anObj );
if ( ! mesh->_is_nil() )
res = (mesh->NbNodes() > 0);
SMESH::SMESH_subMesh_var aSubMeshObj = SMESH::SMESH_subMesh::_narrow( anObj );
if ( !aSubMeshObj->_is_nil() )
res = (aSubMeshObj->GetNumberOfNodes(true) > 0);
SMESH::SMESH_GroupBase_var aGroupObj = SMESH::SMESH_GroupBase::_narrow( anObj );
if ( !aGroupObj->_is_nil() )
res = !aGroupObj->IsEmpty();
}*/
if( !CORBA::is_nil( anObj ) ) {
if(!SMESH::SMESH_Mesh::_narrow( anObj )->_is_nil() ||
!SMESH::SMESH_subMesh::_narrow( anObj )->_is_nil() ||
!SMESH::SMESH_GroupBase::_narrow( anObj )->_is_nil())
res = true;
}
return res;
}