geom/src/GEOMBase/GEOMBase_Helper.cxx

1120 lines
38 KiB
C++
Raw Normal View History

2010-04-21 14:08:27 +06:00
// Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
2004-12-01 15:39:14 +05:00
//
2009-02-13 17:16:39 +05:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
//
// 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.
//
// 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.
//
// 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
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2004-12-01 15:39:14 +05:00
//
2010-04-21 14:08:27 +06:00
// GEOM GEOMGUI : GUI for Geometry component
// File : GEOMBase_Helper.cxx
// Author : Sergey ANIKIN, Open CASCADE S.A.S. (sergey.anikin@opencascade.com)
2010-04-21 14:08:27 +06:00
//
2004-12-01 15:39:14 +05:00
#include "GEOMBase_Helper.h"
#include "GEOMBase.h"
#include "GEOM_Operation.h"
2009-02-13 17:16:39 +05:00
#include <GeometryGUI.h>
#include <SUIT_Desktop.h>
#include <SUIT_Session.h>
2009-02-13 17:16:39 +05:00
#include <SUIT_ViewManager.h>
#include <SUIT_ViewWindow.h>
2009-02-13 17:16:39 +05:00
#include <SUIT_ViewModel.h>
#include <SUIT_MessageBox.h>
#include <SUIT_OverrideCursor.h>
#include <SalomeApp_Module.h>
#include <SalomeApp_Application.h>
#include <SalomeApp_Study.h>
#include <LightApp_SelectionMgr.h>
#include <LightApp_DataOwner.h>
#include <SalomeApp_Tools.h>
2009-02-13 17:16:39 +05:00
#include <SALOME_Prs.h>
#include <OCCViewer_ViewModel.h>
#include <SVTK_ViewModel.h>
2004-12-01 15:39:14 +05:00
#include <TColStd_MapOfInteger.hxx>
#include <TCollection_AsciiString.hxx>
2009-12-08 17:05:55 +05:00
//To disable automatic genericobj management, the following line should be commented.
//Otherwise, it should be uncommented. Refer to KERNEL_SRC/src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx
#define WITHGENERICOBJ
2009-12-08 17:05:55 +05:00
2004-12-01 15:39:14 +05:00
//================================================================
// Function : getActiveView
// Purpose : Get active view window, returns 0 if no open study frame
2004-12-01 15:39:14 +05:00
//================================================================
static SUIT_ViewWindow* getActiveView()
2004-12-01 15:39:14 +05:00
{
SUIT_Study* activeStudy = SUIT_Session::session()->activeApplication()->activeStudy();
if ( activeStudy )
return SUIT_Session::session()->activeApplication()->desktop()->activeWindow();
2004-12-01 15:39:14 +05:00
return 0;
}
//================================================================
// Function : getGeomEngine
// Purpose : Static method
//================================================================
GEOM::GEOM_Gen_ptr GEOMBase_Helper::getGeomEngine()
{
return GeometryGUI::GetGeomGen();
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : GEOMBase_Helper
// Purpose :
//================================================================
GEOMBase_Helper::GEOMBase_Helper( SUIT_Desktop* desktop )
: myDesktop( desktop ), myViewWindow( 0 ), myDisplayer( 0 ), myCommand( 0 ), isPreview( false )
2004-12-01 15:39:14 +05:00
{
}
//================================================================
// Function : ~GEOMBase_Helper
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
GEOMBase_Helper::~GEOMBase_Helper()
{
if ( !SUIT_Session::session()->activeApplication()->desktop() )
2005-01-20 19:11:08 +05:00
return;
2004-12-01 15:39:14 +05:00
if ( myPreview.size() )
erasePreview();
if ( hasCommand() )
abortCommand();
SalomeApp_Application* app = (SalomeApp_Application*)(SUIT_Session::session()->activeApplication());
if (app) {
GeometryGUI* aGeomGUI = dynamic_cast<GeometryGUI*>( app->module( "Geometry" ) );
if(aGeomGUI)
globalSelection(aGeomGUI->getLocalSelectionMode() , true );
}
if (myDisplayer)
delete myDisplayer;
2009-09-22 20:33:45 +06:00
if ( !CORBA::is_nil( myOperation ) )
myOperation->Destroy();
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : display
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
void GEOMBase_Helper::display( const ObjectList& objList, const bool updateView )
{
ObjectList::const_iterator it;
for ( it = objList.begin(); it != objList.end(); it++ ) {
display( *it, false );
}
if ( !objList.empty() && updateView )
getDisplayer()->UpdateViewer();
}
//================================================================
// Function : display
// Purpose : Display object.
// Important : Object must be already in study
//================================================================
void GEOMBase_Helper::display( GEOM::GEOM_Object_ptr object, const bool updateView )
{
// Unset color of shape ( this color may be set during preview displaying )
// Default color will be used
getDisplayer()->UnsetColor();
getDisplayer()->UnsetWidth();
// Enable activisation of selection
getDisplayer()->SetToActivate( true );
// Display object
getDisplayer()->Display( object, updateView );
}
//================================================================
// Function : erase
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
void GEOMBase_Helper::erase( const ObjectList& objList, const bool updateView )
{
ObjectList::const_iterator it = objList.begin();
for ( ; it != objList.end(); it++ ) {
erase( *it, false );
}
if ( !objList.empty() && updateView )
getDisplayer()->UpdateViewer();
}
//================================================================
// Function : erase
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
void GEOMBase_Helper::erase( GEOM::GEOM_Object_ptr object, const bool updateView )
{
if ( !object->_is_nil() ) {
2009-02-13 17:16:39 +05:00
std::string entry = getEntry( object );
2004-12-01 15:39:14 +05:00
getDisplayer()->Erase( new SALOME_InteractiveObject(
2009-02-13 17:16:39 +05:00
entry.c_str(), "GEOM", strdup( GEOMBase::GetName( object ).toLatin1().constData() ) ), true, updateView );
2004-12-01 15:39:14 +05:00
}
}
//================================================================
// Function : redisplay
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
void GEOMBase_Helper::redisplay( const ObjectList& objList,
2009-12-25 16:28:58 +05:00
const bool withChildren,
const bool updateView )
2004-12-01 15:39:14 +05:00
{
ObjectList::const_iterator it = objList.begin();
for ( ; it != objList.end(); it++ ) {
redisplay( *it, withChildren, false );
}
if ( !objList.empty() && updateView )
getDisplayer()->UpdateViewer();
}
//================================================================
// Function : redisplay
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
void GEOMBase_Helper::redisplay( GEOM::GEOM_Object_ptr object,
2009-12-25 16:28:58 +05:00
const bool withChildren,
const bool updateView )
2004-12-01 15:39:14 +05:00
{
if ( !object->_is_nil() ) {
// Unset color of shape ( this color may be set during preview displaying )
// Default color will be used
getDisplayer()->UnsetColor();
getDisplayer()->UnsetWidth();
2004-12-01 15:39:14 +05:00
// Enable activisation of selection
getDisplayer()->SetToActivate( true );
2009-02-13 17:16:39 +05:00
std::string entry = getEntry( object );
getDisplayer()->Redisplay(new SALOME_InteractiveObject
2009-02-13 17:16:39 +05:00
(entry.c_str(), "GEOM", strdup(GEOMBase::GetName(object).toLatin1().constData())), false);
2004-12-01 15:39:14 +05:00
}
2004-12-01 15:39:14 +05:00
if ( withChildren ) {
SalomeApp_Study* aDoc = getStudy();
if ( aDoc && aDoc->studyDS() ) {
_PTR(Study) aStudy = aDoc->studyDS();
CORBA::String_var objStr = SalomeApp_Application::orb()->object_to_string(object);
2009-02-13 17:16:39 +05:00
_PTR(SObject) aSObj (aStudy->FindObjectIOR(std::string(objStr.in())));
if ( aSObj ) {
2009-12-25 16:28:58 +05:00
_PTR(ChildIterator) anIt ( aStudy->NewChildIterator( aSObj ) );
for ( anIt->InitEx( true ); anIt->More(); anIt->Next() ) {
GEOM::GEOM_Object_var aChild = GEOM::GEOM_Object::_narrow
(GeometryGUI::ClientSObjectToObject(anIt->Value()));
2009-12-25 16:28:58 +05:00
if ( !CORBA::is_nil( aChild ) ) {
if ( !aChild->_is_nil() ) {
std::string entry = getEntry( aChild );
getDisplayer()->Redisplay( new SALOME_InteractiveObject(
2009-02-13 17:16:39 +05:00
entry.c_str(), "GEOM", strdup( GEOMBase::GetName( aChild ).toLatin1().constData() ) ), false );
2009-12-25 16:28:58 +05:00
}
}
}
}
2004-12-01 15:39:14 +05:00
}
}
2004-12-01 15:39:14 +05:00
if ( updateView )
getDisplayer()->UpdateViewer();
}
//================================================================
// Function : displayPreview
// Purpose : Method for displaying preview based on execute() results
//================================================================
void GEOMBase_Helper::displayPreview( const bool activate,
const bool update,
const bool toRemoveFromEngine,
const double lineWidth,
const int displayMode,
const int color )
2004-12-01 15:39:14 +05:00
{
isPreview = true;
2004-12-01 15:39:14 +05:00
QString msg;
if ( !isValid( msg ) )
{
erasePreview( update );
isPreview = false;
2004-12-01 15:39:14 +05:00
return;
}
erasePreview( false );
try {
SUIT_OverrideCursor wc;
2004-12-01 15:39:14 +05:00
ObjectList objects;
if ( !execute( objects ) || !getOperation()->IsDone() ) {
wc.suspend();
2004-12-01 15:39:14 +05:00
}
else {
for ( ObjectList::iterator it = objects.begin(); it != objects.end(); ++it )
{
2009-12-25 16:28:58 +05:00
GEOM::GEOM_Object_var obj=*it;
displayPreview( obj, true, activate, false, lineWidth, displayMode, color );
2004-12-01 15:39:14 +05:00
if ( toRemoveFromEngine )
2009-12-25 16:28:58 +05:00
obj->Destroy();
2004-12-01 15:39:14 +05:00
}
}
}
catch( const SALOME::SALOME_Exception& e ) {
SalomeApp_Tools::QtCatchCorbaException( e );
2004-12-01 15:39:14 +05:00
}
isPreview = false;
if ( update )
updateViewer();
}
//================================================================
// Function : displayPreview
// Purpose : Method for displaying preview of resulting shape
//================================================================
void GEOMBase_Helper::displayPreview( GEOM::GEOM_Object_ptr object,
const bool append,
const bool activate,
2004-12-01 15:39:14 +05:00
const bool update,
const double lineWidth,
const int displayMode,
const int color )
2004-12-01 15:39:14 +05:00
{
// Set color for preview shape
getDisplayer()->SetColor( color == -1 ? Quantity_NOC_VIOLET : color );
2004-12-01 15:39:14 +05:00
// set width of displayed shape
getDisplayer()->SetWidth( lineWidth );
// set display mode of displayed shape
int aPrevDispMode = getDisplayer()->SetDisplayMode( displayMode );
2004-12-01 15:39:14 +05:00
// Disable activation of selection
getDisplayer()->SetToActivate( activate );
// Make a reference to GEOM_Object
CORBA::String_var objStr = SalomeApp_Application::orb()->object_to_string( object );
getDisplayer()->SetName( objStr.in() );
2004-12-01 15:39:14 +05:00
// Build prs
SALOME_Prs* aPrs = getDisplayer()->BuildPrs( object );
if ( aPrs == 0 || aPrs->IsNull() )
return;
// Display prs
displayPreview( aPrs, append, update );
getDisplayer()->UnsetName();
getDisplayer()->UnsetColor();
getDisplayer()->SetDisplayMode( aPrevDispMode );
2004-12-01 15:39:14 +05:00
// Enable activation of displayed objects
getDisplayer()->SetToActivate( true );
}
//================================================================
// Function : displayPreview
// Purpose : Method for displaying arbitrary preview objects (not limited to shapes)
//================================================================
void GEOMBase_Helper::displayPreview( const SALOME_Prs* prs,
const bool append,
const bool update )
{
if ( !append )
erasePreview( false );
// remember current view frame to make correct erase preview later
myViewWindow = getActiveView();
2004-12-01 15:39:14 +05:00
if ( myViewWindow == 0 )
2004-12-01 15:39:14 +05:00
return;
// Display prs
SUIT_ViewManager* aViewManager = myViewWindow->getViewManager();
if ( aViewManager->getType() == OCCViewer_Viewer::Type() ||
aViewManager->getType() == SVTK_Viewer::Type() )
{
SUIT_ViewModel* aViewModel = aViewManager->getViewModel();
SALOME_View* aView = dynamic_cast<SALOME_View*>(aViewModel);
if (aView)
2009-12-25 16:28:58 +05:00
aView->Display( prs );
}
2004-12-01 15:39:14 +05:00
// Add prs to the preview list
myPreview.push_back( (SALOME_Prs*)prs );
// Update viewer
if ( update )
getDisplayer()->UpdateViewer();
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : erasePreview
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
void GEOMBase_Helper::erasePreview( const bool update )
{
// check view frame where the preview was displayed
bool vfOK = checkViewWindow() && myViewWindow;
2004-12-01 15:39:14 +05:00
// Iterate through presentations and delete them
for ( PrsList::iterator anIter = myPreview.begin(); anIter != myPreview.end(); ++anIter ) {
if ( vfOK )
{
2009-12-25 16:28:58 +05:00
SUIT_ViewManager* aViewManager = myViewWindow->getViewManager();
if ( aViewManager->getType() == OCCViewer_Viewer::Type() ||
aViewManager->getType() == SVTK_Viewer::Type() )
{
SUIT_ViewModel* aViewModel = aViewManager->getViewModel();
SALOME_View* aView = dynamic_cast<SALOME_View*>(aViewModel);
if (aView)
aView->Erase( *anIter, true );
}
}
2004-12-01 15:39:14 +05:00
delete *anIter;
}
myPreview.clear();
// Update viewer
if ( update )
updateViewer();
}
//================================================================
// Function : localSelection
// Purpose : Activate selection of objects of a given type
// IMPORTANT : Works after localSelection( ... ) method call only
//================================================================
void GEOMBase_Helper::activate( const int theType )
{
if (!getStudy()) return;
_PTR(Study) aStudy = getStudy()->studyDS();
_PTR(SComponent) aGeom ( aStudy->FindComponent( "GEOM" ) );
if ( !aGeom )
2004-12-01 15:39:14 +05:00
return;
SALOME_ListIO aList;
_PTR(ChildIterator) anIter ( aStudy->NewChildIterator( aGeom ) );
2004-12-01 15:39:14 +05:00
for ( ; anIter->More(); anIter->Next() )
{
_PTR(SObject) aSO ( anIter->Value() );
if ( aSO )
2004-12-01 15:39:14 +05:00
{
_PTR(SObject) aRefSO;
2004-12-01 15:39:14 +05:00
if ( !aSO->ReferencedObject( aRefSO ) )
{
GEOM::GEOM_Object_var anObj = GEOM::GEOM_Object::_narrow
(GeometryGUI::ClientSObjectToObject(aSO));
2004-12-01 15:39:14 +05:00
if ( !anObj->_is_nil() && anObj->GetType() == theType )
aList.Append( new SALOME_InteractiveObject( aSO->GetID().c_str(), "GEOM", aSO->GetName().c_str()) );
2004-12-01 15:39:14 +05:00
}
}
}
getDisplayer()->LocalSelection( aList, 0 );
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : localSelection
// Purpose : Activate selection of subshapes in accordance with mode
// theMode is from TopAbs_ShapeEnum
//================================================================
void GEOMBase_Helper::localSelection( const ObjectList& theObjs, const int theMode )
{
SALOME_ListIO aListOfIO;
2004-12-01 15:39:14 +05:00
ObjectList::const_iterator anIter = theObjs.begin();
for ( ; anIter != theObjs.end(); ++anIter )
{
GEOM::GEOM_Object_ptr anObj = *anIter;
if ( anObj->_is_nil() )
continue;
2009-02-13 17:16:39 +05:00
std::string aEntry = getEntry( anObj );
2004-12-01 15:39:14 +05:00
if ( aEntry != "" )
aListOfIO.Append( new SALOME_InteractiveObject(
2009-02-13 17:16:39 +05:00
aEntry.c_str(), "GEOM", strdup( GEOMBase::GetName( anObj ).toLatin1().constData() ) ) );
2004-12-01 15:39:14 +05:00
}
getDisplayer()->LocalSelection( aListOfIO, theMode );
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : localSelection
// Purpose : Activate selection of subshapes in accordance with mode
// theMode is from TopAbs_ShapeEnum
//================================================================
void GEOMBase_Helper::localSelection( GEOM::GEOM_Object_ptr obj, const int mode )
{
// If object is null local selection for all objects is activated
if ( obj->_is_nil() ) {
getDisplayer()->LocalSelection( Handle(SALOME_InteractiveObject)(), mode );
2004-12-01 15:39:14 +05:00
return;
}
ObjectList objList;
objList.push_back( obj );
localSelection( objList, mode );
}
//================================================================
// Function : globalSelection
// Purpose : Activate selection of subshapes. Set selection filters
// in accordance with mode. theMode is from GEOMImpl_Types
//================================================================
void GEOMBase_Helper::globalSelection( const int theMode, const bool update )
{
getDisplayer()->GlobalSelection( theMode, update );
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : globalSelection
// Purpose : Activate selection of subshapes. Set selection filters
// in accordance with mode. theMode is from GEOMImpl_Types
//================================================================
void GEOMBase_Helper::globalSelection( const TColStd_MapOfInteger& theModes,
2009-12-25 16:28:58 +05:00
const bool update )
2004-12-01 15:39:14 +05:00
{
getDisplayer()->GlobalSelection( theModes, update );
2004-12-01 15:39:14 +05:00
}
2009-02-13 17:16:39 +05:00
//================================================================
// Function : globalSelection
// Purpose : Activate selection of subshapes. Set selection filters
// in accordance with mode. theMode is from GEOMImpl_Types
//================================================================
void GEOMBase_Helper::globalSelection( const TColStd_MapOfInteger& theModes,
const QList<int>& subShapes,
2009-12-25 16:28:58 +05:00
const bool update )
2009-02-13 17:16:39 +05:00
{
getDisplayer()->GlobalSelection( theModes, update, &subShapes );
}
2004-12-01 15:39:14 +05:00
//================================================================
// Function : addInStudy
// Purpose : Add object in study
//================================================================
void GEOMBase_Helper::addInStudy( GEOM::GEOM_Object_ptr theObj, const char* theName )
{
if ( !hasCommand() )
return;
_PTR(Study) aStudy = getStudy()->studyDS();
if ( !aStudy || theObj->_is_nil() )
2004-12-01 15:39:14 +05:00
return;
2009-02-13 17:16:39 +05:00
SALOMEDS::Study_var aStudyDS = GeometryGUI::ClientStudyToStudy(aStudy);
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_ptr aFatherObj = getFather( theObj );
2009-02-13 17:16:39 +05:00
SALOMEDS::SObject_var aSO =
getGeomEngine()->AddInStudy(aStudyDS, theObj, theName, aFatherObj);
// Each dialog is responsible for this method implementation,
// default implementation does nothing
restoreSubShapes(aStudyDS, aSO);
aSO->Destroy();
2009-02-13 17:16:39 +05:00
}
//================================================================
// Function : restoreSubShapes
// Purpose : restore tree of argument's sub-shapes under the resulting shape
//================================================================
void GEOMBase_Helper::restoreSubShapes (SALOMEDS::Study_ptr /*theStudy*/,
SALOMEDS::SObject_ptr /*theSObject*/)
{
// do nothing by default
// example of implementation in particular dialog:
// GEOM::ListOfGO anArgs;
// anArgs.length(0); // empty list means that all arguments should be restored
// getGeomEngine()->RestoreSubShapesSO(theStudy, theSObject, anArgs,
// /*theFindMethod=*/GEOM::FSM_GetInPlace,
// /*theInheritFirstArg=*/false);
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : updateObjBrowser
// Purpose : Update object browser
//================================================================
void GEOMBase_Helper::updateObjBrowser() const
{
SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>(SUIT_Session::session()->activeApplication());
if (app) {
CAM_Module* module = app->module( "Geometry" );
SalomeApp_Module* appMod = dynamic_cast<SalomeApp_Module*>( module );
if ( appMod ) {
appMod->updateObjBrowser( true );
}
}
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : updateViewer
// Purpose : Update active 3D view
//================================================================
void GEOMBase_Helper::updateViewer()
{
getDisplayer()->UpdateViewer();
}
//================================================================
// Function : getStudyId
// Purpose : Get study Id
//================================================================
int GEOMBase_Helper::getStudyId() const
{
int anId = -1;
if ( getStudy() )
anId = getStudy()->id();
2004-12-01 15:39:14 +05:00
return anId;
}
//================================================================
// Function : getStudy
// Purpose : Returns the active study. It is recommended to use
2004-12-01 15:39:14 +05:00
// this method instead of direct desktop->getActiveStudy() calls
//================================================================
SalomeApp_Study* GEOMBase_Helper::getStudy() const
2004-12-01 15:39:14 +05:00
{
SUIT_Desktop* aDesktop = getDesktop();
if (!aDesktop)
return 0;
2009-02-13 17:16:39 +05:00
QList<SUIT_Application*> anAppList = SUIT_Session::session()->applications();
SUIT_Application* anApp = 0;
2009-02-13 17:16:39 +05:00
QListIterator<SUIT_Application*> it( anAppList );
while ( it.hasNext() )
{
2009-02-13 17:16:39 +05:00
anApp = it.next();
if ( anApp && anApp->desktop() == aDesktop )
2009-12-25 16:28:58 +05:00
break;
}
return dynamic_cast<SalomeApp_Study*>(anApp->activeStudy());
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : getEntry
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
char* GEOMBase_Helper::getEntry( GEOM::GEOM_Object_ptr object ) const
{
SalomeApp_Study* study = getStudy();
2004-12-01 15:39:14 +05:00
if ( study ) {
char * objIOR = GEOMBase::GetIORFromObject( object );
2009-02-13 17:16:39 +05:00
std::string IOR( objIOR );
free( objIOR );
2004-12-01 15:39:14 +05:00
if ( IOR != "" ) {
_PTR(SObject) SO ( study->studyDS()->FindObjectIOR( IOR ) );
if ( SO ) {
2009-12-25 16:28:58 +05:00
return (char*) TCollection_AsciiString((char*)SO->GetID().c_str()).ToCString();
2004-12-01 15:39:14 +05:00
}
}
}
2009-07-30 22:11:50 +06:00
return (char*)"";
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : getDisplayer
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
GEOM_Displayer* GEOMBase_Helper::getDisplayer()
{
if ( !myDisplayer )
myDisplayer = new GEOM_Displayer( getStudy() );
2004-12-01 15:39:14 +05:00
return myDisplayer;
}
//================================================================
// Function : clearShapeBuffer
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
void GEOMBase_Helper::clearShapeBuffer( GEOM::GEOM_Object_ptr theObj )
{
if ( CORBA::is_nil( theObj ) )
return;
CORBA::String_var IOR = SalomeApp_Application::orb()->object_to_string( theObj );
TCollection_AsciiString asciiIOR( (char *)IOR.in() );
GEOM_Client().RemoveShapeFromBuffer( asciiIOR );
2004-12-01 15:39:14 +05:00
if ( !getStudy() || !getStudy()->studyDS() )
2004-12-01 15:39:14 +05:00
return;
_PTR(Study) aStudy = getStudy()->studyDS();
2009-02-13 17:16:39 +05:00
_PTR(SObject) aSObj ( aStudy->FindObjectIOR( std::string( IOR ) ) );
if ( !aSObj )
2004-12-01 15:39:14 +05:00
return;
_PTR(ChildIterator) anIt ( aStudy->NewChildIterator( aSObj ) );
2004-12-01 15:39:14 +05:00
for ( anIt->InitEx( true ); anIt->More(); anIt->Next() ) {
_PTR(GenericAttribute) anAttr;
2004-12-01 15:39:14 +05:00
if ( anIt->Value()->FindAttribute(anAttr, "AttributeIOR") ) {
_PTR(AttributeIOR) anIOR ( anAttr );
TCollection_AsciiString asciiIOR( (char*)anIOR->Value().c_str() );
GEOM_Client().RemoveShapeFromBuffer( asciiIOR );
2004-12-01 15:39:14 +05:00
}
}
}
//================================================================
// Function : openCommand
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
bool GEOMBase_Helper::openCommand()
2004-12-01 15:39:14 +05:00
{
bool res = false;
if ( !getStudy() || hasCommand() )
return res;
2004-12-01 15:39:14 +05:00
GEOM::GEOM_IOperations_var anOp = GEOM::GEOM_IOperations::_narrow( getOperation() );
if ( !anOp->_is_nil() ) {
myCommand = new GEOM_Operation( SUIT_Session::session()->activeApplication(), anOp.in() );
2004-12-01 15:39:14 +05:00
myCommand->start();
res = true;
}
2004-12-01 15:39:14 +05:00
return res;
}
//================================================================
// Function : abortCommand
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
bool GEOMBase_Helper::abortCommand()
{
if ( !hasCommand() )
return false;
myCommand->abort();
delete myCommand; // I don't know where to delete this object here ?
2004-12-01 15:39:14 +05:00
myCommand = 0;
return true;
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : commitCommand
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
bool GEOMBase_Helper::commitCommand( const char* )
{
if ( !hasCommand() )
return false;
myCommand->commit();
delete myCommand; // I don't know where to delete this object here ?
2004-12-01 15:39:14 +05:00
myCommand = 0;
return true;
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : hasCommand
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
bool GEOMBase_Helper::hasCommand() const
{
return (bool)myCommand;
}
//================================================================
// Function : getOperation
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
GEOM::GEOM_IOperations_ptr GEOMBase_Helper::getOperation()
{
if ( myOperation->_is_nil() )
myOperation = createOperation();
return myOperation;
}
//================================================================
// Function : checkViewWindow
// Purpose :
2004-12-01 15:39:14 +05:00
//================================================================
bool GEOMBase_Helper::checkViewWindow()
2004-12-01 15:39:14 +05:00
{
if ( myViewWindow ){
2009-02-13 17:16:39 +05:00
QList<SUIT_ViewWindow*> aViewWindowsList = SUIT_Session::session()->activeApplication()->desktop()->windows();
QListIterator<SUIT_ViewWindow*> it( aViewWindowsList );
while ( it.hasNext() )
{
2009-12-25 16:28:58 +05:00
if ( myViewWindow == it.next() )
return true;
2004-12-01 15:39:14 +05:00
}
}
myViewWindow = 0;
2004-12-01 15:39:14 +05:00
return false;
}
//================================================================
// Function : onAccept
// Purpose : This method should be called from dialog's slots onOk() and onApply()
// It perfroms user input validation, then it
2004-12-01 15:39:14 +05:00
// performs a proper operation and manages transactions, etc.
//================================================================
bool GEOMBase_Helper::onAccept( const bool publish, const bool useTransaction )
{
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( SUIT_Session::session()->activeApplication()->activeStudy() );
if ( !appStudy ) return false;
_PTR(Study) aStudy = appStudy->studyDS();
bool aLocked = (_PTR(AttributeStudyProperties) (aStudy->GetProperties()))->IsLocked();
2004-12-01 15:39:14 +05:00
if ( aLocked ) {
MESSAGE("GEOMBase_Helper::onAccept - ActiveStudy is locked");
2009-02-13 17:16:39 +05:00
SUIT_MessageBox::warning ( (QWidget*)SUIT_Session::session()->activeApplication()->desktop(),
2009-12-25 16:28:58 +05:00
QObject::tr("WRN_WARNING"),
QObject::tr("WRN_STUDY_LOCKED"),
QObject::tr("BUT_OK") );
2004-12-01 15:39:14 +05:00
return false;
}
QString msg;
if ( !isValid( msg ) ) {
showError( msg );
return false;
}
erasePreview( false );
bool result = false;
2004-12-01 15:39:14 +05:00
try {
if ( ( !publish && !useTransaction ) || openCommand() ) {
SUIT_OverrideCursor wc;
SUIT_Session::session()->activeApplication()->putInfo( "" );
2004-12-01 15:39:14 +05:00
ObjectList objects;
if ( !execute( objects ) || !getOperation()->IsDone() ) {
2009-12-25 16:28:58 +05:00
wc.suspend();
abortCommand();
showError();
2004-12-01 15:39:14 +05:00
}
else {
2009-12-25 16:28:58 +05:00
addSubshapesToStudy(); // add Subshapes if local selection
const int nbObjs = objects.size();
int aNumber = 1;
2009-12-25 16:28:58 +05:00
for ( ObjectList::iterator it = objects.begin(); it != objects.end(); ++it ) {
GEOM::GEOM_Object_var obj=*it;
if ( publish ) {
QString aName = getNewObjectName();
if ( nbObjs > 1 ) {
if (aName.isEmpty())
aName = getPrefix(obj);
if (nbObjs <= 30) {
// Try to find a unique name
aName = GEOMBase::GetDefaultName(aName, extractPrefix());
} else {
// Don't check name uniqueness in case of numerous objects
aName = aName + "_" + QString::number(aNumber++);
}
2009-12-25 16:28:58 +05:00
} else {
// PAL6521: use a prefix, if some dialog box doesn't reimplement getNewObjectName()
if ( aName.isEmpty() )
aName = GEOMBase::GetDefaultName( getPrefix( obj ) );
}
addInStudy( obj, aName.toLatin1().constData() );
// updateView=false
2009-12-25 16:28:58 +05:00
display( obj, false );
2009-12-08 17:05:55 +05:00
#ifdef WITHGENERICOBJ
2009-12-25 16:28:58 +05:00
// obj has been published in study. Its refcount has been incremented.
// It is safe to decrement its refcount
// so that it will be destroyed when the entry in study will be removed
obj->Destroy();
2009-12-08 17:05:55 +05:00
#endif
2009-12-25 16:28:58 +05:00
}
else {
// asv : fix of PAL6454. If publish==false, then the original shape
// was modified, and need to be re-cached in GEOM_Client before redisplay
2009-12-25 16:28:58 +05:00
clearShapeBuffer( obj );
// withChildren=true, updateView=false
2009-12-25 16:28:58 +05:00
redisplay( obj, true, false );
2004-12-01 15:39:14 +05:00
}
2009-12-25 16:28:58 +05:00
}
if ( nbObjs ) {
commitCommand();
updateObjBrowser();
SUIT_Session::session()->activeApplication()->putInfo( QObject::tr("GEOM_PRP_DONE") );
result = true;
2009-12-25 16:28:58 +05:00
}
else
abortCommand();
2004-12-01 15:39:14 +05:00
}
}
}
catch( const SALOME::SALOME_Exception& e ) {
SalomeApp_Tools::QtCatchCorbaException( e );
2004-12-01 15:39:14 +05:00
abortCommand();
}
updateViewer();
return result;
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : showError
// Purpose : Shows a message box with infromation about an error taken from getOperation()->GetErrorCode()
//================================================================
void GEOMBase_Helper::showError()
{
QString msg;
if ( !getOperation()->_is_nil() )
msg = QObject::tr( getOperation()->GetErrorCode() );
if ( msg.isEmpty() )
msg = QObject::tr( "GEOM_PRP_ABORT" );
2009-02-13 17:16:39 +05:00
SUIT_MessageBox::critical( SUIT_Session::session()->activeApplication()->desktop(),
2009-12-25 16:28:58 +05:00
QObject::tr( "GEOM_ERROR_STATUS" ),
msg,
QObject::tr( "BUT_OK" ) );
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : showError
// Purpose : Shows a error message followed by <msg>
//================================================================
void GEOMBase_Helper::showError( const QString& msg )
{
QString str( QObject::tr( "GEOM_INCORRECT_INPUT" ) );
if ( !msg.isEmpty() )
str += "\n" + msg;
2009-02-13 17:16:39 +05:00
SUIT_MessageBox::critical(SUIT_Session::session()->activeApplication()->desktop(), QObject::tr( "GEOM_ERROR" ), str, QObject::tr( "BUT_OK" ) );
2004-12-01 15:39:14 +05:00
}
//////////////////////////////////////////////////////////////////
// Virtual methods to be redefined in dialogs
//////////////////////////////////////////////////////////////////
//================================================================
// Function : createOperation
// Purpose : Redefine this method to return proper IOperation reference
//================================================================
GEOM::GEOM_IOperations_ptr GEOMBase_Helper::createOperation()
{
GEOM::GEOM_IOperations_var aNilOp;
return aNilOp._retn();
}
//================================================================
// Function : isValid
// Purpose : Called by onAccept(). Redefine this method to check validity of user input in dialog boxes.
//================================================================
bool GEOMBase_Helper::isValid( QString& )
{
return true;
}
//================================================================
// Function : execute
// Purpose : This method is called by onAccept().
// It should perform the required operation and put all new or modified objects into
2004-12-01 15:39:14 +05:00
// <objects> argument.Should return <false> if some error occurs during its execution.
//================================================================
bool GEOMBase_Helper::execute( ObjectList& objects )
{
return false;
}
//================================================================
// Function : getFather
// Purpose : This method is called by addInStudy(). It should return a father object
// for <theObj> or a nil reference if <theObj> should be published
// as a top-level object.
//================================================================
GEOM::GEOM_Object_ptr GEOMBase_Helper::getFather( GEOM::GEOM_Object_ptr theObj )
{
return GEOM::GEOM_Object::_nil();
}
//================================================================
// Function : getNewObjectName
// Purpose : Redefine this method to return proper name for a new object
//================================================================
2009-02-13 17:16:39 +05:00
QString GEOMBase_Helper::getNewObjectName() const
2004-12-01 15:39:14 +05:00
{
2009-02-13 17:16:39 +05:00
return QString::null;
2004-12-01 15:39:14 +05:00
}
//================================================================
// Function : extractPrefix
// Purpose : Redefine this method to return \c true if necessary
// to extract prefix when generating new name for the
// object(s) being created
//================================================================
bool GEOMBase_Helper::extractPrefix() const
{
return false;
}
2004-12-01 15:39:14 +05:00
//================================================================
// Function : getPrefix
// Purpose : Get prefix for name of created object
//================================================================
QString GEOMBase_Helper::getPrefix( GEOM::GEOM_Object_ptr theObj ) const
{
if ( !myPrefix.isEmpty() || theObj->_is_nil() )
return myPrefix;
//TopoDS_Shape aShape;
//if ( !GEOMBase::GetShape( theObj, aShape ) )
// return "";
//
//long aType = aShape.ShapeType();
GEOM::shape_type aType = theObj->GetShapeType();
2004-12-01 15:39:14 +05:00
switch ( aType )
{
case GEOM::VERTEX : return QObject::tr( "GEOM_VERTEX" );
case GEOM::EDGE : return QObject::tr( "GEOM_EDGE" );
case GEOM::WIRE : return QObject::tr( "GEOM_WIRE" );
case GEOM::FACE : return QObject::tr( "GEOM_FACE" );
case GEOM::SHELL : return QObject::tr( "GEOM_SHELL" );
case GEOM::SOLID : return QObject::tr( "GEOM_SOLID" );
case GEOM::COMPSOLID: return QObject::tr( "GEOM_COMPOUNDSOLID" );
case GEOM::COMPOUND : return QObject::tr( "GEOM_COMPOUND" );
2004-12-01 15:39:14 +05:00
default : return "";
}
}
//================================================================
// Function : getDesktop
2009-02-13 17:16:39 +05:00
// Purpose : Returns myDesktop field. Initialized in constructor,
// usually as dynamic_cast<SUIT_Desktop*>(parentWidget())
//================================================================
SUIT_Desktop* GEOMBase_Helper::getDesktop() const
{
return myDesktop;
}
//================================================================
// Function : selectObjects
// Purpose : Selects list of objects
//================================================================
bool GEOMBase_Helper::selectObjects( ObjectList& objects )
{
SUIT_DataOwnerPtrList aList;
ObjectList::iterator anIter;
for ( anIter = objects.begin(); anIter != objects.end(); ++anIter )
{
2009-02-13 17:16:39 +05:00
std::string entry = getEntry( *anIter );
QString aEntry( entry.c_str() );
LightApp_DataOwner* anOwher = new LightApp_DataOwner( aEntry );
aList.append( anOwher );
}
SUIT_Session* session = SUIT_Session::session();
SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
if ( !app )
return false;
LightApp_SelectionMgr* aMgr = app->selectionMgr();
if ( !aMgr )
return false;
aMgr->setSelected( aList, false );
return true;
}
//================================================================
// Function : findObjectInFather
// Purpose : It should return an object if its founded in study or
// return Null object if the object is not founded
//================================================================
2009-02-13 17:16:39 +05:00
GEOM::GEOM_Object_ptr GEOMBase_Helper::findObjectInFather (GEOM::GEOM_Object_ptr theFather,
const QString& theName)
{
SalomeApp_Application* app =
dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
_PTR(Study) aDStudy = appStudy->studyDS();
2009-02-13 17:16:39 +05:00
std::string IOR = GEOMBase::GetIORFromObject( theFather );
_PTR(SObject) SObj ( aDStudy->FindObjectIOR( IOR ) );
bool inStudy = false;
GEOM::GEOM_Object_var aReturnObject;
for (_PTR(ChildIterator) iit (aDStudy->NewChildIterator( SObj )); iit->More() && !inStudy; iit->Next()) {
_PTR(SObject) child (iit->Value());
2009-02-13 17:16:39 +05:00
QString aChildName = child->GetName().c_str();
if (aChildName == theName) {
inStudy = true;
CORBA::Object_var corbaObj = GeometryGUI::ClientSObjectToObject(iit->Value());
aReturnObject = GEOM::GEOM_Object::_narrow( corbaObj );
}
}
if (inStudy)
return aReturnObject._retn();
return GEOM::GEOM_Object::_nil();
}
//================================================================
// Function : addSubshapesToStudy
// Purpose : Virtual method to add subshapes if needs
//================================================================
void GEOMBase_Helper::addSubshapesToStudy()
{
//Impemented in Dialogs, called from Accept method
}
//================================================================
// Function : addSubshapesToFather
// Purpose : Method to add Father Subshapes to Study if it`s not exist
//================================================================
void GEOMBase_Helper::addSubshapesToFather( QMap<QString, GEOM::GEOM_Object_var>& theMap )
{
//GetStudyDS
SalomeApp_Application* app =
dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
_PTR(Study) aDStudy = appStudy->studyDS();
GEOM::GEOM_IGroupOperations_var anOp = getGeomEngine()->GetIGroupOperations( getStudyId() );
2009-12-08 17:05:55 +05:00
for( QMap<QString, GEOM::GEOM_Object_var>::Iterator it = theMap.begin(); it != theMap.end(); it++ ) {
if ( !anOp->_is_nil() ) {
GEOM::GEOM_Object_var aFatherObj = anOp->GetMainShape( it.value() );
if ( !aFatherObj->_is_nil() ) {
std::string aFatherEntry = getEntry( aFatherObj );
2009-12-08 17:05:55 +05:00
if ( aFatherEntry != "") { // additional checking that object is valid 0020598 EDF 1191
GEOM::GEOM_Object_var aFindedObject = findObjectInFather(aFatherObj, it.key().toLatin1().data() );
//Add Object to study if its not exist
if ( aFindedObject == GEOM::GEOM_Object::_nil() )
GeometryGUI::GetGeomGen()->AddInStudy(GeometryGUI::ClientStudyToStudy(aDStudy),
it.value(), it.key().toLatin1().data(), aFatherObj );
}
}
2009-12-08 17:05:55 +05:00
} else {
//cout << " anOperations is NULL! " << endl;
}
2009-12-08 17:05:55 +05:00
}
}