2004-12-01 15:39:14 +05:00
|
|
|
// GEOM GEOMGUI : GUI for Geometry component
|
|
|
|
//
|
|
|
|
// Copyright (C) 2004 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
2005-08-18 12:15:31 +06:00
|
|
|
// 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
|
|
|
|
//
|
|
|
|
// See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
|
2004-12-01 15:39:14 +05:00
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// File : GEOMBase_Helper.cxx
|
|
|
|
// Author : Sergey ANIKIN
|
|
|
|
// Module : GEOM
|
|
|
|
// $Header$
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
#include <SUIT_ViewModel.h>
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
#include "GEOMBase_Helper.h"
|
|
|
|
#include "GEOMBase.h"
|
|
|
|
#include "GEOM_Operation.h"
|
|
|
|
#include "GeometryGUI.h"
|
|
|
|
#include "GEOM_Displayer.h"
|
|
|
|
#include "GEOMImpl_Types.hxx"
|
2005-06-02 13:17:09 +06:00
|
|
|
|
|
|
|
#include <SUIT_Session.h>
|
|
|
|
#include <SUIT_ViewWindow.h>
|
|
|
|
#include <SUIT_MessageBox.h>
|
|
|
|
#include <SUIT_OverrideCursor.h>
|
|
|
|
|
|
|
|
#include <SalomeApp_Module.h>
|
|
|
|
#include <SalomeApp_Application.h>
|
|
|
|
#include <SalomeApp_Study.h>
|
|
|
|
#include <SalomeApp_SelectionMgr.h>
|
|
|
|
#include <SalomeApp_Tools.h>
|
|
|
|
#include <SalomeApp_DataModel.h>
|
|
|
|
#include <SalomeApp_Module.h>
|
|
|
|
|
|
|
|
#include <OCCViewer_ViewModel.h>
|
2005-10-05 12:28:23 +06:00
|
|
|
#include <SVTK_ViewModel.h>
|
2005-06-02 13:17:09 +06:00
|
|
|
|
|
|
|
#include <OB_Browser.h>
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
#include <TColStd_MapOfInteger.hxx>
|
|
|
|
#include <TCollection_AsciiString.hxx>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
#include <SALOMEDSClient.hxx>
|
|
|
|
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
|
|
|
// Function : getActiveView
|
2005-06-02 13:17:09 +06:00
|
|
|
// Purpose : Get active view window, returns 0 if no open study frame
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
static SUIT_ViewWindow* getActiveView()
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_Study* activeStudy = SUIT_Session::session()->activeApplication()->activeStudy();
|
|
|
|
if ( activeStudy )
|
|
|
|
return SUIT_Session::session()->activeApplication()->desktop()->activeWindow();
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : getGeomEngine
|
|
|
|
// Purpose : Static method
|
|
|
|
//================================================================
|
|
|
|
GEOM::GEOM_Gen_ptr GEOMBase_Helper::getGeomEngine()
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
return GeometryGUI::GetGeomGen();
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : GEOMBase_Helper
|
|
|
|
// Purpose :
|
|
|
|
//================================================================
|
2005-08-18 12:15:31 +06:00
|
|
|
GEOMBase_Helper::GEOMBase_Helper( SUIT_Desktop* desktop )
|
2005-08-02 18:45:47 +06:00
|
|
|
: myDesktop( desktop ), myViewWindow( 0 ), myDisplayer( 0 ), myCommand( 0 ), isPreview( false )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : ~GEOMBase_Helper
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
|
|
|
GEOMBase_Helper::~GEOMBase_Helper()
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
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();
|
|
|
|
|
|
|
|
globalSelection( GEOM_ALLOBJECTS, true );
|
|
|
|
|
|
|
|
delete myDisplayer;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : display
|
2005-08-18 12:15:31 +06:00
|
|
|
// 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
|
2005-08-18 12:15:31 +06:00
|
|
|
// 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
|
2005-08-18 12:15:31 +06:00
|
|
|
// 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() ) {
|
|
|
|
string entry = getEntry( object );
|
|
|
|
getDisplayer()->Erase( new SALOME_InteractiveObject(
|
|
|
|
entry.c_str(), "GEOM", strdup( GEOMBase::GetName( object ) ) ), true, updateView );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : redisplay
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
2005-08-18 12:15:31 +06:00
|
|
|
void GEOMBase_Helper::redisplay( const ObjectList& objList,
|
2004-12-01 15:39:14 +05:00
|
|
|
const bool withChildren,
|
|
|
|
const bool updateView )
|
|
|
|
{
|
|
|
|
ObjectList::const_iterator it = objList.begin();
|
|
|
|
for ( ; it != objList.end(); it++ ) {
|
|
|
|
redisplay( *it, withChildren, false );
|
|
|
|
}
|
|
|
|
if ( !objList.empty() && updateView )
|
|
|
|
getDisplayer()->UpdateViewer();
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : redisplay
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
2005-08-18 12:15:31 +06:00
|
|
|
void GEOMBase_Helper::redisplay( GEOM::GEOM_Object_ptr object,
|
2004-12-01 15:39:14 +05:00
|
|
|
const bool withChildren,
|
|
|
|
const bool updateView )
|
|
|
|
{
|
|
|
|
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();
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
// Enable activisation of selection
|
|
|
|
getDisplayer()->SetToActivate( true );
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
string entry = getEntry( object );
|
2005-08-18 12:15:31 +06:00
|
|
|
getDisplayer()->Redisplay(new SALOME_InteractiveObject
|
|
|
|
(entry.c_str(), "GEOM", strdup(GEOMBase::GetName(object))), false);
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( withChildren ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
SalomeApp_Study* aDoc = getStudy();
|
|
|
|
if ( aDoc && aDoc->studyDS() ) {
|
|
|
|
_PTR(Study) aStudy = aDoc->studyDS();
|
2005-08-18 12:15:31 +06:00
|
|
|
_PTR(SObject) aSObj (aStudy->FindObjectIOR(SalomeApp_Application::orb()->object_to_string(object)));
|
2005-06-02 13:17:09 +06:00
|
|
|
if ( aSObj ) {
|
|
|
|
_PTR(ChildIterator) anIt ( aStudy->NewChildIterator( aSObj ) );
|
2004-12-01 15:39:14 +05:00
|
|
|
for ( anIt->InitEx( true ); anIt->More(); anIt->Next() ) {
|
2005-08-18 12:15:31 +06:00
|
|
|
GEOM::GEOM_Object_var aChild = GEOM::GEOM_Object::_narrow
|
|
|
|
(GeometryGUI::ClientSObjectToObject(anIt->Value()));
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( !CORBA::is_nil( aChild ) ) {
|
|
|
|
if ( !aChild->_is_nil() ) {
|
|
|
|
string entry = getEntry( aChild );
|
|
|
|
getDisplayer()->Redisplay( new SALOME_InteractiveObject(
|
|
|
|
entry.c_str(), "GEOM", strdup( GEOMBase::GetName( aChild ) ) ), false );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-08-18 12:15:31 +06:00
|
|
|
}
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
}
|
2005-08-18 12:15:31 +06: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 )
|
|
|
|
{
|
2005-08-18 12:15:31 +06:00
|
|
|
isPreview = true;
|
2004-12-01 15:39:14 +05:00
|
|
|
QString msg;
|
|
|
|
if ( !isValid( msg ) )
|
|
|
|
{
|
|
|
|
erasePreview( update );
|
2005-08-18 12:15:31 +06:00
|
|
|
isPreview = false;
|
2004-12-01 15:39:14 +05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
erasePreview( false );
|
|
|
|
|
|
|
|
try {
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_OverrideCursor wc;
|
2004-12-01 15:39:14 +05:00
|
|
|
ObjectList objects;
|
|
|
|
if ( !execute( objects ) || !getOperation()->IsDone() ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
wc.suspend();
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
for ( ObjectList::iterator it = objects.begin(); it != objects.end(); ++it )
|
|
|
|
{
|
|
|
|
displayPreview( *it, true, activate, false, lineWidth );
|
|
|
|
if ( toRemoveFromEngine )
|
|
|
|
getGeomEngine()->RemoveObject( *it );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( const SALOME::SALOME_Exception& e ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
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,
|
2005-08-18 12:15:31 +06:00
|
|
|
const bool activate,
|
2004-12-01 15:39:14 +05:00
|
|
|
const bool update,
|
|
|
|
const double lineWidth )
|
|
|
|
{
|
|
|
|
// Set color for preview shape
|
|
|
|
getDisplayer()->SetColor( Quantity_NOC_VIOLET );
|
|
|
|
|
|
|
|
// set width of displayed shape
|
|
|
|
getDisplayer()->SetWidth( lineWidth );
|
|
|
|
|
|
|
|
// Disable activation of selection
|
|
|
|
getDisplayer()->SetToActivate( activate );
|
|
|
|
|
|
|
|
// Make a reference to GEOM_Object
|
2005-06-02 13:17:09 +06:00
|
|
|
getDisplayer()->SetName( SalomeApp_Application::orb()->object_to_string( object ) );
|
2005-08-18 12:15:31 +06:00
|
|
|
|
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();
|
|
|
|
|
|
|
|
// 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
|
2005-06-02 13:17:09 +06:00
|
|
|
myViewWindow = getActiveView();
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
if ( myViewWindow == 0 )
|
2004-12-01 15:39:14 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Display prs
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_ViewManager* aViewManager = myViewWindow->getViewManager();
|
|
|
|
if ( aViewManager->getType() == OCCViewer_Viewer::Type() ||
|
2005-10-05 12:28:23 +06:00
|
|
|
aViewManager->getType() == SVTK_Viewer::Type() )
|
2005-06-02 13:17:09 +06:00
|
|
|
{
|
|
|
|
SUIT_ViewModel* aViewModel = aViewManager->getViewModel();
|
|
|
|
SALOME_View* aView = dynamic_cast<SALOME_View*>(aViewModel);
|
|
|
|
if (aView)
|
|
|
|
aView->Display( prs );
|
2005-08-18 12:15:31 +06:00
|
|
|
}
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
// Add prs to the preview list
|
|
|
|
myPreview.push_back( (SALOME_Prs*)prs );
|
|
|
|
|
|
|
|
// Update viewer
|
|
|
|
if ( update )
|
2005-06-02 13:17:09 +06:00
|
|
|
getDisplayer()->UpdateViewer();
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : erasePreview
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
|
|
|
void GEOMBase_Helper::erasePreview( const bool update )
|
|
|
|
{
|
|
|
|
// check view frame where the preview was displayed
|
2005-06-02 13:17:09 +06:00
|
|
|
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 )
|
2005-06-02 13:17:09 +06:00
|
|
|
{
|
|
|
|
SUIT_ViewManager* aViewManager = myViewWindow->getViewManager();
|
|
|
|
if ( aViewManager->getType() == OCCViewer_Viewer::Type() ||
|
2005-10-05 12:28:23 +06:00
|
|
|
aViewManager->getType() == SVTK_Viewer::Type() )
|
2005-06-02 13:17:09 +06:00
|
|
|
{
|
|
|
|
SUIT_ViewModel* aViewModel = aViewManager->getViewModel();
|
|
|
|
SALOME_View* aView = dynamic_cast<SALOME_View*>(aViewModel);
|
|
|
|
if (aView)
|
|
|
|
aView->Erase( *anIter, true );
|
2005-08-18 12:15:31 +06:00
|
|
|
}
|
2005-06-02 13:17:09 +06:00
|
|
|
}
|
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 )
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
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;
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(ChildIterator) anIter ( aStudy->NewChildIterator( aGeom ) );
|
2004-12-01 15:39:14 +05:00
|
|
|
for ( ; anIter->More(); anIter->Next() )
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(SObject) aSO ( anIter->Value() );
|
|
|
|
if ( aSO )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(SObject) aRefSO;
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( !aSO->ReferencedObject( aRefSO ) )
|
|
|
|
{
|
2005-08-18 12:15:31 +06:00
|
|
|
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 )
|
2005-06-02 13:17:09 +06:00
|
|
|
aList.Append( new SALOME_InteractiveObject( aSO->GetID().c_str(), "GEOM", aSO->GetName().c_str()) );
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-02 13:17:09 +06: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;
|
2005-08-18 12:15:31 +06:00
|
|
|
|
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;
|
|
|
|
string aEntry = getEntry( anObj );
|
|
|
|
if ( aEntry != "" )
|
|
|
|
aListOfIO.Append( new SALOME_InteractiveObject(
|
|
|
|
aEntry.c_str(), "GEOM", strdup( GEOMBase::GetName( anObj ) ) ) );
|
|
|
|
}
|
|
|
|
|
2005-06-02 13:17:09 +06: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() ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
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 )
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
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,
|
|
|
|
const bool update )
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
getDisplayer()->GlobalSelection( theModes, update );
|
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;
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(Study) aStudy = getStudy()->studyDS();
|
|
|
|
if ( !aStudy || theObj->_is_nil() )
|
2004-12-01 15:39:14 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
GEOM::GEOM_Object_ptr aFatherObj = getFather( theObj );
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
getGeomEngine()->AddInStudy(GeometryGUI::ClientStudyToStudy(aStudy),
|
|
|
|
theObj, theName, aFatherObj);
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : updateObjBrowser
|
|
|
|
// Purpose : Update object browser
|
|
|
|
//================================================================
|
|
|
|
void GEOMBase_Helper::updateObjBrowser() const
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
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() )
|
2005-06-02 13:17:09 +06:00
|
|
|
anId = getStudy()->id();
|
2004-12-01 15:39:14 +05:00
|
|
|
return anId;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : getStudy
|
2005-08-18 12:15:31 +06:00
|
|
|
// 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
|
|
|
|
//================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
SalomeApp_Study* GEOMBase_Helper::getStudy() const
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_Desktop* aDesktop = getDesktop();
|
|
|
|
if (!aDesktop)
|
|
|
|
return 0;
|
2005-08-18 12:15:31 +06:00
|
|
|
|
|
|
|
QPtrList<SUIT_Application> anAppList = SUIT_Session::session()->applications();
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_Application* anApp = 0;
|
|
|
|
for ( QPtrListIterator<SUIT_Application> it( anAppList ); it.current() ; ++it )
|
|
|
|
{
|
|
|
|
anApp = it.current();
|
2005-08-18 12:15:31 +06:00
|
|
|
if ( anApp->desktop() == aDesktop )
|
2005-06-02 13:17:09 +06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dynamic_cast<SalomeApp_Study*>(anApp->activeStudy());
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : getEntry
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
|
|
|
char* GEOMBase_Helper::getEntry( GEOM::GEOM_Object_ptr object ) const
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
SalomeApp_Study* study = getStudy();
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( study ) {
|
|
|
|
string IOR = GEOMBase::GetIORFromObject( object);
|
|
|
|
if ( IOR != "" ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(SObject) SO ( study->studyDS()->FindObjectIOR( IOR ) );
|
|
|
|
if ( SO ) {
|
|
|
|
return TCollection_AsciiString((char*)SO->GetID().c_str()).ToCString();
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : getDisplayer
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
|
|
|
GEOM_Displayer* GEOMBase_Helper::getDisplayer()
|
|
|
|
{
|
|
|
|
if ( !myDisplayer )
|
2005-06-02 13:17:09 +06:00
|
|
|
myDisplayer = new GEOM_Displayer( getStudy() );
|
2004-12-01 15:39:14 +05:00
|
|
|
return myDisplayer;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : clearShapeBuffer
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
|
|
|
void GEOMBase_Helper::clearShapeBuffer( GEOM::GEOM_Object_ptr theObj )
|
|
|
|
{
|
|
|
|
if ( CORBA::is_nil( theObj ) )
|
|
|
|
return;
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
string IOR = SalomeApp_Application::orb()->object_to_string( theObj );
|
2004-12-01 15:39:14 +05:00
|
|
|
TCollection_AsciiString asciiIOR( strdup( IOR.c_str() ) );
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOM_Client().RemoveShapeFromBuffer( asciiIOR );
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
if ( !getStudy() || !getStudy()->studyDS() )
|
2004-12-01 15:39:14 +05:00
|
|
|
return;
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(Study) aStudy = getStudy()->studyDS();
|
|
|
|
_PTR(SObject) aSObj ( aStudy->FindObjectIOR( IOR ) );
|
|
|
|
if ( !aSObj )
|
2004-12-01 15:39:14 +05:00
|
|
|
return;
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(ChildIterator) anIt ( aStudy->NewChildIterator( aSObj ) );
|
2004-12-01 15:39:14 +05:00
|
|
|
for ( anIt->InitEx( true ); anIt->More(); anIt->Next() ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(GenericAttribute) anAttr;
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( anIt->Value()->FindAttribute(anAttr, "AttributeIOR") ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(AttributeIOR) anIOR ( anAttr );
|
|
|
|
TCollection_AsciiString asciiIOR( (char*)anIOR->Value().c_str() );
|
2005-08-18 12:15:31 +06:00
|
|
|
GEOM_Client().RemoveShapeFromBuffer( asciiIOR );
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : openCommand
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
2005-08-18 12:15:31 +06:00
|
|
|
bool GEOMBase_Helper::openCommand()
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
bool res = false;
|
|
|
|
if ( !getStudy() || hasCommand() )
|
|
|
|
return res;
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
GEOM::GEOM_IOperations_var anOp = GEOM::GEOM_IOperations::_narrow( getOperation() );
|
|
|
|
if ( !anOp->_is_nil() ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
myCommand = new GEOM_Operation( SUIT_Session::session()->activeApplication(), anOp.in() );
|
2004-12-01 15:39:14 +05:00
|
|
|
myCommand->start();
|
|
|
|
res = true;
|
|
|
|
}
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : abortCommand
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
|
|
|
bool GEOMBase_Helper::abortCommand()
|
|
|
|
{
|
|
|
|
if ( !hasCommand() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
myCommand->abort();
|
|
|
|
myCommand = 0;
|
2005-08-18 12:15:31 +06:00
|
|
|
|
|
|
|
return true;
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : commitCommand
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
|
|
|
bool GEOMBase_Helper::commitCommand( const char* )
|
|
|
|
{
|
|
|
|
if ( !hasCommand() )
|
|
|
|
return false;
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
myCommand->commit();
|
2004-12-01 15:39:14 +05:00
|
|
|
myCommand = 0;
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
return true;
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : hasCommand
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
|
|
|
bool GEOMBase_Helper::hasCommand() const
|
|
|
|
{
|
|
|
|
return (bool)myCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : getOperation
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
|
|
|
GEOM::GEOM_IOperations_ptr GEOMBase_Helper::getOperation()
|
|
|
|
{
|
|
|
|
if ( myOperation->_is_nil() )
|
|
|
|
myOperation = createOperation();
|
|
|
|
|
|
|
|
return myOperation;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
// Function : checkViewWindow
|
2005-08-18 12:15:31 +06:00
|
|
|
// Purpose :
|
2004-12-01 15:39:14 +05:00
|
|
|
//================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
bool GEOMBase_Helper::checkViewWindow()
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
if ( myViewWindow ){
|
|
|
|
QPtrList<SUIT_ViewWindow> aViewWindowsList = SUIT_Session::session()->activeApplication()->desktop()->windows();
|
2005-08-18 12:15:31 +06:00
|
|
|
for ( QPtrListIterator<SUIT_ViewWindow> it( aViewWindowsList ); it.current(); ++it )
|
2005-06-02 13:17:09 +06:00
|
|
|
{
|
|
|
|
if ( myViewWindow == it.current() )
|
2004-12-01 15:39:14 +05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2005-06-02 13:17:09 +06: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()
|
2005-08-18 12:15:31 +06:00
|
|
|
// 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 )
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( SUIT_Session::session()->activeApplication()->activeStudy() );
|
|
|
|
if ( !appStudy ) return false;
|
|
|
|
_PTR(Study) aStudy = appStudy->studyDS();
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
bool aLocked = (_PTR(AttributeStudyProperties) (aStudy->GetProperties()))->IsLocked();
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( aLocked ) {
|
|
|
|
MESSAGE("GEOMBase_Helper::onAccept - ActiveStudy is locked");
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_MessageBox::warn1 ( (QWidget*)SUIT_Session::session()->activeApplication()->desktop(),
|
2005-08-18 12:15:31 +06:00
|
|
|
QObject::tr("WRN_WARNING"),
|
2004-12-01 15:39:14 +05:00
|
|
|
QObject::tr("WRN_STUDY_LOCKED"),
|
|
|
|
QObject::tr("BUT_OK") );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString msg;
|
|
|
|
if ( !isValid( msg ) ) {
|
|
|
|
showError( msg );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
erasePreview( false );
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ( ( !publish && !useTransaction ) || openCommand() ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_OverrideCursor wc;
|
|
|
|
SUIT_Session::session()->activeApplication()->putInfo( "" );
|
2004-12-01 15:39:14 +05:00
|
|
|
ObjectList objects;
|
|
|
|
if ( !execute( objects ) || !getOperation()->IsDone() ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
wc.suspend();
|
2004-12-01 15:39:14 +05:00
|
|
|
abortCommand();
|
|
|
|
showError();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const int nbObjs = objects.size();
|
|
|
|
bool withChildren = false;
|
|
|
|
for ( ObjectList::iterator it = objects.begin(); it != objects.end(); ++it ) {
|
|
|
|
if ( publish ) {
|
|
|
|
QString aName("");
|
|
|
|
if ( nbObjs > 1 )
|
|
|
|
aName = strlen( getNewObjectName() ) ? GEOMBase::GetDefaultName( getNewObjectName() ) : GEOMBase::GetDefaultName( getPrefix( *it ) );
|
|
|
|
else {
|
|
|
|
aName = getNewObjectName();
|
|
|
|
// PAL6521: use a prefix, if some dialog box doesn't reimplement getNewObjectName()
|
|
|
|
if ( aName.isEmpty() )
|
|
|
|
aName = GEOMBase::GetDefaultName( getPrefix( *it ) );
|
|
|
|
}
|
|
|
|
addInStudy( *it, aName.latin1() );
|
|
|
|
withChildren = false;
|
|
|
|
display( *it, false );
|
|
|
|
}
|
2005-08-18 12:15:31 +06:00
|
|
|
else { // asv : fix of PAL6454. If publish==false, then the original shape was modified, and need to be re-cached in GEOM_Client
|
2004-12-01 15:39:14 +05:00
|
|
|
// before redisplay
|
|
|
|
clearShapeBuffer( *it );
|
|
|
|
withChildren = true;
|
|
|
|
redisplay( *it, withChildren, false );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( nbObjs ) {
|
|
|
|
commitCommand();
|
|
|
|
updateObjBrowser();
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_Session::session()->activeApplication()->putInfo( QObject::tr("GEOM_PRP_DONE") );
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
abortCommand();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( const SALOME::SALOME_Exception& e ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
SalomeApp_Tools::QtCatchCorbaException( e );
|
2004-12-01 15:39:14 +05:00
|
|
|
abortCommand();
|
|
|
|
}
|
|
|
|
|
|
|
|
updateViewer();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// 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" );
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_MessageBox::error1( SUIT_Session::session()->activeApplication()->desktop(),
|
2005-08-18 12:15:31 +06:00
|
|
|
QObject::tr( "GEOM_ERROR_STATUS" ),
|
|
|
|
msg,
|
2005-06-02 13:17:09 +06:00
|
|
|
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;
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_MessageBox::error1(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
|
2005-08-18 12:15:31 +06:00
|
|
|
// 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
|
|
|
|
//================================================================
|
|
|
|
const char* GEOMBase_Helper::getNewObjectName() const
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// 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 "";
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
long aType = aShape.ShapeType();
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
switch ( aType )
|
|
|
|
{
|
|
|
|
case TopAbs_VERTEX : return QObject::tr( "GEOM_VERTEX" );
|
|
|
|
case TopAbs_EDGE : return QObject::tr( "GEOM_EDGE" );
|
|
|
|
case TopAbs_WIRE : return QObject::tr( "GEOM_WIRE" );
|
|
|
|
case TopAbs_FACE : return QObject::tr( "GEOM_FACE" );
|
|
|
|
case TopAbs_SHELL : return QObject::tr( "GEOM_SHELL" );
|
|
|
|
case TopAbs_SOLID : return QObject::tr( "GEOM_SOLID" );
|
|
|
|
case TopAbs_COMPSOLID: return QObject::tr( "GEOM_COMPOUNDSOLID" );
|
|
|
|
case TopAbs_COMPOUND : return QObject::tr( "GEOM_COMPOUND" );
|
|
|
|
default : return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
//================================================================
|
|
|
|
// Function : selectedIO
|
|
|
|
// Purpose : Return the list of selected SALOME_InteractiveObject's
|
|
|
|
//================================================================
|
|
|
|
const SALOME_ListIO& GEOMBase_Helper::selectedIO()
|
|
|
|
{
|
|
|
|
mySelected.Clear();
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
if ( app ) {
|
|
|
|
SalomeApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
if ( aSelMgr )
|
|
|
|
aSelMgr->selectedObjects( mySelected );
|
|
|
|
}
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
return mySelected;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : IObjectCount
|
|
|
|
// Purpose : Return the number of selected objects
|
|
|
|
//================================================================
|
|
|
|
int GEOMBase_Helper::IObjectCount()
|
|
|
|
{
|
|
|
|
return selectedIO().Extent();
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : firstIObject
|
|
|
|
// Purpose : Return the first selected object in the selected object list
|
|
|
|
//================================================================
|
|
|
|
Handle(SALOME_InteractiveObject) GEOMBase_Helper::firstIObject()
|
|
|
|
{
|
|
|
|
const SALOME_ListIO& aList = selectedIO();
|
|
|
|
return aList.Extent() > 0 ? aList.First() : Handle(SALOME_InteractiveObject)();
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================
|
|
|
|
// Function : lastIObject
|
|
|
|
// Purpose : Return the last selected object in the selected object list
|
|
|
|
//================================================================
|
|
|
|
Handle(SALOME_InteractiveObject) GEOMBase_Helper::lastIObject()
|
|
|
|
{
|
|
|
|
const SALOME_ListIO& aList = selectedIO();
|
|
|
|
return aList.Extent() > 0 ? aList.Last() : Handle(SALOME_InteractiveObject)();
|
|
|
|
}
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2005-08-02 18:45:47 +06:00
|
|
|
//================================================================
|
|
|
|
// Function : getDesktop
|
|
|
|
// Purpose : Returns myDesktop field. Initialized in constructor, usually as dynamic_cast<SUIT_Desktop*>(parentWidget())
|
|
|
|
//================================================================
|
|
|
|
SUIT_Desktop* GEOMBase_Helper::getDesktop() const
|
|
|
|
{
|
|
|
|
return myDesktop;
|
|
|
|
}
|
|
|
|
|