geom/src/GEOMToolsGUI/GEOMToolsGUI.cxx

842 lines
24 KiB
C++
Raw Normal View History

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.salome-platform.org/ or email : webmaster.salome@opencascade.com
2004-01-07 20:46:21 +05:00
//
//
//
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 "GEOMBase_aWarningDlg.h"
2004-12-01 15:39:14 +05:00
#include "GEOM_Operation.h"
#include "GEOM_Displayer.h"
2004-01-07 20:46:21 +05: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 <SUIT_ViewModel.h>
#include <SalomeApp_Application.h>
#include <SalomeApp_Study.h>
#include <LightApp_SelectionMgr.h>
#include <GEOMImpl_Types.hxx>
#include <SALOME_ListIteratorOfListIO.hxx>
#include <SALOME_Prs.h>
2004-01-07 20:46:21 +05:00
#include "utilities.h"
// QT Includes
2004-12-01 15:39:14 +05:00
#include <qapplication.h>
#include <qmap.h>
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;
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,
const QStringList filters,
2004-12-01 15:39:14 +05:00
const QString& caption,
bool open,
QString& format )
{
static QString lastUsedFilter;
//QStringList filters;
QString aBrepFilter;
for ( FilterMap::const_iterator it = filterMap.begin(); it != filterMap.end(); ++it ) {
//filters.push_back( it.key() );
if (it.key().contains("BREP", false)) {
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() )
fd->setCaption( caption );
if ( !initial.isEmpty() )
fd->setSelection( initial );
fd->setFilters( filters );
2004-12-01 15:39:14 +05:00
if ( !lastUsedFilter.isEmpty() && filterMap.contains( lastUsedFilter ) )
fd->setSelectedFilter( lastUsedFilter );
else {
if (!aBrepFilter.isEmpty()) {
fd->setSelectedFilter(aBrepFilter);
}
}
2004-12-01 15:39:14 +05:00
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
//=======================================================================
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 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 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;
}
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;
}
2004-01-07 20:46:21 +05:00
//===============================================================================
// function : OnEditDelete()
// purpose :
//===============================================================================
void GEOMToolsGUI::OnEditDelete()
{
SALOME_ListIO selected;
SalomeApp_Application* app =
dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
if ( app ) {
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
if ( aSelMgr && appStudy ) {
aSelMgr->selectedObjects( selected, QString::null, false );
if ( !selected.IsEmpty() ) {
_PTR(Study) aStudy = appStudy->studyDS();
bool aLocked = (_PTR(AttributeStudyProperties)(aStudy->GetProperties()))->IsLocked();
if ( aLocked ) {
SUIT_MessageBox::warn1 ( app->desktop(),
QObject::tr("WRN_WARNING"),
QObject::tr("WRN_STUDY_LOCKED"),
QObject::tr("BUT_OK") );
return;
}
// VSR 17/11/04: check if all objects selected belong to GEOM component --> start
// modifications of ASV 01.06.05
QString parentComp = getParentComponent( aStudy, selected );
CORBA::String_var geomIOR = app->orb()->object_to_string( GeometryGUI::GetGeomGen() );
QString geomComp = getParentComponent( aStudy->FindObjectIOR( geomIOR.in() ) );
if ( parentComp != geomComp ) {
SUIT_MessageBox::warn1 ( app->desktop(),
QObject::tr("ERR_ERROR"),
QObject::tr("NON_GEOM_OBJECTS_SELECTED").arg( getGeometryGUI()->moduleName() ),
QObject::tr("BUT_OK") );
return;
}
// VSR 17/11/04: check if all objects selected belong to GEOM component <-- finish
QString aNameList;
int nbSel = 0;
//Get Main Objects Names
Handle(SALOME_InteractiveObject) anIObject;
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() )
{
QString aName = It.Value()->getName();
if ( aName != "" && aName.ref(0) != '*') {
aNameList.append(" - " + aName + "\n");
nbSel++;
}
anIObject = It.Value();
}
// Append Child Names of Last Selected Object
_PTR(SObject) obj ( aStudy->FindObjectID( anIObject->getEntry() ) );
for (_PTR(ChildIterator) iit (aStudy->NewChildIterator(obj)); iit->More(); iit->Next()) {
_PTR(SObject) child (iit->Value());
QString aName = child->GetName();
if (aName != "" && aName.ref(0) != '*') {
aNameList.append(" - " + aName + "\n");
nbSel++;
//append childs child
for (_PTR(ChildIterator) iitt(aStudy->NewChildIterator(child)); iitt->More(); iitt->Next()) {
_PTR(SObject) childchild(iitt->Value());
QString aName = childchild->GetName();
if (aName != "" && aName.ref(0) != '*') {
aNameList.append(" - " + aName + "\n");
nbSel++;
for (_PTR(ChildIterator) itt(aStudy->NewChildIterator(childchild)); itt->More(); itt->Next())
{
_PTR(SObject) childs(itt->Value());
QString aName = childs->GetName();
if (aName != "" && aName.ref(0) != '*') {
aNameList.append(" - " + aName + "\n");
nbSel++;
}
}
}
}
}
} //end of child append
GEOMBase_aWarningDlg* Dialog = new GEOMBase_aWarningDlg( app->desktop(), QObject::tr( "GEOM_WRN_WARNING" ), aNameList, nbSel);
int r = Dialog->exec();
if (!r)
return;
// QAD_Operation* op = new SALOMEGUI_ImportOperation(.....);
// op->start();
// prepare list of SALOME_Views
QPtrList<SALOME_View> views;
SALOME_View* view;
// fill the list
ViewManagerList vmans = app->viewManagers();
SUIT_ViewManager* vman;
for ( vman = vmans.first(); vman; vman = vmans.next() ) {
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());
_PTR(GenericAttribute) anAttr;
GEOM_Displayer* disp = new GEOM_Displayer( appStudy );
_PTR(SComponent) aGeom ( aStudy->FindComponent("GEOM") );
if ( !aGeom )
return;
// MAIN LOOP OF SELECTED OBJECTS
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
Handle(SALOME_InteractiveObject) io = It.Value();
if ( !io->hasEntry() )
continue;
_PTR(SObject) obj ( aStudy->FindObjectID( io->getEntry() ) );
// disable removal of "Geometry" component object
if ( !strcmp( obj->GetIOR().c_str(), geomIOR ) )
continue;
//If the object has been used to create another one,then it can't be deleted
_PTR(ChildIterator) it (aStudy->NewChildIterator(aGeom));
for ( it->InitEx( true ); it->More(); it->Next() ) {
_PTR(SObject) chobj (it->Value());
if(CheckSubObjectInUse(chobj, obj, aStudy)) return;
//check subobjects
for (_PTR(ChildIterator) it (aStudy->NewChildIterator(obj)); it->More(); it->Next()) {
_PTR(SObject) child (it->Value());
if(CheckSubObjectInUse( chobj, child, aStudy)) return;
}
}
RemoveObjectWithChildren(obj, aStudy, views, disp);
// Remove objects from Study
aStudyBuilder->RemoveObjectWithChildren( obj );
//deleted = true;
} // MAIN LOOP of selected
selected.Clear();
aSelMgr->setSelectedObjects( selected );
getGeometryGUI()->updateObjBrowser();
} // if ( selected not empty )
} // if ( selMgr && appStudy )
2005-09-13 17:09:57 +06:00
app->updateActions(); //SRN: To update a Save button in the toolbar
} // if ( app )
// if ( deleted )
// op->finish();
// else
// op->abort();
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() );
//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
bool aLocked = (_PTR(AttributeStudyProperties)(aStudy->GetProperties()))->IsLocked();
2004-12-01 15:39:14 +05:00
if ( aLocked ) {
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;
}
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-12-01 15:39:14 +05:00
GEOM::GEOM_Object_var anObj;
// Obtain a list of available import formats
FilterMap aMap;
QStringList filters;
2004-12-01 15:39:14 +05:00
GEOM::string_array_var aFormats, aPatterns;
aInsOp->ImportTranslators( 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-12-01 15:39:14 +05:00
QString fileType;
QString fileName = getFileName(app->desktop(), "", aMap, filters,
2005-09-13 17:09:57 +06:00
tr("GEOM_MEN_IMPORT"), true, fileType);
if (fileType.isEmpty() )
{
// Trying to detect file type
QFileInfo aFileInfo( fileName );
QString aPossibleType = (aFileInfo.extension(false)).upper() ;
if ( (aMap.values()).contains(aPossibleType) )
fileType = aPossibleType;
}
2005-09-13 17:09:57 +06:00
if (fileName.isEmpty() || fileType.isEmpty())
2004-12-01 15:39:14 +05:00
return false;
2005-09-13 17:09:57 +06:00
GEOM_Operation* anOp = new GEOM_Operation (app, aInsOp.in());
2004-12-01 15:39:14 +05:00
try {
SUIT_OverrideCursor wc;
2005-09-13 17:09:57 +06:00
app->putInfo(tr("GEOM_PRP_LOADING").arg(SUIT_Tools::file(fileName, /*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
2005-09-13 17:09:57 +06:00
CORBA::String_var fileN = fileName.latin1();
CORBA::String_var fileT = fileType.latin1();
anObj = aInsOp->Import(fileN, fileT);
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
if ( !anObj->_is_nil() && aInsOp->IsDone() ) {
2005-09-13 17:09:57 +06:00
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);
2004-12-01 15:39:14 +05:00
GEOM_Displayer( stud ).Display( anObj.in() );
2004-12-01 15:39:14 +05:00
// update data model and object browser
getGeometryGUI()->updateObjBrowser( true );
anOp->commit();
2004-01-07 20:46:21 +05:00
}
2004-12-01 15:39:14 +05:00
else {
anOp->abort();
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
}
}
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
app->updateActions(); //SRN: To update a Save button in the toolbar
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
{
SalomeApp_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();
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;
// 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 );
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,
tr("GEOM_MEN_EXPORT"), false, fileType);
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();
2004-12-01 15:39:14 +05:00
aInsOp->Export( anObj, file, fileType.latin1() );
if ( aInsOp->IsDone() )
anOp->commit();
else
{
anOp->abort();
wc.suspend();
SUIT_MessageBox::error1( app->desktop(),
QObject::tr( "GEOM_ERROR" ),
QObject::tr("GEOM_PRP_ABORT") + "\n" + QString( aInsOp->GetErrorCode() ),
QObject::tr("BUT_OK") );
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
}
2004-12-01 15:39:14 +05:00
}
return true;
2004-01-07 20:46:21 +05:00
}
QString GEOMToolsGUI::getParentComponent( _PTR( Study ) study, const SALOME_ListIO& iobjs )
{
QString parentComp;
for ( SALOME_ListIteratorOfListIO it( iobjs ); it.More(); it.Next() ) {
Handle(SALOME_InteractiveObject) io = it.Value();
if ( !io->hasEntry() )
continue;
QString compName = getParentComponent( study->FindObjectID( io->getEntry() ) );
if ( parentComp.isNull() )
parentComp = compName;
else if ( parentComp.compare( compName) != 0 ) { // objects belonging to different components are selected
parentComp = QString::null;
break;
}
}
return parentComp;
}
QString GEOMToolsGUI::getParentComponent( _PTR( SObject ) obj )
{
if ( obj ) {
_PTR(SComponent) comp = obj->GetFatherComponent();
if ( comp ) {
_PTR(GenericAttribute) anAttr;
if ( comp->FindAttribute( anAttr, "AttributeName") ) {
_PTR(AttributeName) aName( anAttr );
return QString( aName->Value().c_str() );
}
}
}
return QString();
}
2004-01-07 20:46:21 +05:00
//=====================================================================================
// function : RemoveObjectWithChildren
// purpose : to be used by OnEditDelete() method
//=====================================================================================
void GEOMToolsGUI::RemoveObjectWithChildren(_PTR(SObject) obj,
_PTR(Study) aStudy,
QPtrList<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());
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
SALOME_View* view = views.first();
for (; view; view = views.next()) {
disp->Erase(geomObj, true, view);
}
// Remove object from Engine
GeometryGUI::GetGeomGen()->RemoveObject( geomObj );
}
}
}
//=====================================================================================
// function : CheckSubObjectInUse
// purpose : to be used by OnEditDelete() method
//=====================================================================================
bool GEOMToolsGUI::CheckSubObjectInUse(_PTR(SObject) checkobj,
_PTR(SObject) remobj,
_PTR(Study) aStudy)
{
CORBA::Object_var corbaObj = GeometryGUI::ClientSObjectToObject(checkobj);
GEOM::GEOM_Object_var geomObj = GEOM::GEOM_Object::_narrow( corbaObj );
if( CORBA::is_nil(geomObj) )
return false;
GEOM::ListOfGO_var list = geomObj->GetDependency();
if( list->length() > 1 )
for(int i = 0; i < list->length(); i++ ){
CORBA::Object_var corbaObj_rem = GeometryGUI::ClientSObjectToObject(remobj);
GEOM::GEOM_Object_var geomObj_rem = GEOM::GEOM_Object::_narrow( corbaObj_rem );
if( list[i]->_is_equivalent( geomObj_rem ) ){
SalomeApp_Application* app =
dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
SUIT_MessageBox::warn1 ( app->desktop(),
QObject::tr("WRN_WARNING"),
QObject::tr("DEP_OBJECT"),
QObject::tr("BUT_OK") );
return true;
}
}
return false;
}
//=================================================================================
// 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"
{
GEOMTOOLSGUI_EXPORT
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
}