geom/src/GEOMToolsGUI/GEOMToolsGUI.cxx

989 lines
31 KiB
C++
Raw Normal View History

2009-02-13 17:16:39 +05:00
// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
2004-01-07 20:46:21 +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-01-07 20:46:21 +05:00
//
2009-02-13 17:16:39 +05:00
// GEOM GEOMGUI : GUI for Geometry component
// File : GEOMBase_Tools.cxx
// Author : Damien COQUERET, Open CASCADE S.A.S.
2004-01-07 20:46:21 +05:00
//
#include "GEOMToolsGUI.h"
2009-02-13 17:16:39 +05:00
#include "GEOMToolsGUI_DeleteDlg.h"
2009-02-13 17:16:39 +05:00
#include <GeometryGUI.h>
#include <GEOMBase.h>
#include <GEOM_Operation.h>
#include <GEOM_Displayer.h>
2004-01-07 20:46:21 +05:00
#include <SUIT_Session.h>
#include <SUIT_OverrideCursor.h>
#include <SUIT_MessageBox.h>
#include <SUIT_Tools.h>
#include <SUIT_FileDlg.h>
#include <SUIT_Desktop.h>
#include <SUIT_ViewModel.h>
2009-02-13 17:16:39 +05:00
#include <SUIT_ViewManager.h>
#include <SalomeApp_Application.h>
#include <SalomeApp_Study.h>
#include <LightApp_SelectionMgr.h>
#include <GEOMImpl_Types.hxx>
2009-02-13 17:16:39 +05:00
#include <SALOME_ListIO.hxx>
#include <SALOME_ListIteratorOfListIO.hxx>
#include <SALOME_Prs.h>
2004-01-07 20:46:21 +05:00
// QT Includes
2009-02-13 17:16:39 +05:00
#include <QApplication>
#include <QMap>
#include <QRegExp>
2004-01-07 20:46:21 +05:00
// OCCT Includes
#include <TCollection_AsciiString.hxx>
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
using namespace std;
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
typedef QMap<QString, QString> FilterMap;
2009-02-13 17:16:39 +05:00
static QString lastUsedFilter;
2004-06-16 21:24:55 +06:00
2004-12-01 15:39:14 +05:00
//=======================================================================
// function : getFileName
// purpose : Selection of a file name for Import/Export. Returns also
2004-12-01 15:39:14 +05:00
// the selected file type code through <filter> argument.
//=======================================================================
static QString getFileName( QWidget* parent,
const QString& initial,
const FilterMap& filterMap,
2009-02-13 17:16:39 +05:00
const QStringList& filters,
2004-12-01 15:39:14 +05:00
const QString& caption,
bool open,
2009-02-13 17:16:39 +05:00
QString& format,
bool showCurrentDirInitially = false )
2004-12-01 15:39:14 +05:00
{
//QStringList filters;
QString aBrepFilter;
for ( FilterMap::const_iterator it = filterMap.begin(); it != filterMap.end(); ++it ) {
//filters.push_back( it.key() );
2009-02-13 17:16:39 +05:00
if ( it.key().contains( "BREP", Qt::CaseInsensitive ) )
aBrepFilter = it.key();
}
2004-12-01 15:39:14 +05:00
SUIT_FileDlg* fd = new SUIT_FileDlg( parent, open, true, true );
2004-12-01 15:39:14 +05:00
if ( !caption.isEmpty() )
2009-02-13 17:16:39 +05:00
fd->setWindowTitle( caption );
2004-12-01 15:39:14 +05:00
if ( !initial.isEmpty() )
2009-02-13 17:16:39 +05:00
fd->selectFile( initial );
if ( showCurrentDirInitially && SUIT_FileDlg::getLastVisitedPath().isEmpty() )
fd->setDirectory( QDir::currentPath() );
2004-12-01 15:39:14 +05:00
fd->setFilters( filters );
2009-02-13 17:16:39 +05:00
if ( !lastUsedFilter.isEmpty() && filterMap.contains( lastUsedFilter ) ) {
fd->selectFilter( lastUsedFilter );
}
else if ( !aBrepFilter.isEmpty() ) {
fd->selectFilter( aBrepFilter );
}
2009-02-13 17:16:39 +05:00
QString filename;
if ( fd->exec() == QDialog::Accepted ) {
filename = fd->selectedFile();
format = filterMap[fd->selectedFilter()];
lastUsedFilter = fd->selectedFilter();
}
2004-12-01 15:39:14 +05:00
delete fd;
qApp->processEvents();
return filename;
}
2009-02-13 17:16:39 +05:00
//=======================================================================
// function : getFileNames
// purpose : Select list of files for Import operation. Returns also
// the selected file type code through <format> argument.
//=======================================================================
static QStringList getFileNames( QWidget* parent,
const QString& initial,
const FilterMap& filterMap,
const QString& caption,
QString& format,
bool showCurrentDirInitially = false)
{
QString aBrepFilter;
QStringList allFilters;
QStringList filters;
QRegExp re( "\\((.*)\\)" );
re.setMinimal( true );
for ( FilterMap::const_iterator it = filterMap.begin(); it != filterMap.end(); ++it ) {
if ( it.value().contains( "BREP", Qt::CaseInsensitive ) && aBrepFilter.isEmpty() )
aBrepFilter = it.key();
filters.append( it.key() );
int pos = 0;
while ( re.indexIn( it.key(), pos ) >= 0 ) {
QString f = re.cap(1);
pos = re.pos() + f.length() + 2;
allFilters.append( f.simplified() );
}
}
filters.append( QObject::tr( "GEOM_ALL_IMPORT_FILES" ).arg( allFilters.join( " " ) ) );
SUIT_FileDlg fd( parent, true, true, true );
fd.setFileMode( SUIT_FileDlg::ExistingFiles );
if ( !caption.isEmpty() )
fd.setWindowTitle( caption );
if ( !initial.isEmpty() )
fd.selectFile( initial );
if ( showCurrentDirInitially && SUIT_FileDlg::getLastVisitedPath().isEmpty() )
fd.setDirectory( QDir::currentPath() );
fd.setFilters( filters );
if ( !lastUsedFilter.isEmpty() && filterMap.contains( lastUsedFilter ) )
fd.selectFilter( lastUsedFilter );
else if ( !aBrepFilter.isEmpty() )
fd.selectFilter( aBrepFilter );
QStringList filenames;
if ( fd.exec() ) {
filenames = fd.selectedFiles();
format = filterMap.contains( fd.selectedFilter() ) ? filterMap[ fd.selectedFilter() ] : QString();
lastUsedFilter = fd.selectedFilter();
}
qApp->processEvents();
return filenames;
}
//=======================================================================
// function : getParentComponent
// purpose : Get object's parent component entry
//=======================================================================
static QString getParentComponent( _PTR( SObject ) obj )
{
if ( obj ) {
_PTR(SComponent) comp = obj->GetFatherComponent();
if ( comp )
return QString( comp->GetID().c_str() );
}
return QString();
}
//=====================================================================================
// function : inUse
// purpose : check if the object(s) passed as the the second arguments are used
// by the other objects in the study
//=====================================================================================
static bool inUse( _PTR(Study) study, const QString& component, const QMap<QString,QString>& objects )
{
_PTR(SObject) comp = study->FindObjectID( component.toLatin1().data() );
if ( !comp )
return false;
// collect all GEOM objects being deleted
QMap<QString, GEOM::GEOM_Object_var> gobjects;
QMap<QString, QString>::ConstIterator oit;
list<_PTR(SObject)> aSelectedSO;
for ( oit = objects.begin(); oit != objects.end(); ++oit ) {
_PTR(SObject) so = study->FindObjectID( oit.key().toLatin1().data() );
if ( !so )
continue;
aSelectedSO.push_back(so);
CORBA::Object_var corbaObj_rem = GeometryGUI::ClientSObjectToObject( so );
GEOM::GEOM_Object_var geomObj_rem = GEOM::GEOM_Object::_narrow( corbaObj_rem );
if( CORBA::is_nil( geomObj_rem ) )
continue;
gobjects.insert( oit.key(), geomObj_rem );
}
// Search References with other Modules
list< _PTR(SObject) >::iterator itSO = aSelectedSO.begin();
for ( ; itSO != aSelectedSO.end(); ++itSO ) {
std::vector<_PTR(SObject)> aReferences = study->FindDependances( *itSO );
int aRefLength = aReferences.size();
if (aRefLength) {
for (int i = 0; i < aRefLength; i++) {
_PTR(SObject) firstSO( aReferences[i] );
_PTR(SComponent) aComponent = firstSO->GetFatherComponent();
QString type = aComponent->ComponentDataType().c_str();
if ( type == "SMESH" )
return true;
}
}
}
// browse through all GEOM data tree
_PTR(ChildIterator) it ( study->NewChildIterator( comp ) );
for ( it->InitEx( true ); it->More(); it->Next() ) {
_PTR(SObject) child( it->Value() );
CORBA::Object_var corbaObj = GeometryGUI::ClientSObjectToObject( child );
GEOM::GEOM_Object_var geomObj = GEOM::GEOM_Object::_narrow( corbaObj );
if( CORBA::is_nil( geomObj ) )
continue;
GEOM::ListOfGO_var list = geomObj->GetDependency();
if( list->length() == 0 )
continue;
for( int i = 0; i < list->length(); i++ ) {
bool depends = false;
bool deleted = false;
QMap<QString, GEOM::GEOM_Object_var>::Iterator git;
for ( git = gobjects.begin(); git != gobjects.end() && ( !depends || !deleted ); ++git ) {
depends = depends || list[i]->_is_equivalent( *git );
deleted = deleted || git.key() == child->GetID().c_str() ;//geomObj->_is_equivalent( *git );
}
if ( depends && !deleted )
return true;
}
}
return false;
}
2004-01-07 20:46:21 +05:00
//=======================================================================
// function : GEOMToolsGUI()
// purpose : Constructor
//=======================================================================
GEOMToolsGUI::GEOMToolsGUI( GeometryGUI* parent )
: GEOMGUI( parent )
2004-01-07 20:46:21 +05:00
{
}
//=======================================================================
// function : ~GEOMToolsGUI()
// purpose : Destructor
//=======================================================================
GEOMToolsGUI::~GEOMToolsGUI()
{
}
//=======================================================================
// function : OnGUIEvent()
// purpose :
2004-01-07 20:46:21 +05:00
//=======================================================================
bool GEOMToolsGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
2004-01-07 20:46:21 +05:00
{
getGeometryGUI()->EmitSignalDeactivateDialog();
2004-01-07 20:46:21 +05:00
switch (theCommandID)
{
case 31: // COPY
{
2004-12-01 15:39:14 +05:00
OnEditCopy();
2004-01-07 20:46:21 +05:00
break;
}
case 33: // DELETE
{
2004-12-01 15:39:14 +05:00
OnEditDelete();
2004-01-07 20:46:21 +05:00
break;
}
case 111: // IMPORT BREP
case 112: // IMPORT IGES
case 113: // IMPORT STEP
{
2004-12-01 15:39:14 +05:00
Import();
2004-01-07 20:46:21 +05:00
break;
}
case 121: // EXPORT BREP
case 122: // EXPORT IGES
case 123: // EXPORT STEP
{
2004-12-01 15:39:14 +05:00
Export();
2004-01-07 20:46:21 +05:00
break;
}
case 2171: // POPUP VIEWER - SELECT ONLY - VERTEX
{
OnSelectOnly( GEOM_POINT );
break;
}
case 2172: // POPUP VIEWER - SELECT ONLY - EDGE
{
OnSelectOnly( GEOM_EDGE );
break;
}
case 2173: // POPUP VIEWER - SELECT ONLY - WIRE
{
OnSelectOnly( GEOM_WIRE );
break;
}
case 2174: // POPUP VIEWER - SELECT ONLY - FACE
{
OnSelectOnly( GEOM_FACE );
break;
}
case 2175: // POPUP VIEWER - SELECT ONLY - SHELL
{
OnSelectOnly( GEOM_SHELL );
break;
}
case 2176: // POPUP VIEWER - SELECT ONLY - SOLID
{
OnSelectOnly( GEOM_SOLID );
break;
}
case 2177: // POPUP VIEWER - SELECT ONLY - COMPOUND
{
OnSelectOnly( GEOM_COMPOUND );
break;
}
case 2178: // POPUP VIEWER - SELECT ONLY - SELECT ALL
{
OnSelectOnly( GEOM_ALLOBJECTS );
break;
}
2004-01-07 20:46:21 +05:00
case 411: // SETTINGS - ADD IN STUDY
{
2004-12-01 15:39:14 +05:00
// SAN -- TO BE REMOVED !!!
2004-01-07 20:46:21 +05:00
break;
}
case 412: // SETTINGS - SHADING COLOR
{
2004-12-01 15:39:14 +05:00
OnSettingsColor();
2004-01-07 20:46:21 +05:00
break;
}
case 804: // ADD IN STUDY - POPUP VIEWER
{
2004-12-01 15:39:14 +05:00
// SAN -- TO BE REMOVED !!!!
2004-01-07 20:46:21 +05:00
break;
}
case 901: // RENAME
{
2004-12-01 15:39:14 +05:00
OnRename();
2004-01-07 20:46:21 +05:00
break;
}
case 5103: // CHECK GEOMETRY
{
2004-12-01 15:39:14 +05:00
OnCheckGeometry();
2004-01-07 20:46:21 +05:00
break;
}
case 8032: // COLOR - POPUP VIEWER
{
2004-12-01 15:39:14 +05:00
OnColor();
2004-01-07 20:46:21 +05:00
break;
}
case 8033: // TRANSPARENCY - POPUP VIEWER
{
2004-12-01 15:39:14 +05:00
OnTransparency();
2004-01-07 20:46:21 +05:00
break;
}
case 8034: // ISOS - POPUP VIEWER
{
2004-12-01 15:39:14 +05:00
OnNbIsos();
2004-01-07 20:46:21 +05:00
break;
}
case 8035: // AUTO COLOR - POPUP VIEWER
{
OnAutoColor();
break;
}
case 8036: // DISABLE AUTO COLOR - POPUP VIEWER
{
OnDisableAutoColor();
break;
}
case 8037: // SHOW CHILDREN - POPUP VIEWER
case 8038: // HIDE CHILDREN - POPUP VIEWER
{
OnShowHideChildren( theCommandID == 8037 );
break;
}
2004-01-07 20:46:21 +05:00
case 9024 : // OPEN - OBJBROSER POPUP
{
2004-12-01 15:39:14 +05:00
OnOpen();
2004-01-07 20:46:21 +05:00
break;
}
default:
{
SUIT_Session::session()->activeApplication()->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
2004-01-07 20:46:21 +05:00
break;
}
}
return true;
}
//===============================================================================
// function : OnEditDelete()
// purpose :
//===============================================================================
void GEOMToolsGUI::OnEditDelete()
{
SALOME_ListIO selected;
SalomeApp_Application* app =
dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
2009-02-13 17:16:39 +05:00
if ( !app )
return;
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
if ( !aSelMgr || !appStudy )
return;
// get selection
aSelMgr->selectedObjects( selected, "ObjectBrowser", false );
if ( selected.IsEmpty() )
return;
_PTR(Study) aStudy = appStudy->studyDS();
// check if study is locked
if ( _PTR(AttributeStudyProperties)( aStudy->GetProperties() )->IsLocked() ) {
SUIT_MessageBox::warning( app->desktop(),
tr("WRN_WARNING"),
tr("WRN_STUDY_LOCKED") );
return; // study is locked
}
// get GEOM component
CORBA::String_var geomIOR = app->orb()->object_to_string( GeometryGUI::GetGeomGen() );
QString geomComp = getParentComponent( aStudy->FindObjectIOR( geomIOR.in() ) );
// check each selected object: if belongs to GEOM, if not reference...
QMap<QString,QString> toBeDeleted;
QMap<QString,QString> allDeleted;
bool isComponentSelected = false;
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
Handle(SALOME_InteractiveObject) anIObject = It.Value();
if ( !anIObject->hasEntry() )
continue; // invalid object
// ...
QString entry = anIObject->getEntry();
_PTR(SObject) obj = aStudy->FindObjectID( entry.toLatin1().data() );
// check parent component
QString parentComp = getParentComponent( obj );
if ( parentComp != geomComp ) {
SUIT_MessageBox::warning( app->desktop(),
QObject::tr("ERR_ERROR"),
QObject::tr("NON_GEOM_OBJECTS_SELECTED").arg( getGeometryGUI()->moduleName() ) );
return; // not GEOM object selected
}
2009-02-13 17:16:39 +05:00
///////////////////////////////////////////////////////
// if GEOM component is selected, so skip other checks
if ( isComponentSelected ) continue;
///////////////////////////////////////////////////////
// check if object is reference
_PTR(SObject) refobj;
if ( obj && obj->ReferencedObject( refobj ) )
continue; // skip references
// ...
QString aName = obj->GetName().c_str();
if ( entry == geomComp ) {
// GEOM component is selected, skip other checks
isComponentSelected = true;
continue;
}
toBeDeleted.insert( entry, aName );
allDeleted.insert( entry, aName ); // skip GEOM component
// browse through all children recursively
_PTR(ChildIterator) it ( aStudy->NewChildIterator( obj ) );
for ( it->InitEx( true ); it->More(); it->Next() ) {
_PTR(SObject) child( it->Value() );
if ( child && child->ReferencedObject( refobj ) )
continue; // skip references
aName = child->GetName().c_str();
if ( !aName.isEmpty() )
allDeleted.insert( child->GetID().c_str(), aName );
}
}
// is there is anything to delete?
if ( !isComponentSelected && allDeleted.count() <= 0 )
return; // nothing to delete
// show confirmation dialog box
GEOMToolsGUI_DeleteDlg dlg( app->desktop(), allDeleted, isComponentSelected );
if ( !dlg.exec() )
return; // operation is cancelled by user
// get currently opened views
QList<SALOME_View*> views;
SALOME_View* view;
ViewManagerList vmans = app->viewManagers();
SUIT_ViewManager* vman;
foreach ( vman, vmans ) {
SUIT_ViewModel* vmod = vman->getViewModel();
view = dynamic_cast<SALOME_View*> ( vmod ); // must work for OCC and VTK views
if ( view )
views.append( view );
}
_PTR(StudyBuilder) aStudyBuilder (aStudy->NewBuilder());
GEOM_Displayer* disp = new GEOM_Displayer( appStudy );
if ( isComponentSelected ) {
// GEOM component is selected: delete all objects recursively
_PTR(SObject) comp = aStudy->FindObjectID( geomComp.toLatin1().data() );
if ( !comp )
return;
_PTR(ChildIterator) it ( aStudy->NewChildIterator( comp ) );
// remove top-level objects only
for ( it->InitEx( false ); it->More(); it->Next() ) {
_PTR(SObject) child( it->Value() );
// remove object from GEOM engine
removeObjectWithChildren( child, aStudy, views, disp );
// remove object from study
aStudyBuilder->RemoveObjectWithChildren( child );
}
}
else {
// GEOM component is not selected: check if selected objects are in use
if ( inUse( aStudy, geomComp, allDeleted ) ) {
SUIT_MessageBox::warning( app->desktop(),
QObject::tr("WRN_WARNING"),
QObject::tr("DEP_OBJECT") );
return; // object(s) in use
}
// ... and then delete all objects
QMap<QString, QString>::Iterator it;
for ( it = toBeDeleted.begin(); it != toBeDeleted.end(); ++it ) {
_PTR(SObject) obj ( aStudy->FindObjectID( it.key().toLatin1().data() ) );
// remove object from GEOM engine
removeObjectWithChildren( obj, aStudy, views, disp );
// remove objects from study
aStudyBuilder->RemoveObjectWithChildren( obj );
}
}
selected.Clear();
aSelMgr->setSelectedObjects( selected );
getGeometryGUI()->updateObjBrowser();
app->updateActions(); //SRN: To update a Save button in the toolbar
2004-01-07 20:46:21 +05:00
}
//==============================================================================
// function : OnEditCopy()
// purpose :
//==============================================================================
void GEOMToolsGUI::OnEditCopy()
{
/*
2004-12-01 15:39:14 +05:00
SALOME_Selection* Sel = SALOME_Selection::Selection(QAD_Application::getDesktop()->getActiveStudy()->getSelection() );
GEOM::string_array_var listIOR = new GEOM::string_array;
2004-01-07 20:46:21 +05:00
const SALOME_ListIO& List = Sel->StoredIObjects();
myGeomBase->ConvertListOfIOInListOfIOR(List, listIOR);
Sel->ClearIObjects();
2004-12-01 15:39:14 +05:00
SALOMEDS::Study_var aStudy = QAD_Application::getDesktop()->getActiveStudy()->getStudyDocument();
int aStudyID = aStudy->StudyId();
2004-12-01 15:39:14 +05:00
2004-01-07 20:46:21 +05:00
for (unsigned int ind = 0; ind < listIOR->length();ind++) {
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_var aShapeInit = myGeom->GetIORFromString(listIOR[ind]);
2004-01-07 20:46:21 +05:00
try {
2004-12-01 15:39:14 +05:00
GEOM::GEOM_IInsertOperations_var IOp = myGeom->GetIInsertOperations(aStudyID);
GEOM::GEOM_Object_var result = IOp->MakeCopy(aShapeInit);
2004-01-07 20:46:21 +05:00
myGeomBase->Display(result);
}
catch (const SALOME::SALOME_Exception& S_ex) {
QtCatchCorbaException(S_ex);
}
}
2004-01-07 20:46:21 +05:00
QAD_Application::getDesktop()->putInfo(tr("GEOM_PRP_READY"));
2004-12-01 15:39:14 +05:00
*/
2004-01-07 20:46:21 +05:00
}
//=====================================================================================
// function : Import
// purpose : BRep, Iges, Step
//=====================================================================================
2004-12-01 15:39:14 +05:00
bool GEOMToolsGUI::Import()
2004-01-07 20:46:21 +05:00
{
2005-09-13 17:09:57 +06:00
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( getGeometryGUI()->getApp() );
if ( !app ) return false;
SalomeApp_Study* stud = dynamic_cast<SalomeApp_Study*> ( app->activeStudy() );
if ( !stud ) {
2009-02-13 17:16:39 +05:00
MESSAGE ( "FAILED to cast active study to SalomeApp_Study" );
return false;
}
_PTR(Study) aStudy = stud->studyDS();
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
// check if study is locked
bool aLocked = (_PTR(AttributeStudyProperties)(aStudy->GetProperties()))->IsLocked();
2004-12-01 15:39:14 +05:00
if ( aLocked ) {
2009-02-13 17:16:39 +05:00
SUIT_MessageBox::warning( app->desktop(),
QObject::tr("WRN_WARNING"),
QObject::tr("WRN_STUDY_LOCKED") );
2004-12-01 15:39:14 +05:00
return false;
}
2009-02-13 17:16:39 +05:00
// check if GEOM engine is available
GEOM::GEOM_Gen_var eng = GeometryGUI::GetGeomGen();
if ( CORBA::is_nil( eng ) ) {
2009-02-13 17:16:39 +05:00
SUIT_MessageBox::critical( app->desktop(),
QObject::tr("WRN_WARNING"),
QObject::tr( "GEOM Engine is not started" ) );
return false;
}
GEOM::GEOM_IInsertOperations_var aInsOp = eng->GetIInsertOperations( aStudy->StudyId() );
2004-12-01 15:39:14 +05:00
if ( aInsOp->_is_nil() )
return false;
2009-02-13 17:16:39 +05:00
// obtain a list of available import formats
2004-12-01 15:39:14 +05:00
FilterMap aMap;
GEOM::string_array_var aFormats, aPatterns;
aInsOp->ImportTranslators( aFormats, aPatterns );
2009-02-13 17:16:39 +05:00
for ( int i = 0, n = aFormats->length(); i < n; i++ )
2004-12-01 15:39:14 +05:00
aMap.insert( (char*)aPatterns[i], (char*)aFormats[i] );
2009-02-13 17:16:39 +05:00
// select files to be imported
2004-12-01 15:39:14 +05:00
QString fileType;
2009-02-13 17:16:39 +05:00
QStringList fileNames = getFileNames( app->desktop(), "", aMap,
tr( "GEOM_MEN_IMPORT" ), fileType, true );
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
// set Wait cursor
SUIT_OverrideCursor wc;
2009-02-13 17:16:39 +05:00
if ( fileNames.count() == 0 )
return false; // nothing selected, return
2009-02-13 17:16:39 +05:00
QStringList errors;
2009-02-13 17:16:39 +05:00
QList< GEOM::GEOM_Object_var > objsForDisplay;
2009-02-13 17:16:39 +05:00
// iterate through all selected files
SUIT_MessageBox::StandardButton igesAnswer = SUIT_MessageBox::NoButton;
SUIT_MessageBox::StandardButton acisAnswer = SUIT_MessageBox::NoButton;
for ( int i = 0; i < fileNames.count(); i++ ) {
QString fileName = fileNames[i];
2009-02-13 17:16:39 +05:00
if ( fileName.isEmpty() )
continue;
2009-02-13 17:16:39 +05:00
QString aCurrentType;
if ( fileType.isEmpty() ) {
// file type is not defined, try to detect
QString ext = QFileInfo( fileName ).suffix().toUpper();
QRegExp re( "\\*\\.(\\w+)" );
for ( FilterMap::const_iterator it = aMap.begin();
it != aMap.end() && aCurrentType.isEmpty(); ++it ) {
int pos = 0;
while ( re.indexIn( it.key(), pos ) >= 0 ) {
QString f = re.cap(1).trimmed().toUpper();
if ( ext == f ) { aCurrentType = it.value(); break; }
pos = re.pos() + re.cap(1).length() + 2;
}
}
}
else {
aCurrentType = fileType;
}
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
if ( aCurrentType.isEmpty() ) {
errors.append( QString( "%1 : %2" ).arg( fileName ).arg( tr( "GEOM_UNSUPPORTED_TYPE" ) ) );
continue;
}
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
GEOM_Operation* anOp = new GEOM_Operation( app, aInsOp.in() );
try {
app->putInfo( tr( "GEOM_PRP_LOADING" ).arg( SUIT_Tools::file( fileName, /*withExten=*/true ) ) );
anOp->start();
2009-02-13 17:16:39 +05:00
CORBA::String_var fileN = fileName.toLatin1().constData();
CORBA::String_var fileT = aCurrentType.toLatin1().constData();
2009-06-03 13:39:16 +06:00
// skl 29.05.2009
if ( aCurrentType == "IGES" ) {
2009-06-03 13:39:16 +06:00
GEOM::GEOM_Object_var anObj = aInsOp->Import( fileN, "IGES_UNIT" );
bool needConvert = false;
2009-06-03 13:39:16 +06:00
TCollection_AsciiString aUnitName = aInsOp->GetErrorCode();
if ( aUnitName.SubString( 1, 4 ) == "UNIT" )
needConvert = aUnitName.SubString( 6, aUnitName.Length() ) != "M";
2009-06-03 13:39:16 +06:00
if ( needConvert ) {
if ( igesAnswer == SUIT_MessageBox::NoToAll ) {
// converting for all files is already approved
fileT = "IGES_SCALE";
}
else if ( igesAnswer != SUIT_MessageBox::YesToAll ) {
SUIT_MessageBox::StandardButtons btns = SUIT_MessageBox::Yes | SUIT_MessageBox::No;
if ( i < fileNames.count()-1 ) btns = btns | SUIT_MessageBox::YesToAll | SUIT_MessageBox::NoToAll;
igesAnswer = SUIT_MessageBox::question( app->desktop(),
"Question",//tr("WRN_WARNING"),
tr("GEOM_SCALE_DIMENSIONS"),
btns | SUIT_MessageBox::Cancel,
SUIT_MessageBox::No );
switch ( igesAnswer ) {
case SUIT_MessageBox::Cancel:
return false; // cancel (break) import operation
case SUIT_MessageBox::Yes:
case SUIT_MessageBox::YesToAll:
break; // scaling is confirmed
case SUIT_MessageBox::No:
case SUIT_MessageBox::NoAll:
fileT = "IGES_SCALE";
default:
break; // scaling is rejected
} // switch ( igesAnswer )
} // if ( igeAnswer != NoToAll )
} // if ( needConvert )
} // if ( aCurrentType == "IGES" )
else if ( aCurrentType == "ACIS" ) {
if ( acisAnswer != SUIT_MessageBox::YesToAll && acisAnswer != SUIT_MessageBox::NoToAll ) {
SUIT_MessageBox::StandardButtons btns = SUIT_MessageBox::Yes | SUIT_MessageBox::No;
if ( i < fileNames.count()-1 ) btns = btns | SUIT_MessageBox::YesToAll | SUIT_MessageBox::NoToAll;
acisAnswer = SUIT_MessageBox::question( app->desktop(),
"Question",//tr("WRN_WARNING"),
tr("GEOM_PUBLISH_NAMED_SHAPES"),
btns | SUIT_MessageBox::Cancel,
SUIT_MessageBox::No );
if ( acisAnswer == SUIT_MessageBox::Cancel )
return false; // cancel (break) import operation
} // if ( acisAnswer != YesToAll && acisAnswer != NoToAll )
} // else if ( aCurrentType == "ACIS" )
2009-02-13 17:16:39 +05:00
GEOM::GEOM_Object_var anObj = aInsOp->Import( fileN, fileT );
if ( !anObj->_is_nil() && aInsOp->IsDone() ) {
QString aPublishObjName =
GEOMBase::GetDefaultName( SUIT_Tools::file( fileName, /*withExten=*/true ) );
SALOMEDS::Study_var aDSStudy = GeometryGUI::ClientStudyToStudy( aStudy );
GeometryGUI::GetGeomGen()->PublishInStudy( aDSStudy,
SALOMEDS::SObject::_nil(),
anObj,
aPublishObjName.toLatin1().constData() );
2009-02-13 17:16:39 +05:00
objsForDisplay.append( anObj );
if ( aCurrentType == "ACIS" ) {
if ( acisAnswer == SUIT_MessageBox::Yes || acisAnswer == SUIT_MessageBox::YesToAll )
GeometryGUI::GetGeomGen()->PublishNamedShapesInStudy( aDSStudy, anObj );
2009-06-03 13:39:16 +06:00
}
2009-02-13 17:16:39 +05:00
anOp->commit();
}
else {
anOp->abort();
errors.append( QString( "%1 : %2" ).arg( fileName ).arg( aInsOp->GetErrorCode() ) );
}
2004-01-07 20:46:21 +05:00
}
2009-02-13 17:16:39 +05:00
catch( const SALOME::SALOME_Exception& S_ex ) {
2004-12-01 15:39:14 +05:00
anOp->abort();
2009-02-13 17:16:39 +05:00
errors.append( QString( "%1 : %2" ).arg( fileName ).arg( tr( "GEOM_UNKNOWN_IMPORT_ERROR" ) ) );
2004-12-01 15:39:14 +05:00
}
}
2009-02-13 17:16:39 +05:00
// update object browser
getGeometryGUI()->updateObjBrowser( true );
// display imported model (if only one file is selected)
if ( objsForDisplay.count() == 1 )
GEOM_Displayer( stud ).Display( objsForDisplay[0].in() );
if ( errors.count() > 0 ) {
SUIT_MessageBox::critical( app->desktop(),
QObject::tr( "GEOM_ERROR" ),
QObject::tr( "GEOM_IMPORT_ERRORS" ) + "\n" + errors.join( "\n" ) );
2004-01-07 20:46:21 +05:00
}
2004-12-01 15:39:14 +05:00
app->updateActions(); //SRN: To update a Save button in the toolbar
2009-02-13 17:16:39 +05:00
return objsForDisplay.count() > 0;
2004-01-07 20:46:21 +05:00
}
//=====================================================================================
// function : Export
// purpose : BRep, Iges, Step
//=====================================================================================
2004-12-01 15:39:14 +05:00
bool GEOMToolsGUI::Export()
2004-01-07 20:46:21 +05:00
{
SalomeApp_Application* app = getGeometryGUI()->getApp();
if (!app) return false;
SalomeApp_Study* stud = dynamic_cast<SalomeApp_Study*> ( app->activeStudy() );
if ( !stud ) {
2009-02-13 17:16:39 +05:00
MESSAGE ( "FAILED to cast active study to SalomeApp_Study" );
return false;
}
_PTR(Study) aStudy = stud->studyDS();
GEOM::GEOM_Gen_var eng = GeometryGUI::GetGeomGen();
if ( CORBA::is_nil( eng ) ) {
2009-02-13 17:16:39 +05:00
SUIT_MessageBox::critical( app->desktop(),
QObject::tr("WRN_WARNING"),
QObject::tr( "GEOM Engine is not started" ) );
return false;
}
GEOM::GEOM_IInsertOperations_var aInsOp = eng->GetIInsertOperations( aStudy->StudyId() );
2004-12-01 15:39:14 +05:00
if ( aInsOp->_is_nil() )
return false;
// Obtain a list of available export formats
FilterMap aMap;
QStringList filters;
2004-12-01 15:39:14 +05:00
GEOM::string_array_var aFormats, aPatterns;
aInsOp->ExportTranslators( aFormats, aPatterns );
for ( int i = 0, n = aFormats->length(); i < n; i++ ) {
2004-12-01 15:39:14 +05:00
aMap.insert( (char*)aPatterns[i], (char*)aFormats[i] );
filters.push_back( (char*)aPatterns[i] );
}
2004-01-07 20:46:21 +05:00
// Get selected objects
LightApp_SelectionMgr* sm = app->selectionMgr();
if ( !sm )
return false;
SALOME_ListIO selectedObjects;
sm->selectedObjects( selectedObjects );
2009-02-13 17:16:39 +05:00
bool appropriateObj = false;
SALOME_ListIteratorOfListIO It( selectedObjects );
2004-12-01 15:39:14 +05:00
for(;It.More();It.Next()) {
Handle(SALOME_InteractiveObject) IObject = It.Value();
Standard_Boolean found;
GEOM::GEOM_Object_var anObj = GEOMBase::ConvertIOinGEOMObject(IObject, found);
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
if ( !found || anObj->_is_nil() )
continue;
2004-12-01 15:39:14 +05:00
QString fileType;
QString file = getFileName(app->desktop(), QString( IObject->getName() ), aMap, filters,
2009-02-13 17:16:39 +05:00
tr("GEOM_MEN_EXPORT"), false, fileType, true);
2004-12-01 15:39:14 +05:00
// User has pressed "Cancel" --> stop the operation
if ( file.isEmpty() || fileType.isEmpty() )
return false;
GEOM_Operation* anOp = new GEOM_Operation( app, aInsOp.in() );
2004-12-01 15:39:14 +05:00
try {
SUIT_OverrideCursor wc;
app->putInfo( tr("GEOM_PRP_EXPORT").arg(SUIT_Tools::file( file, /*withExten=*/true )) );
anOp->start();
2009-02-13 17:16:39 +05:00
aInsOp->Export( anObj, file.toStdString().c_str(), fileType.toLatin1().constData() );
if ( aInsOp->IsDone() )
anOp->commit();
else
{
anOp->abort();
wc.suspend();
2009-02-13 17:16:39 +05:00
SUIT_MessageBox::critical( app->desktop(),
QObject::tr( "GEOM_ERROR" ),
QObject::tr("GEOM_PRP_ABORT") + "\n" + QString( aInsOp->GetErrorCode() ) );
return false;
}
}
2004-12-01 15:39:14 +05:00
catch (const SALOME::SALOME_Exception& S_ex) {
//QtCatchCorbaException(S_ex);
anOp->abort();
return false;
2004-01-07 20:46:21 +05:00
}
2009-02-13 17:16:39 +05:00
appropriateObj = true;
2004-12-01 15:39:14 +05:00
}
2009-02-13 17:16:39 +05:00
if ( !appropriateObj )
SUIT_MessageBox::warning( app->desktop(),
QObject::tr("WRN_WARNING"),
QObject::tr("GEOM_WRN_NO_APPROPRIATE_SELECTION") );
return true;
2004-01-07 20:46:21 +05:00
}
//=====================================================================================
// function : RemoveObjectWithChildren
// purpose : to be used by OnEditDelete() method
//=====================================================================================
2009-02-13 17:16:39 +05:00
void GEOMToolsGUI::removeObjectWithChildren(_PTR(SObject) obj,
_PTR(Study) aStudy,
2009-02-13 17:16:39 +05:00
QList<SALOME_View*> views,
GEOM_Displayer* disp)
{
// iterate through all children of obj
for (_PTR(ChildIterator) it (aStudy->NewChildIterator(obj)); it->More(); it->Next()) {
_PTR(SObject) child (it->Value());
2009-02-13 17:16:39 +05:00
removeObjectWithChildren(child, aStudy, views, disp);
}
// erase object and remove it from engine
_PTR(GenericAttribute) anAttr;
if (obj->FindAttribute(anAttr, "AttributeIOR")) {
_PTR(AttributeIOR) anIOR (anAttr);
// Delete shape in Client
const TCollection_AsciiString ASCIor ((char*)anIOR->Value().c_str());
getGeometryGUI()->GetShapeReader().RemoveShapeFromBuffer(ASCIor);
CORBA::Object_var corbaObj = GeometryGUI::ClientSObjectToObject(obj);
GEOM::GEOM_Object_var geomObj = GEOM::GEOM_Object::_narrow( corbaObj );
if (!CORBA::is_nil(geomObj)) {
// Erase graphical object
2009-02-13 17:16:39 +05:00
QListIterator<SALOME_View*> it( views );
while ( it.hasNext() )
if ( SALOME_View* view = it.next() )
disp->Erase(geomObj, true, view);
// Remove object from Engine
// We can't directly remove object from engine. All we can do is to unpublish the object
// from the study. Another client could be using the object.
// Unpublishing is done just after in aStudyBuilder->RemoveObjectWithChildren( child );
//GeometryGUI::GetGeomGen()->RemoveObject( geomObj );
}
}
}
//=================================================================================
// function : deactivate()
// purpose : Called when GEOM component is deactivated
//=================================================================================
void GEOMToolsGUI::deactivate()
{
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
if ( app ) {
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
GEOM_Displayer aDisp (appStudy);
aDisp.GlobalSelection();
getGeometryGUI()->setLocalSelectionMode(GEOM_ALLOBJECTS);
}
}
2004-01-07 20:46:21 +05:00
//=====================================================================================
// EXPORTED METHODS
//=====================================================================================
extern "C"
{
2009-02-13 17:16:39 +05:00
#ifdef WIN32
__declspec( dllexport )
#endif
GEOMGUI* GetLibGUI( GeometryGUI* parent )
2004-12-01 15:39:14 +05:00
{
return new GEOMToolsGUI( parent );
2004-12-01 15:39:14 +05:00
}
2004-01-07 20:46:21 +05:00
}