2004-01-07 20:46:21 +05:00
|
|
|
// GEOM GEOMGUI : GUI for Geometry component
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003 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
|
|
|
|
//
|
|
|
|
// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
2004-12-01 15:39:14 +05:00
|
|
|
// File : GEOMBase_Tools.cxx
|
2004-01-07 20:46:21 +05:00
|
|
|
// Author : Damien COQUERET
|
|
|
|
// Module : GEOM
|
2004-12-01 15:39:14 +05:00
|
|
|
// $Header$
|
2004-01-07 20:46:21 +05:00
|
|
|
|
|
|
|
#include "GEOMToolsGUI.h"
|
2004-12-01 15:39:14 +05:00
|
|
|
#include "GeometryGUI.h"
|
|
|
|
#include "GEOM_Actor.h"
|
|
|
|
#include "GEOMBase.h"
|
|
|
|
#include "GEOM_Operation.h"
|
|
|
|
#include "GEOM_Displayer.h"
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
#include <SUIT_Session.h>
|
|
|
|
#include <SUIT_Application.h>
|
|
|
|
#include <SUIT_OverrideCursor.h>
|
|
|
|
#include <SUIT_MessageBox.h>
|
|
|
|
#include <SUIT_Tools.h>
|
|
|
|
#include <SUIT_FileDlg.h>
|
|
|
|
#include <SUIT_Desktop.h>
|
|
|
|
|
|
|
|
#include <SalomeApp_Application.h>
|
|
|
|
#include <SalomeApp_Study.h>
|
|
|
|
|
|
|
|
//#include "OCCViewer_Viewer3d.h"
|
|
|
|
//#include "VTKViewer_ViewWindow.h"
|
|
|
|
//#include "VTKViewer_RenderWindowInteractor.h"
|
2004-01-07 20:46:21 +05:00
|
|
|
|
|
|
|
#include "SALOME_ListIteratorOfListIO.hxx"
|
2005-06-02 13:17:09 +06:00
|
|
|
//#include "SALOMEGUI_ImportOperation.h"
|
|
|
|
//#include "SALOMEGUI_QtCatchCorbaException.hxx"
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
#include <qapplication.h>
|
|
|
|
#include <qmap.h>
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
#include "utilities.h"
|
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;
|
2004-06-16 21:24:55 +06:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
#include "SALOMEDSClient.hxx"
|
|
|
|
#include "SALOMEDS_SObject.hxx"
|
|
|
|
#include "SALOMEDS_Study.hxx"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
//=======================================================================
|
|
|
|
// function : getFileName
|
|
|
|
// purpose : Selection of a file name for Import/Export. Returns also
|
|
|
|
// the selected file type code through <filter> argument.
|
|
|
|
//=======================================================================
|
|
|
|
static QString getFileName( QWidget* parent,
|
|
|
|
const QString& initial,
|
|
|
|
const FilterMap& filterMap,
|
|
|
|
const QString& caption,
|
|
|
|
bool open,
|
|
|
|
QString& format )
|
|
|
|
{
|
|
|
|
static QString lastUsedFilter;
|
|
|
|
QStringList filters;
|
|
|
|
for ( FilterMap::const_iterator it = filterMap.begin(); it != filterMap.end(); ++it )
|
|
|
|
filters.push_back( it.key() );
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_FileDlg* fd = new SUIT_FileDlg( parent, open, true, true );
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( !caption.isEmpty() )
|
|
|
|
fd->setCaption( caption );
|
|
|
|
|
|
|
|
if ( !initial.isEmpty() )
|
|
|
|
fd->setSelection( initial );
|
|
|
|
|
|
|
|
if ( !lastUsedFilter.isEmpty() && filterMap.contains( lastUsedFilter ) )
|
|
|
|
fd->setSelectedFilter( lastUsedFilter );
|
|
|
|
|
|
|
|
fd->setFilters( filters );
|
|
|
|
|
|
|
|
fd->exec();
|
|
|
|
QString filename = fd->selectedFile();
|
|
|
|
format = filterMap[fd->selectedFilter()];
|
|
|
|
lastUsedFilter = fd->selectedFilter();
|
|
|
|
delete fd;
|
|
|
|
qApp->processEvents();
|
|
|
|
return filename;
|
|
|
|
}
|
|
|
|
|
2004-01-07 20:46:21 +05:00
|
|
|
//=======================================================================
|
|
|
|
// function : GEOMToolsGUI()
|
|
|
|
// purpose : Constructor
|
|
|
|
//=======================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOMToolsGUI::GEOMToolsGUI( GeometryGUI* parent )
|
|
|
|
: GEOMGUI( parent )
|
2004-01-07 20:46:21 +05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : ~GEOMToolsGUI()
|
|
|
|
// purpose : Destructor
|
|
|
|
//=======================================================================
|
|
|
|
GEOMToolsGUI::~GEOMToolsGUI()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : OnGUIEvent()
|
|
|
|
// purpose :
|
|
|
|
//=======================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
bool GEOMToolsGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
|
2004-01-07 20:46:21 +05:00
|
|
|
{
|
2005-06-02 13:17:09 +06: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 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 413: // SETTINGS - ISOS
|
|
|
|
{
|
2004-12-01 15:39:14 +05:00
|
|
|
OnSettingsIsos();
|
2004-01-07 20:46:21 +05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 414: // SETTINGS : STEP VALUE FOR SPIN BOXES
|
|
|
|
{
|
2004-12-01 15:39:14 +05:00
|
|
|
OnSettingsStep();
|
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 5104: // LOAD SCRIPT
|
|
|
|
{
|
2004-12-01 15:39:14 +05:00
|
|
|
OnLoadScript();
|
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 9024 : // OPEN - OBJBROSER POPUP
|
|
|
|
{
|
2004-12-01 15:39:14 +05:00
|
|
|
OnOpen();
|
2004-01-07 20:46:21 +05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
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()
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
/*
|
2004-12-01 15:39:14 +05:00
|
|
|
SALOME_Selection* Sel = SALOME_Selection::Selection(
|
|
|
|
QAD_Application::getDesktop()->getActiveStudy()->getSelection() );
|
|
|
|
|
|
|
|
if ( Sel->IObjectCount() == 0 )
|
2004-01-07 20:46:21 +05:00
|
|
|
return;
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(Study) aStudy = QAD_Application::getDesktop()->getActiveStudy()->getStudyDocument();
|
2004-12-01 15:39:14 +05: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 ) {
|
|
|
|
QAD_MessageBox::warn1 ( (QWidget*)QAD_Application::getDesktop(),
|
|
|
|
QObject::tr("WRN_WARNING"),
|
|
|
|
QObject::tr("WRN_STUDY_LOCKED"),
|
|
|
|
QObject::tr("BUT_OK") );
|
|
|
|
return;
|
|
|
|
}
|
2004-12-17 16:18:33 +05:00
|
|
|
|
|
|
|
// VSR 17/11/04: check if all objects selected belong to GEOM component --> start
|
|
|
|
QString aParentComponent = ((SALOMEGUI_Desktop*)QAD_Application::getDesktop())->getComponentFromSelection();
|
|
|
|
if ( aParentComponent != QAD_Application::getDesktop()->getActiveComponent() ) {
|
|
|
|
QAD_MessageBox::warn1 ( (QWidget*)QAD_Application::getDesktop(),
|
|
|
|
QObject::tr("ERR_ERROR"),
|
|
|
|
QObject::tr("NON_GEOM_OBJECTS_SELECTED").arg(QAD_Application::getDesktop()->getComponentUserName( "GEOM" )),
|
|
|
|
QObject::tr("BUT_OK") );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// VSR 17/11/04: check if all objects selected belong to GEOM component <-- finish
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( QAD_MessageBox::warn2( QAD_Application::getDesktop(),
|
|
|
|
tr( "GEOM_WRN_WARNING" ),
|
|
|
|
tr( "GEOM_REALLY_DELETE" ),
|
|
|
|
tr( "GEOM_BUT_YES" ),
|
|
|
|
tr( "GEOM_BUT_NO" ), 1, 0, 0 ) != 1 )
|
2004-01-07 20:46:21 +05:00
|
|
|
return;
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2004-01-07 20:46:21 +05:00
|
|
|
int nbSf = QAD_Application::getDesktop()->getActiveStudy()->getStudyFramesCount();
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2004-01-07 20:46:21 +05:00
|
|
|
Standard_Boolean found;
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(GenericAttribute) anAttr;
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
SALOME_ListIteratorOfListIO It( Sel->StoredIObjects() );
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2004-01-28 19:08:37 +05:00
|
|
|
QAD_Operation* op = new SALOMEGUI_ImportOperation( QAD_Application::getDesktop()->getActiveStudy() );
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2004-01-28 19:08:37 +05:00
|
|
|
op->start();
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
Standard_Boolean deleted = false;
|
|
|
|
|
|
|
|
for ( ;It.More();It.Next() )
|
|
|
|
{
|
|
|
|
Handle( SALOME_InteractiveObject ) IObject = It.Value();
|
|
|
|
|
|
|
|
if ( !IObject->hasEntry() )
|
|
|
|
continue;
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(SObject) SO ( aStudy->FindObjectID( IObject->getEntry() ) );
|
|
|
|
_PTR(AttributeIOR) anIOR;
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
// Erase child graphical objects
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(ChildIterator) it ( aStudy->NewChildIterator( SO ) );
|
2004-12-01 15:39:14 +05:00
|
|
|
for ( ; it->More();it->Next() )
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(SObject) CSO ( it->Value() );
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
if ( CSO->FindAttribute( anAttr, "AttributeIOR" ) )
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
anIOR = anAttr;
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
// Delete child( s ) shape in Client :
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
const TCollection_AsciiString ASCior( (char*)anIOR->Value().c_str() ) ;
|
2004-12-01 15:39:14 +05:00
|
|
|
GeometryGUI::GetGeomGUI()->GetShapeReader().RemoveShapeFromBuffer( ASCior );
|
|
|
|
|
|
|
|
for ( int i = 0; i < nbSf; i++ )
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOM::GEOM_Object_var aGeomObj = GEOM::GEOM_Object::_narrow( dynamic_cast<SALOMEDS_SObject*>(CSO.get())->GetObject() );
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( !aGeomObj->_is_nil() )
|
|
|
|
GEOM_Displayer().Erase( aGeomObj, true );
|
|
|
|
}
|
2004-01-07 20:46:21 +05:00
|
|
|
}
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
// Erase main graphical object
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
for ( int i = 0; i < nbSf; i++ )
|
|
|
|
{
|
|
|
|
QAD_StudyFrame* sf = QAD_Application::getDesktop()->getActiveStudy()->getStudyFrame( i );
|
|
|
|
GEOM_Displayer().Erase( IObject, true );
|
|
|
|
}
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
// Delete main shape in Client :
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
if ( SO->FindAttribute( anAttr, "AttributeIOR" ) )
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
anIOR = anAttr;
|
|
|
|
const TCollection_AsciiString ASCIor( (char*)anIOR->Value().c_str() ) ;
|
2004-12-01 15:39:14 +05:00
|
|
|
GeometryGUI::GetGeomGUI()->GetShapeReader().RemoveShapeFromBuffer( ASCIor );
|
|
|
|
}
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
// Erase objects in Study
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(SObject) obj ( aStudy->FindObjectID( IObject->getEntry() ) );
|
|
|
|
if ( obj )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
_PTR(StudyBuilder) aStudyBuilder (aStudy->NewBuilder());
|
2004-12-01 15:39:14 +05:00
|
|
|
aStudyBuilder->RemoveObject( obj );
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOM::GEOM_Object_var aGeomObj = GEOM::GEOM_Object::_narrow(dynamic_cast<SALOMEDS_SObject*>(obj.get())->GetObject());
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( !aGeomObj->_is_nil() )
|
|
|
|
GeometryGUI::GetGeomGUI()->GetGeomGen()->RemoveObject( aGeomObj );
|
|
|
|
|
|
|
|
deleted = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( deleted )
|
|
|
|
op->finish();
|
|
|
|
else
|
|
|
|
op->abort();
|
2004-01-28 19:08:37 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
// Clear any previous selection
|
2004-12-01 15:39:14 +05:00
|
|
|
Sel->ClearIObjects();
|
2004-01-07 20:46:21 +05:00
|
|
|
QAD_Application::getDesktop()->getActiveStudy()->updateObjBrowser();
|
2005-06-02 13:17:09 +06:00
|
|
|
*/
|
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-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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-06-02 13:17:09 +06:00
|
|
|
SUIT_Application* app = getGeometryGUI()->getApp();
|
|
|
|
if (! app) return false;
|
|
|
|
|
|
|
|
SalomeApp_Study* stud = dynamic_cast<SalomeApp_Study*> ( app->activeStudy() );
|
|
|
|
if ( !stud ) {
|
|
|
|
cout << "FAILED to cast active study to SalomeApp_Study" << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
_PTR(Study) aStudy = stud->studyDS();
|
2004-12-01 15:39:14 +05: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 ) {
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_MessageBox::warn1 ( app->desktop(),
|
|
|
|
QObject::tr("WRN_WARNING"),
|
|
|
|
QObject::tr("WRN_STUDY_LOCKED"),
|
|
|
|
QObject::tr("BUT_OK") );
|
2004-12-01 15:39:14 +05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOM::GEOM_Gen_var eng = GeometryGUI::GetGeomGen();
|
|
|
|
if ( CORBA::is_nil( eng ) ) {
|
|
|
|
SUIT_MessageBox::error1( app->desktop(),
|
|
|
|
QObject::tr("WRN_WARNING"),
|
|
|
|
QObject::tr( "GEOM Engine is not started" ),
|
|
|
|
QObject::tr("BUT_OK") );
|
|
|
|
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;
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
GEOM::GEOM_Object_var anObj;
|
|
|
|
|
|
|
|
// Obtain a list of available import formats
|
|
|
|
FilterMap aMap;
|
|
|
|
GEOM::string_array_var aFormats, aPatterns;
|
|
|
|
aInsOp->ImportTranslators( aFormats, aPatterns );
|
2005-06-02 13:17:09 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
for ( int i = 0, n = aFormats->length(); i < n; i++ )
|
|
|
|
aMap.insert( (char*)aPatterns[i], (char*)aFormats[i] );
|
|
|
|
|
|
|
|
QString fileType;
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
QString file = getFileName(app->desktop(), "", aMap, tr("GEOM_MEN_IMPORT"), true, fileType );
|
2004-12-01 15:39:14 +05:00
|
|
|
if( file.isEmpty() || fileType.isEmpty() )
|
|
|
|
return false;
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOM_Operation* anOp = new GEOM_Operation( app, aInsOp.in() );
|
2004-12-01 15:39:14 +05:00
|
|
|
try {
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_OverrideCursor wc;
|
|
|
|
|
|
|
|
app->putInfo( tr("GEOM_PRP_LOADING").arg(SUIT_Tools::file( file, /*withExten=*/true )) );
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
anOp->start();
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
anObj = aInsOp->Import( file.latin1(), fileType.latin1() );
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( !anObj->_is_nil() && aInsOp->IsDone() ) {
|
|
|
|
anObj->SetName( GEOMBase::GetDefaultName( QObject::tr( "GEOM_IMPORT" ) ).latin1() );
|
2005-06-02 13:17:09 +06:00
|
|
|
QString aPublishObjName = GEOMBase::GetDefaultName( SUIT_Tools::file( file, /*withExten=*/true ));
|
|
|
|
GeometryGUI::GetGeomGen()->PublishInStudy(dynamic_cast<SALOMEDS_Study*>(aStudy.get())->GetStudy(),
|
|
|
|
SALOMEDS::SObject::_nil(),
|
|
|
|
anObj,
|
|
|
|
aPublishObjName );
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOM_Displayer( stud ).Display( anObj.in() );
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
anOp->commit();
|
2004-01-07 20:46:21 +05:00
|
|
|
}
|
2004-12-01 15:39:14 +05:00
|
|
|
else {
|
|
|
|
anOp->abort();
|
2005-06-02 13:17:09 +06:00
|
|
|
wc.suspend();
|
|
|
|
SUIT_MessageBox::error1( app->desktop(),
|
|
|
|
QObject::tr( "GEOM_ERROR" ),
|
|
|
|
QObject::tr("GEOM_PRP_ABORT") + "\n" + QString( aInsOp->GetErrorCode() ),
|
|
|
|
QObject::tr("BUT_OK") );
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
}
|
2005-06-02 13:17:09 +06:00
|
|
|
catch( const SALOME::SALOME_Exception& S_ex ) {
|
|
|
|
//QtCatchCorbaException(S_ex);
|
2004-12-01 15:39:14 +05:00
|
|
|
anOp->abort();
|
|
|
|
return false;
|
2004-01-07 20:46:21 +05:00
|
|
|
}
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2004-01-07 20:46:21 +05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=====================================================================================
|
|
|
|
// 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
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
/*
|
2004-01-07 20:46:21 +05:00
|
|
|
SALOMEDS::Study_var aStudy = QAD_Application::getDesktop()->getActiveStudy()->getStudyDocument();
|
2004-12-01 15:39:14 +05:00
|
|
|
GEOM::GEOM_IInsertOperations_var aInsOp = GeometryGUI::GetGeomGUI()->GetGeomGen()->GetIInsertOperations( aStudy->StudyId() );
|
|
|
|
if ( aInsOp->_is_nil() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Obtain a list of available export formats
|
|
|
|
FilterMap aMap;
|
|
|
|
GEOM::string_array_var aFormats, aPatterns;
|
|
|
|
aInsOp->ExportTranslators( aFormats, aPatterns );
|
|
|
|
for ( int i = 0, n = aFormats->length(); i < n; i++ )
|
|
|
|
aMap.insert( (char*)aPatterns[i], (char*)aFormats[i] );
|
2004-01-07 20:46:21 +05:00
|
|
|
|
|
|
|
SALOME_Selection* Sel = SALOME_Selection::Selection(QAD_Application::getDesktop()->getActiveStudy()->getSelection());
|
|
|
|
SALOME_ListIteratorOfListIO It( Sel->StoredIObjects() );
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
QString fileType;
|
|
|
|
QString file = getFileName(QAD_Application::getDesktop(),
|
|
|
|
QString( IObject->getName() ),
|
|
|
|
aMap,
|
|
|
|
tr("GEOM_MEN_EXPORT"),
|
|
|
|
false,
|
|
|
|
fileType);
|
|
|
|
|
|
|
|
// User has pressed "Cancel" --> stop the operation
|
|
|
|
if ( file.isEmpty() || fileType.isEmpty() )
|
|
|
|
return false;
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
// Standard_Boolean result = BRepTools::Write(Shape->Shape(), strdup(file.latin1()) );
|
|
|
|
try {
|
|
|
|
QAD_WaitCursor wc;
|
|
|
|
aInsOp->Export( anObj, file, fileType.latin1() );
|
|
|
|
if ( !aInsOp->IsDone() ) {
|
|
|
|
wc.stop();
|
|
|
|
QAD_MessageBox::error1( QAD_Application::getDesktop(),
|
|
|
|
QObject::tr( "GEOM_ERROR" ),
|
|
|
|
QObject::tr("GEOM_PRP_ABORT") + "\n" + QString( aInsOp->GetErrorCode() ),
|
|
|
|
QObject::tr("BUT_OK") );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const SALOME::SALOME_Exception& S_ex) {
|
|
|
|
QtCatchCorbaException(S_ex);
|
2004-01-07 20:46:21 +05:00
|
|
|
}
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2005-06-02 13:17:09 +06:00
|
|
|
*/
|
2004-12-01 15:39:14 +05:00
|
|
|
return true;
|
2004-01-07 20:46:21 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=====================================================================================
|
|
|
|
// EXPORTED METHODS
|
|
|
|
//=====================================================================================
|
|
|
|
extern "C"
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOMGUI* GetLibGUI( GeometryGUI* parent )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
return new GEOMToolsGUI( parent );
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2004-01-07 20:46:21 +05:00
|
|
|
}
|