2012-08-09 13:58:02 +06:00
|
|
|
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
|
2004-12-01 15:39:14 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2005-08-18 12:15:31 +06:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// 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.
|
2005-08-18 12:15:31 +06:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// 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.
|
2005-08-18 12:15:31 +06:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// 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
|
2005-08-18 12:15:31 +06:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2004-12-01 15:39:14 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
|
|
|
|
// GEOM GEOMGUI : GUI for Geometry component
|
|
|
|
// File : GEOMToolsGUI_1.cxx
|
|
|
|
// Author : Sergey ANIKIN, Open CASCADE S.A.S. (sergey.anikin@opencascade.com)
|
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <PyConsole_Console.h>
|
2005-06-09 15:10:51 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
#include "GEOMToolsGUI.h"
|
2005-06-02 13:17:09 +06:00
|
|
|
#include "GEOMToolsGUI_TransparencyDlg.h"
|
2009-02-13 17:16:39 +05:00
|
|
|
#include "GEOMToolsGUI_NbIsosDlg.h"
|
2012-08-09 13:58:02 +06:00
|
|
|
#include "GEOMToolsGUI_DeflectionDlg.h"
|
|
|
|
#include "GEOMToolsGUI_MarkerDlg.h"
|
|
|
|
#include "GEOMToolsGUI_PublishDlg.h"
|
|
|
|
#include "GEOMToolsGUI_MaterialPropertiesDlg.h"
|
|
|
|
#include "GEOMToolsGUI_LineWidthDlg.h"
|
2013-02-12 17:35:16 +06:00
|
|
|
#include <Material_Model.h>
|
|
|
|
|
|
|
|
#include <GEOM_VTKPropertyMaterial.hxx>
|
2009-02-13 17:16:39 +05:00
|
|
|
|
|
|
|
#include <GeometryGUI.h>
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <GeometryGUI_Operations.h>
|
|
|
|
#include <GEOM_Constants.h>
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <GEOM_Displayer.h>
|
2005-06-02 13:17:09 +06:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <GEOMBase.h>
|
|
|
|
#include <GEOM_Actor.h>
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <Basics_OCCTVersion.hxx>
|
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <SALOME_ListIO.hxx>
|
|
|
|
#include <SALOME_ListIteratorOfListIO.hxx>
|
2005-06-02 13:17:09 +06:00
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
#include <SOCC_Prs.h>
|
|
|
|
|
|
|
|
#include <SVTK_Prs.h>
|
2005-10-05 12:28:23 +06:00
|
|
|
#include <SVTK_ViewModel.h>
|
2005-06-02 13:17:09 +06:00
|
|
|
#include <SVTK_ViewWindow.h>
|
2006-02-07 20:58:35 +05:00
|
|
|
#include <SVTK_View.h>
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2005-10-05 12:28:23 +06:00
|
|
|
#include <OCCViewer_ViewModel.h>
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
#include <SUIT_ViewManager.h>
|
|
|
|
#include <SUIT_Desktop.h>
|
|
|
|
#include <SUIT_ResourceMgr.h>
|
|
|
|
#include <SUIT_Session.h>
|
|
|
|
#include <SUIT_OverrideCursor.h>
|
2005-06-03 16:42:52 +06:00
|
|
|
#include <SUIT_MessageBox.h>
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <SUIT_Tools.h>
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
#include <SalomeApp_Application.h>
|
2005-06-03 16:42:52 +06:00
|
|
|
#include <SalomeApp_Study.h>
|
|
|
|
#include <SalomeApp_Module.h>
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2006-03-13 20:11:51 +05:00
|
|
|
#include <LightApp_SelectionMgr.h>
|
|
|
|
#include <LightApp_NameDlg.h>
|
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
#include <GEOMImpl_Types.hxx>
|
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
#include "utilities.h"
|
|
|
|
|
|
|
|
// OCCT Includes
|
2004-12-01 15:39:14 +05:00
|
|
|
#include <AIS_Drawer.hxx>
|
|
|
|
#include <Prs3d_IsoAspect.hxx>
|
2008-03-07 12:45:34 +05:00
|
|
|
#include <Prs3d_PointAspect.hxx>
|
|
|
|
#include <Graphic3d_AspectMarker3d.hxx>
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <Graphic3d_AspectLine3d.hxx>
|
|
|
|
#include <AIS_ListIteratorOfListOfInteractive.hxx>
|
|
|
|
#include <AIS_ListOfInteractive.hxx>
|
|
|
|
|
|
|
|
|
|
|
|
#if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
|
|
|
|
#include <TColStd_HArray1OfByte.hxx>
|
|
|
|
#else
|
|
|
|
#include <Graphic3d_HArray1OfBytes.hxx>
|
|
|
|
#endif
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2005-08-18 12:15:31 +06:00
|
|
|
// QT Includes
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <QAction>
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <QColorDialog>
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <QInputDialog>
|
|
|
|
#include <QFileDialog>
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <QList>
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
#include <QGridLayout>
|
|
|
|
#include <QGroupBox>
|
|
|
|
#include <QSpinBox>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QKeyEvent>
|
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
// VTK includes
|
|
|
|
#include <vtkRenderer.h>
|
2005-06-02 13:17:09 +06:00
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
class QtxDialog;
|
2012-10-08 17:16:36 +06:00
|
|
|
// If the next macro is defined, autocolor feature works for all sub-shapes;
|
|
|
|
// if it is undefined, autocolor feature works for groups only
|
2012-12-13 14:40:36 +06:00
|
|
|
#define GENERAL_AUTOCOLOR
|
2012-10-08 17:16:36 +06:00
|
|
|
// Below macro, when uncommented, switches on simplified (more performant) algorithm
|
|
|
|
// of auto-color picking up
|
2012-12-13 14:40:36 +06:00
|
|
|
#define SIMPLE_AUTOCOLOR
|
2012-10-08 17:16:36 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
void GEOMToolsGUI::OnCheckGeometry()
|
|
|
|
{
|
2012-08-09 13:58:02 +06:00
|
|
|
SalomeApp_Application* app =
|
|
|
|
dynamic_cast< SalomeApp_Application* >(SUIT_Session::session()->activeApplication());
|
2009-02-13 17:16:39 +05:00
|
|
|
PyConsole_Console* pyConsole = app->pythonConsole();
|
2005-08-18 12:15:31 +06:00
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
if (pyConsole)
|
2005-06-09 15:10:51 +06:00
|
|
|
pyConsole->exec("from GEOM_usinggeom import *");
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
void GEOMToolsGUI::OnAutoColor()
|
|
|
|
{
|
|
|
|
SALOME_ListIO selected;
|
2012-08-09 13:58:02 +06:00
|
|
|
SalomeApp_Application* app =
|
|
|
|
dynamic_cast< SalomeApp_Application* >(SUIT_Session::session()->activeApplication());
|
|
|
|
if (!app)
|
2008-03-07 12:45:34 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
2012-08-09 13:58:02 +06:00
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(app->activeStudy());
|
|
|
|
if (!aSelMgr || !appStudy)
|
2008-03-07 12:45:34 +05:00
|
|
|
return;
|
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
aSelMgr->selectedObjects(selected);
|
|
|
|
if (selected.IsEmpty())
|
2008-03-07 12:45:34 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
Handle(SALOME_InteractiveObject) anIObject = selected.First();
|
|
|
|
|
|
|
|
_PTR(Study) aStudy = appStudy->studyDS();
|
2012-08-09 13:58:02 +06:00
|
|
|
_PTR(SObject) aMainSObject(aStudy->FindObjectID(anIObject->getEntry()));
|
2008-03-07 12:45:34 +05:00
|
|
|
GEOM::GEOM_Object_var aMainObject = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aMainSObject));
|
2012-08-09 13:58:02 +06:00
|
|
|
if (CORBA::is_nil(aMainObject))
|
2008-03-07 12:45:34 +05:00
|
|
|
return;
|
|
|
|
|
|
|
|
aMainObject->SetAutoColor( true );
|
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
QList<SALOMEDS::Color> aReservedColors;
|
2008-03-07 12:45:34 +05:00
|
|
|
|
|
|
|
GEOM_Displayer aDisp (appStudy);
|
|
|
|
|
|
|
|
SALOME_View* vf = aDisp.GetActiveView();
|
|
|
|
|
|
|
|
SUIT_ViewWindow* window = app->desktop()->activeWindow();
|
|
|
|
bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
|
|
|
|
bool isVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
|
|
|
|
|
|
|
|
for( _PTR(ChildIterator) it( aStudy->NewChildIterator( aMainSObject ) ); it->More(); it->Next() )
|
|
|
|
{
|
|
|
|
_PTR(SObject) aChildSObject( it->Value() );
|
|
|
|
GEOM::GEOM_Object_var aChildObject = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aChildSObject));
|
|
|
|
if( CORBA::is_nil( aChildObject ) )
|
|
|
|
continue;
|
|
|
|
|
2012-10-08 17:16:36 +06:00
|
|
|
#ifndef GENERAL_AUTOCOLOR // auto-color for groups only
|
2008-03-07 12:45:34 +05:00
|
|
|
if( aChildObject->GetType() != GEOM_GROUP )
|
|
|
|
continue;
|
2012-10-08 17:16:36 +06:00
|
|
|
#endif // GENERAL_AUTOCOLOR
|
2008-03-07 12:45:34 +05:00
|
|
|
|
2012-10-08 17:16:36 +06:00
|
|
|
#ifdef SIMPLE_AUTOCOLOR // simplified algorithm for auto-colors
|
|
|
|
SALOMEDS::Color aColor = GEOM_Displayer::getPredefinedUniqueColor();
|
|
|
|
#else // old algorithm for auto-colors
|
2008-03-07 12:45:34 +05:00
|
|
|
SALOMEDS::Color aColor = GEOM_Displayer::getUniqueColor( aReservedColors );
|
|
|
|
aReservedColors.append( aColor );
|
2012-10-08 17:16:36 +06:00
|
|
|
#endif // SIMPLE_AUTOCOLOR
|
|
|
|
aChildObject->SetColor( aColor );
|
2008-03-07 12:45:34 +05:00
|
|
|
|
|
|
|
QColor c( (int)( aColor.R * 255.0 ), (int)( aColor.G * 255.0 ), (int)( aColor.B * 255.0 ) );
|
|
|
|
|
|
|
|
SALOME_Prs* aPrs = vf->CreatePrs( aChildSObject->GetID().c_str() );
|
|
|
|
|
|
|
|
if ( isVTK )
|
|
|
|
{
|
|
|
|
SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
|
|
|
|
if ( !vtkVW )
|
2012-08-09 13:58:02 +06:00
|
|
|
return;
|
2008-03-07 12:45:34 +05:00
|
|
|
SVTK_View* aView = vtkVW->getView();
|
|
|
|
SUIT_OverrideCursor();
|
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() )
|
2012-08-09 13:58:02 +06:00
|
|
|
aView->SetColor( It.Value(), c );
|
2008-03-07 12:45:34 +05:00
|
|
|
}
|
|
|
|
else if ( isOCC )
|
|
|
|
{
|
|
|
|
OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>( window->getViewManager()->getViewModel() );
|
|
|
|
Handle(AIS_InteractiveContext) ic = vm->getAISContext();
|
|
|
|
|
|
|
|
SOCC_Prs* anOCCPrs = dynamic_cast<SOCC_Prs*>( aPrs );
|
|
|
|
if( !anOCCPrs )
|
2012-08-09 13:58:02 +06:00
|
|
|
continue;
|
2008-03-07 12:45:34 +05:00
|
|
|
|
|
|
|
AIS_ListOfInteractive aList;
|
|
|
|
anOCCPrs->GetObjects( aList );
|
|
|
|
if( !aList.Extent() )
|
2012-08-09 13:58:02 +06:00
|
|
|
continue;
|
2008-03-07 12:45:34 +05:00
|
|
|
|
|
|
|
Handle(AIS_InteractiveObject) io = aList.First();
|
|
|
|
if( io.IsNull() )
|
2012-08-09 13:58:02 +06:00
|
|
|
continue;
|
2008-03-07 12:45:34 +05:00
|
|
|
|
|
|
|
Quantity_Color aQuanColor( c.red() / 255., c.green() / 255., c.blue() / 255., Quantity_TOC_RGB );
|
|
|
|
|
|
|
|
// Set color for a point
|
|
|
|
Handle(AIS_Drawer) aCurDrawer = io->Attributes();
|
|
|
|
Handle(Prs3d_PointAspect) aCurPointAspect = aCurDrawer->PointAspect();
|
|
|
|
Quantity_Color aCurColor;
|
|
|
|
Standard_Real aCurScale;
|
|
|
|
Aspect_TypeOfMarker aCurTypeOfMarker;
|
|
|
|
aCurPointAspect->Aspect()->Values( aCurColor, aCurTypeOfMarker, aCurScale );
|
2012-08-09 13:58:02 +06:00
|
|
|
if ( aCurTypeOfMarker != Aspect_TOM_USERDEFINED ) {
|
|
|
|
aCurDrawer->SetPointAspect( new Prs3d_PointAspect( aCurTypeOfMarker, aQuanColor, aCurScale) );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Standard_Integer aWidth, aHeight;
|
|
|
|
aCurPointAspect->GetTextureSize( aWidth, aHeight );
|
|
|
|
|
|
|
|
#if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
|
|
|
|
Handle(TColStd_HArray1OfByte) aTexture = aCurPointAspect->GetTexture();
|
|
|
|
#else
|
|
|
|
Handle(Graphic3d_HArray1OfBytes) aTexture = aCurPointAspect->GetTexture();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
aCurDrawer->SetPointAspect( new Prs3d_PointAspect( aQuanColor, 1, aWidth, aHeight, aTexture ) );
|
|
|
|
}
|
2008-03-07 12:45:34 +05:00
|
|
|
ic->SetLocalAttributes( io, aCurDrawer );
|
|
|
|
|
|
|
|
io->SetColor( aQuanColor );
|
2012-08-09 13:58:02 +06:00
|
|
|
if ( io->IsKind( STANDARD_TYPE(GEOM_AISShape) ) ) {
|
|
|
|
Handle(GEOM_AISShape) aGAISShape = Handle(GEOM_AISShape)::DownCast( io );
|
|
|
|
aGAISShape->SetShadingColor( aQuanColor );
|
|
|
|
aGAISShape->storeBoundaryColors();
|
|
|
|
}
|
2008-03-07 12:45:34 +05:00
|
|
|
|
|
|
|
io->Redisplay( Standard_True );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
app->updateActions(); //SRN: To update a Save button in the toolbar
|
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnDisableAutoColor()
|
|
|
|
{
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
if( !app )
|
|
|
|
return;
|
|
|
|
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
|
|
|
if( !aSelMgr || !appStudy )
|
|
|
|
return;
|
|
|
|
|
|
|
|
aSelMgr->selectedObjects( selected );
|
|
|
|
if( selected.IsEmpty() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
Handle(SALOME_InteractiveObject) anIObject = selected.First();
|
|
|
|
|
|
|
|
_PTR(Study) aStudy = appStudy->studyDS();
|
|
|
|
_PTR(SObject) aMainSObject( aStudy->FindObjectID( anIObject->getEntry() ) );
|
|
|
|
GEOM::GEOM_Object_var aMainObject = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aMainSObject));
|
|
|
|
if( CORBA::is_nil( aMainObject ) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
aMainObject->SetAutoColor( false );
|
2012-10-08 17:16:36 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::SetColor( const QString& entry, const QColor& color, bool updateViewer )
|
|
|
|
{
|
|
|
|
if ( entry.isEmpty() || !color.isValid() ) return;
|
|
|
|
|
|
|
|
// get active application
|
|
|
|
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
if ( !app ) return;
|
|
|
|
|
|
|
|
// get current study
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
|
|
|
if ( !appStudy ) return;
|
|
|
|
|
|
|
|
// get active view
|
|
|
|
SUIT_ViewWindow* window = app->desktop()->activeWindow();
|
|
|
|
if ( !window ) return;
|
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
bool isOCC = window->getViewManager()->getType() == OCCViewer_Viewer::Type();
|
|
|
|
bool isVTK = window->getViewManager()->getType() == SVTK_Viewer::Type();
|
2012-10-08 17:16:36 +06:00
|
|
|
|
|
|
|
// get view id
|
|
|
|
int mgrId = window->getViewManager()->getGlobalId();
|
|
|
|
|
|
|
|
Handle(SALOME_InteractiveObject) IO =
|
|
|
|
new SALOME_InteractiveObject( entry.toLatin1().data(), "GEOM", "");
|
2008-03-07 12:45:34 +05:00
|
|
|
|
2012-10-08 17:16:36 +06:00
|
|
|
if ( isVTK ) {
|
|
|
|
SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
|
|
|
|
if ( !vtkVW ) return;
|
|
|
|
SVTK_View* aView = vtkVW->getView();
|
|
|
|
|
|
|
|
GEOMToolsGUI::setVtkColor( appStudy, mgrId, aView, IO, color );
|
|
|
|
if ( updateViewer ) aView->Repaint();
|
|
|
|
}
|
|
|
|
else if ( isOCC ) {
|
|
|
|
OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*> ( window->getViewManager()->getViewModel() );
|
|
|
|
Handle (AIS_InteractiveContext) ic = vm->getAISContext();
|
|
|
|
GEOMToolsGUI::setOccColor( appStudy, mgrId, ic, IO, color );
|
|
|
|
if ( updateViewer ) ic->UpdateCurrentViewer();
|
|
|
|
}
|
|
|
|
|
|
|
|
// mark study as modified
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
|
|
|
|
// update actions
|
|
|
|
app->updateActions(); //SRN: To update a Save button in the toolbar
|
2008-03-07 12:45:34 +05:00
|
|
|
}
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
void GEOMToolsGUI::OnColor()
|
|
|
|
{
|
2012-10-08 17:16:36 +06:00
|
|
|
// get active application
|
2005-06-02 13:17:09 +06:00
|
|
|
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
2012-10-08 17:16:36 +06:00
|
|
|
if ( !app ) return;
|
|
|
|
|
|
|
|
// get current study
|
2008-03-07 12:45:34 +05:00
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
2012-10-08 17:16:36 +06:00
|
|
|
if ( !appStudy ) return;
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2012-10-08 17:16:36 +06:00
|
|
|
// get selection manager
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
if ( !aSelMgr ) return;
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2012-10-08 17:16:36 +06:00
|
|
|
// get selection
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
aSelMgr->selectedObjects( selected );
|
|
|
|
if ( selected.IsEmpty() ) return;
|
|
|
|
|
|
|
|
// get active view
|
|
|
|
SUIT_ViewWindow* window = app->desktop()->activeWindow();
|
|
|
|
bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
|
|
|
|
bool isVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
|
|
|
|
|
|
|
|
// get view id
|
2013-02-12 17:35:16 +06:00
|
|
|
int mgrId = window ? window->getViewManager()->getGlobalId() : -1;
|
2012-10-08 17:16:36 +06:00
|
|
|
|
|
|
|
if ( isVTK ) {
|
|
|
|
SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
|
|
|
|
if ( !vtkVW ) return;
|
|
|
|
|
|
|
|
// get initial color (use first object from selection)
|
|
|
|
SVTK_View* aView = vtkVW->getView();
|
|
|
|
QColor color = aView->GetColor( selected.First() );
|
2013-02-12 17:35:16 +06:00
|
|
|
QVariant v = appStudy->getObjectProperty( mgrId, selected.First()->getEntry(), GEOM::propertyName( GEOM::Color ), color );
|
2012-10-08 17:16:36 +06:00
|
|
|
|
|
|
|
// show Choose Color dialog box
|
|
|
|
color = QColorDialog::getColor( v.value<QColor>(), app->desktop() );
|
|
|
|
if ( !color.isValid() ) return;
|
|
|
|
|
|
|
|
// iterate through list of objects and assign new color
|
|
|
|
SUIT_OverrideCursor();
|
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
|
|
|
|
GEOMToolsGUI::setVtkColor( appStudy, mgrId, aView, It.Value(), color );
|
|
|
|
}
|
|
|
|
aView->Repaint();
|
|
|
|
}
|
|
|
|
else if ( isOCC ) {
|
|
|
|
// find AIS interactive object (for first item in selection)
|
|
|
|
Handle(AIS_InteractiveObject) io = GEOMBase::GetAIS( selected.First() );
|
|
|
|
if ( io.IsNull() ) return;
|
|
|
|
|
|
|
|
// get initial color (use first object from selection)
|
|
|
|
Quantity_Color aColor;
|
|
|
|
io->Color( aColor );
|
|
|
|
QColor color = QColor((int)( aColor.Red() * 255.0 ),
|
|
|
|
(int)( aColor.Green() * 255.0 ),
|
|
|
|
(int)( aColor.Blue() * 255.0 ));
|
2013-02-12 17:35:16 +06:00
|
|
|
QVariant v = appStudy->getObjectProperty( mgrId, selected.First()->getEntry(), GEOM::propertyName( GEOM::Color ), color );
|
2012-10-08 17:16:36 +06:00
|
|
|
|
|
|
|
// show Choose Color dialog box
|
|
|
|
color = QColorDialog::getColor( v.value<QColor>(), app->desktop() );
|
|
|
|
if ( !color.isValid() ) return;
|
|
|
|
|
|
|
|
// iterate through list of objects and assign new color
|
|
|
|
SUIT_OverrideCursor();
|
|
|
|
OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*> ( window->getViewManager()->getViewModel() );
|
|
|
|
Handle (AIS_InteractiveContext) ic = vm->getAISContext();
|
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
|
|
|
|
GEOMToolsGUI::setOccColor( appStudy, mgrId, ic, It.Value(), color );
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2012-10-08 17:16:36 +06:00
|
|
|
ic->UpdateCurrentViewer();
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2012-10-08 17:16:36 +06:00
|
|
|
// mark study as modified
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
|
|
|
|
// update actions
|
2012-08-09 13:58:02 +06:00
|
|
|
app->updateActions(); //SRN: To update a Save button in the toolbar
|
|
|
|
}
|
|
|
|
|
2012-10-08 17:16:36 +06:00
|
|
|
|
|
|
|
void GEOMToolsGUI::setVtkColor( SalomeApp_Study* study, // study
|
|
|
|
int mgrId, // view window id
|
|
|
|
SVTK_View* view, // VTK view
|
|
|
|
const Handle(SALOME_InteractiveObject)& IO, // interactive object
|
|
|
|
const QColor& color ) // color
|
|
|
|
{
|
|
|
|
// get material property
|
|
|
|
QString matProp;
|
2013-02-12 17:35:16 +06:00
|
|
|
matProp = study->getObjectProperty( mgrId, IO->getEntry(), GEOM::propertyName( GEOM::Material ), matProp ).toString();
|
2012-10-08 17:16:36 +06:00
|
|
|
Material_Model material;
|
|
|
|
material.fromProperties( matProp );
|
|
|
|
|
|
|
|
// change color only for shapes with not physical type of material
|
|
|
|
if ( !material.isPhysical() ) {
|
|
|
|
view->SetColor( IO, color );
|
2013-02-12 17:35:16 +06:00
|
|
|
study->setObjectProperty( mgrId, IO->getEntry(), GEOM::propertyName( GEOM::Color ), color );
|
2012-10-08 17:16:36 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
// store color to GEOM_Object
|
|
|
|
_PTR(Study) aStudy = study->studyDS();
|
|
|
|
_PTR(SObject) aSObject( aStudy->FindObjectID( IO->getEntry() ) );
|
|
|
|
if ( !aSObject ) return;
|
|
|
|
|
|
|
|
GEOM::GEOM_Object_var anObject =
|
|
|
|
GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aSObject));
|
|
|
|
|
|
|
|
if ( CORBA::is_nil( anObject ) ) return;
|
|
|
|
|
|
|
|
SALOMEDS::Color aSColor;
|
|
|
|
aSColor.R = (double)color.red() / 255.0;
|
|
|
|
aSColor.G = (double)color.green() / 255.0;
|
|
|
|
aSColor.B = (double)color.blue() / 255.0;
|
|
|
|
anObject->SetColor( aSColor );
|
|
|
|
anObject->SetAutoColor( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::setOccColor( SalomeApp_Study* study, // study
|
|
|
|
int mgrId, // view window id
|
|
|
|
const Handle(AIS_InteractiveContext)& ic, // OCC interactive context
|
|
|
|
const Handle(SALOME_InteractiveObject)& IO, // interactive object
|
|
|
|
const QColor& color ) // color
|
|
|
|
{
|
|
|
|
// get AIS object
|
|
|
|
Handle(AIS_InteractiveObject) io = GEOMBase::GetAIS( IO, true );
|
|
|
|
if ( io.IsNull() ) return;
|
|
|
|
|
|
|
|
// get material property
|
|
|
|
QString matProp;
|
2013-02-12 17:35:16 +06:00
|
|
|
matProp = study->getObjectProperty( mgrId, IO->getEntry(), GEOM::propertyName( GEOM::Material ), matProp ).toString();
|
2012-10-08 17:16:36 +06:00
|
|
|
Material_Model material;
|
|
|
|
material.fromProperties( matProp );
|
|
|
|
|
|
|
|
Quantity_Color aColor = Quantity_Color( color.red() / 255., color.green() / 255., color.blue() / 255., Quantity_TOC_RGB );
|
|
|
|
|
|
|
|
// change color only for shapes with not physical type of material
|
|
|
|
if ( !material.isPhysical() ) {
|
|
|
|
if ( io->IsKind( STANDARD_TYPE(AIS_Shape) ) ) {
|
|
|
|
TopoDS_Shape theShape = Handle(AIS_Shape)::DownCast( io )->Shape();
|
|
|
|
bool onlyVertex = (theShape.ShapeType() == TopAbs_VERTEX || GEOM_Displayer::isCompoundOfVertices( theShape ));
|
|
|
|
if ( onlyVertex ) {
|
|
|
|
// set color for a point
|
|
|
|
Handle(AIS_Drawer) aCurDrawer = io->Attributes();
|
|
|
|
Handle(Prs3d_PointAspect) aCurPointAspect = aCurDrawer->PointAspect();
|
|
|
|
Quantity_Color aCurColor;
|
|
|
|
Standard_Real aCurScale;
|
|
|
|
Aspect_TypeOfMarker aCurTypeOfMarker;
|
|
|
|
aCurPointAspect->Aspect()->Values( aCurColor, aCurTypeOfMarker, aCurScale );
|
|
|
|
if ( aCurTypeOfMarker != Aspect_TOM_USERDEFINED ) {
|
|
|
|
aCurDrawer->SetPointAspect( new Prs3d_PointAspect( aCurTypeOfMarker, aColor, aCurScale ) );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Standard_Integer aWidth, aHeight;
|
|
|
|
aCurPointAspect->GetTextureSize( aWidth, aHeight );
|
|
|
|
#if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
|
|
|
|
Handle(TColStd_HArray1OfByte) aTexture = aCurPointAspect->GetTexture();
|
|
|
|
#else
|
|
|
|
Handle(Graphic3d_HArray1OfBytes) aTexture = aCurPointAspect->GetTexture();
|
|
|
|
#endif
|
|
|
|
aCurDrawer->SetPointAspect( new Prs3d_PointAspect( aColor, 1, aWidth, aHeight, aTexture ) );
|
|
|
|
}
|
|
|
|
ic->SetLocalAttributes( io, aCurDrawer, Standard_False );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
io->SetColor( aColor );
|
|
|
|
if ( io->IsKind( STANDARD_TYPE(GEOM_AISShape) ) ) {
|
|
|
|
Handle(GEOM_AISShape) aGAISShape = Handle(GEOM_AISShape)::DownCast( io );
|
|
|
|
aGAISShape->SetShadingColor( aColor );
|
|
|
|
aGAISShape->storeBoundaryColors();
|
|
|
|
}
|
|
|
|
|
|
|
|
io->Redisplay( Standard_True );
|
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
study->setObjectProperty( mgrId, IO->getEntry(), GEOM::propertyName( GEOM::Color ), color );
|
2012-10-08 17:16:36 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
// store color to GEOM_Object
|
|
|
|
_PTR(Study) aStudy = study->studyDS();
|
|
|
|
_PTR(SObject) aSObject( aStudy->FindObjectID( IO->getEntry() ) );
|
|
|
|
GEOM::GEOM_Object_var anObject =
|
|
|
|
GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aSObject));
|
|
|
|
SALOMEDS::Color aSColor;
|
|
|
|
aSColor.R = (double)color.red() / 255.0;
|
|
|
|
aSColor.G = (double)color.green() / 255.0;
|
|
|
|
aSColor.B = (double)color.blue() / 255.0;
|
|
|
|
anObject->SetColor( aSColor );
|
|
|
|
anObject->SetAutoColor( false );
|
|
|
|
}
|
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
void GEOMToolsGUI::OnTexture()
|
|
|
|
{
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
|
|
|
if ( app && appStudy ) {
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
if ( aSelMgr ) {
|
|
|
|
aSelMgr->selectedObjects( selected );
|
|
|
|
if ( !selected.IsEmpty() ) {
|
|
|
|
SUIT_ViewWindow* window = app->desktop()->activeWindow();
|
|
|
|
bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
|
|
|
|
if ( isOCC ) {
|
|
|
|
QString aTexture = QFileDialog::getOpenFileName(window,tr( "GEOM_SELECT_IMAGE"),QString(), tr("OCC_TEXTURE_FILES"));
|
|
|
|
if( !aTexture.isEmpty() )
|
|
|
|
{
|
|
|
|
SUIT_OverrideCursor();
|
|
|
|
OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*> ( window->getViewManager()->getViewModel() );
|
|
|
|
Handle (AIS_InteractiveContext) ic = vm->getAISContext();
|
|
|
|
Handle(AIS_InteractiveObject) io ;
|
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
|
|
|
|
io = GEOMBase::GetAIS( It.Value(), true );
|
|
|
|
if ( !io.IsNull() ) {
|
|
|
|
if ( io->IsKind( STANDARD_TYPE(GEOM_AISShape) ) )
|
|
|
|
Handle(GEOM_AISShape)::DownCast( io )->SetTextureFileName(TCollection_AsciiString(aTexture.toStdString().c_str()));
|
|
|
|
io->Redisplay( Standard_True );
|
|
|
|
} // if ( !io.IsNull() )
|
|
|
|
} // for
|
|
|
|
ic->UpdateCurrentViewer();
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
GeometryGUI* myGeomGUI = getGeometryGUI();
|
|
|
|
myGeomGUI->OnGUIEvent(GEOMOp::OpTexture);
|
|
|
|
} // if ( !selFile.isEmpty() )
|
|
|
|
} // if ( isOCC )
|
|
|
|
} // if ( selection not empty )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-22 17:45:30 +06:00
|
|
|
app->updateActions(); //SRN: To update a Save button in the toolbar
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnTransparency()
|
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOMToolsGUI_TransparencyDlg dlg( SUIT_Session::session()->activeApplication()->desktop() );
|
|
|
|
dlg.exec();
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
void GEOMToolsGUI::OnChangeTransparency( bool increase )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2012-08-09 13:58:02 +06:00
|
|
|
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
if ( !app )
|
|
|
|
return;
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
if ( !aSelMgr )
|
|
|
|
return;
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
aSelMgr->selectedObjects( selected );
|
|
|
|
if ( selected.IsEmpty() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
Handle(SALOME_InteractiveObject) FirstIOS = selected.First();
|
|
|
|
if ( FirstIOS.IsNull() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Delta
|
|
|
|
float delta = 0.1; // VSR: 23/11/2010 (transparency value <= 0.05 is ignored)
|
|
|
|
if ( !increase )
|
|
|
|
delta *= -1;
|
|
|
|
|
|
|
|
SUIT_ViewWindow* window = app->desktop()->activeWindow();
|
|
|
|
bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
|
|
|
|
bool isVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
|
|
|
|
|
|
|
|
if ( isVTK ) {
|
|
|
|
SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
|
|
|
|
if ( !vtkVW )
|
|
|
|
return;
|
|
|
|
SVTK_View* aView = vtkVW->getView();
|
|
|
|
|
|
|
|
float transp = aView->GetTransparency(FirstIOS);
|
|
|
|
|
|
|
|
// Compute new transparency value
|
|
|
|
transp = transp + delta;
|
|
|
|
if ( transp < 0 )
|
|
|
|
transp = 0;
|
|
|
|
else if ( transp > 1 )
|
|
|
|
transp = 1;
|
|
|
|
|
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
|
|
|
|
aView->SetTransparency( It.Value(), transp );
|
|
|
|
}
|
|
|
|
aView->Repaint();
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
} // if ( isVTK )
|
|
|
|
|
|
|
|
else if ( isOCC ) {
|
|
|
|
GEOMBase* gb = new GEOMBase();
|
|
|
|
Handle(GEOM_AISShape) aisShape;
|
|
|
|
|
|
|
|
aisShape = gb->ConvertIOinGEOMAISShape( FirstIOS, true );
|
|
|
|
if( aisShape.IsNull() )
|
|
|
|
return;
|
|
|
|
float transp = aisShape->Transparency();
|
|
|
|
|
|
|
|
// Compute new transparency value
|
|
|
|
transp = transp + delta;
|
|
|
|
if ( transp < 0 )
|
|
|
|
transp = 0;
|
|
|
|
else if ( transp > 1 )
|
|
|
|
transp = 1;
|
|
|
|
|
|
|
|
OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>( window->getViewManager()->getViewModel() );
|
|
|
|
if ( !vm )
|
|
|
|
return;
|
|
|
|
Handle(AIS_InteractiveContext) ic = vm->getAISContext();
|
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
|
|
|
|
aisShape = gb->ConvertIOinGEOMAISShape( It.Value(), true );
|
|
|
|
if ( !aisShape.IsNull() ) {
|
|
|
|
ic->SetTransparency( aisShape, transp, false );
|
|
|
|
ic->Redisplay( aisShape, Standard_False, Standard_True );
|
|
|
|
}
|
|
|
|
} // for...
|
|
|
|
ic->UpdateCurrentViewer();
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
} // if ( isOCC )
|
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnNbIsos( ActionType actionType )
|
|
|
|
{
|
|
|
|
SalomeApp_Application* app =
|
|
|
|
dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
SalomeApp_Study* aStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
|
|
|
SUIT_ViewWindow* window = app->desktop()->activeWindow();
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
|
2009-02-13 17:16:39 +05:00
|
|
|
bool isVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
|
2008-03-07 12:45:34 +05:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
if(isOCC){ // if is OCCViewer
|
2008-03-07 12:45:34 +05:00
|
|
|
|
|
|
|
OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>( window->getViewManager()->getViewModel() );
|
|
|
|
Handle (AIS_InteractiveContext) ic = vm->getAISContext();
|
2013-02-12 17:35:16 +06:00
|
|
|
int aMgrId = window->getViewManager()->getGlobalId();
|
2008-03-07 12:45:34 +05:00
|
|
|
|
|
|
|
ic->InitCurrent();
|
|
|
|
if ( ic->MoreCurrent() ) {
|
|
|
|
Handle(GEOM_AISShape) CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
|
2012-08-09 13:58:02 +06:00
|
|
|
CurObject->restoreIsoNumbers();
|
2008-03-07 12:45:34 +05:00
|
|
|
Handle(AIS_Drawer) CurDrawer = CurObject->Attributes();
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
int UIso = CurDrawer->UIsoAspect()->Number();
|
|
|
|
int VIso = CurDrawer->VIsoAspect()->Number();
|
2012-08-09 13:58:02 +06:00
|
|
|
|
|
|
|
int newNbUIso = -1;
|
|
|
|
int newNbVIso = -1;
|
|
|
|
|
|
|
|
if ( actionType == SHOWDLG ) {
|
|
|
|
GEOMToolsGUI_NbIsosDlg * NbIsosDlg =
|
|
|
|
new GEOMToolsGUI_NbIsosDlg( SUIT_Session::session()->activeApplication()->desktop() );
|
|
|
|
|
|
|
|
NbIsosDlg->setU( UIso );
|
|
|
|
NbIsosDlg->setV( VIso );
|
|
|
|
|
|
|
|
if ( NbIsosDlg->exec() ) {
|
|
|
|
SUIT_OverrideCursor();
|
|
|
|
|
|
|
|
newNbUIso = NbIsosDlg->getU();
|
|
|
|
newNbVIso = NbIsosDlg->getV();
|
|
|
|
} else //Cancel case
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if ( actionType == INCR || actionType == DECR ) {
|
|
|
|
int delta = 1;
|
|
|
|
if (actionType == DECR)
|
|
|
|
delta = -1;
|
|
|
|
|
|
|
|
newNbUIso = UIso + delta;
|
|
|
|
newNbVIso = VIso + delta;
|
|
|
|
|
|
|
|
if ( newNbUIso < 0 || newNbVIso < 0 || newNbUIso > 99 || newNbVIso > 99 )
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(; ic->MoreCurrent(); ic->NextCurrent()) {
|
|
|
|
CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
|
|
|
|
|
|
|
|
Handle(AIS_Drawer) CurDrawer = CurObject->Attributes();
|
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
QVariant v = aStudy->getObjectProperty( aMgrId, CurObject->getIO()->getEntry(), GEOM::propertyName( GEOM::LineWidth ) , QVariant() );
|
2012-08-09 13:58:02 +06:00
|
|
|
|
|
|
|
int width = v.isValid() ? v.toInt() : 1;
|
|
|
|
|
|
|
|
CurDrawer->SetUIsoAspect( new Prs3d_IsoAspect(Quantity_NOC_GRAY75, Aspect_TOL_SOLID, width , newNbUIso) );
|
|
|
|
CurDrawer->SetVIsoAspect( new Prs3d_IsoAspect(Quantity_NOC_GRAY75, Aspect_TOL_SOLID, width , newNbVIso) );
|
|
|
|
|
|
|
|
CurObject->storeIsoNumbers();
|
|
|
|
|
|
|
|
ic->SetLocalAttributes(CurObject, CurDrawer);
|
|
|
|
ic->Redisplay(CurObject);
|
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
QString anIsos = QString("%1%2%3").arg(newNbUIso).arg(GEOM::subSectionSeparator()).arg(newNbVIso);
|
|
|
|
aStudy->setObjectProperty(aMgrId ,CurObject->getIO()->getEntry(), GEOM::propertyName( GEOM::NbIsos ), anIsos);
|
2008-03-07 12:45:34 +05:00
|
|
|
}
|
|
|
|
}
|
2012-08-09 13:58:02 +06:00
|
|
|
GeometryGUI::Modified();
|
2009-02-13 17:16:39 +05:00
|
|
|
}
|
|
|
|
else if(isVTK){ // if is VTKViewer
|
2008-03-07 12:45:34 +05:00
|
|
|
//
|
|
|
|
// Warning. It's works incorrect. must be recheked.
|
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >
|
|
|
|
( SUIT_Session::session()->activeApplication() );
|
2008-03-07 12:45:34 +05:00
|
|
|
if ( !app )
|
|
|
|
return;
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
if ( !aSelMgr )
|
|
|
|
return;
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
aSelMgr->selectedObjects( selected );
|
|
|
|
if ( selected.IsEmpty() )
|
|
|
|
return;
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
|
|
|
|
if ( !vtkVW )
|
|
|
|
return;
|
2009-02-13 17:16:39 +05:00
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
int aMgrId = window->getViewManager()->getGlobalId();
|
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
SALOME_View* view = GEOM_Displayer::GetActiveView();
|
|
|
|
|
|
|
|
vtkActorCollection* aCollection = vtkActorCollection::New();
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
|
|
|
|
Handle(SALOME_InteractiveObject) anIObject = It.Value();
|
2012-08-09 13:58:02 +06:00
|
|
|
SALOME_Prs* aPrs = view->CreatePrs( anIObject->getEntry() );
|
2009-02-13 17:16:39 +05:00
|
|
|
SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( aPrs );
|
|
|
|
if ( vtkPrs ) {
|
2012-08-09 13:58:02 +06:00
|
|
|
vtkActorCollection* anActors = vtkPrs->GetObjects();
|
|
|
|
anActors->InitTraversal();
|
|
|
|
vtkActor* anAct = anActors->GetNextActor();
|
|
|
|
aCollection->AddItem(anAct);
|
2009-02-13 17:16:39 +05:00
|
|
|
}
|
|
|
|
}
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
if(aCollection)
|
|
|
|
aCollection->InitTraversal();
|
|
|
|
else
|
|
|
|
return;
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
int UIso = 0;
|
|
|
|
int VIso = 0;
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
vtkActor* anAct = aCollection->GetNextActor();
|
2012-08-09 13:58:02 +06:00
|
|
|
if (GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct)) {
|
|
|
|
anActor->RestoreIsoNumbers();
|
2008-03-07 12:45:34 +05:00
|
|
|
anActor->GetNbIsos(UIso,VIso);
|
2012-08-09 13:58:02 +06:00
|
|
|
}
|
2009-02-13 17:16:39 +05:00
|
|
|
else
|
|
|
|
return;
|
2008-03-07 12:45:34 +05:00
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
int newNbUIso = -1;
|
|
|
|
int newNbVIso = -1;
|
2009-02-13 17:16:39 +05:00
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
if ( actionType == SHOWDLG ) {
|
|
|
|
GEOMToolsGUI_NbIsosDlg* NbIsosDlg =
|
|
|
|
new GEOMToolsGUI_NbIsosDlg( SUIT_Session::session()->activeApplication()->desktop() );
|
2009-02-13 17:16:39 +05:00
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
NbIsosDlg->setU( UIso );
|
|
|
|
NbIsosDlg->setV( VIso );
|
|
|
|
|
|
|
|
if ( NbIsosDlg->exec() ) {
|
|
|
|
SUIT_OverrideCursor();
|
|
|
|
|
|
|
|
newNbUIso = NbIsosDlg->getU();
|
|
|
|
newNbVIso = NbIsosDlg->getV();
|
|
|
|
} else
|
|
|
|
return; //Cancel case
|
|
|
|
}
|
|
|
|
else if ( actionType == INCR || actionType == DECR ) {
|
|
|
|
int delta = 1;
|
|
|
|
if (actionType == DECR)
|
|
|
|
delta = -1;
|
|
|
|
|
|
|
|
newNbUIso = UIso + delta;
|
|
|
|
newNbVIso = VIso + delta;
|
2008-03-07 12:45:34 +05:00
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
if ( newNbUIso < 0 || newNbVIso < 0 || newNbUIso > 99 || newNbVIso > 99 )
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while( anAct!=NULL ) {
|
|
|
|
if(GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct)){
|
|
|
|
// There are no casting to needed actor.
|
|
|
|
int aIsos[2]={newNbUIso,newNbVIso};
|
|
|
|
anActor->SetNbIsos(aIsos);
|
|
|
|
anActor->StoreIsoNumbers();
|
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
QString anIsos = QString("%1%2%3").arg(newNbUIso).arg(GEOM::subSectionSeparator()).arg(newNbVIso);
|
|
|
|
aStudy->setObjectProperty(aMgrId ,anActor->getIO()->getEntry(), GEOM::propertyName( GEOM::NbIsos ), anIsos);
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2012-08-09 13:58:02 +06:00
|
|
|
anAct = aCollection->GetNextActor();
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2012-08-09 13:58:02 +06:00
|
|
|
view->Repaint();
|
|
|
|
GeometryGUI::Modified();
|
2008-03-07 12:45:34 +05:00
|
|
|
} // end vtkviewer
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
void GEOMToolsGUI::OnDeflection()
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2012-08-09 13:58:02 +06:00
|
|
|
SUIT_ViewWindow* window = SUIT_Session::session()->activeApplication()->desktop()->activeWindow();
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( SUIT_Session::session()->activeApplication()->activeStudy() );
|
|
|
|
|
|
|
|
|
|
|
|
bool isOCC = (window && window->getViewManager()->getType() == OCCViewer_Viewer::Type());
|
|
|
|
bool isVTK = (window && window->getViewManager()->getType() == SVTK_Viewer::Type());
|
2013-02-12 17:35:16 +06:00
|
|
|
int mgrId = window ? window->getViewManager()->getGlobalId() : -1;
|
2012-08-09 13:58:02 +06:00
|
|
|
|
|
|
|
if (isOCC) { // if is OCCViewer
|
|
|
|
OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>(window->getViewManager()->getViewModel());
|
|
|
|
Handle (AIS_InteractiveContext) ic = vm->getAISContext();
|
|
|
|
|
|
|
|
ic->InitCurrent();
|
|
|
|
if (ic->MoreCurrent()) {
|
|
|
|
Handle(GEOM_AISShape) CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
|
|
|
|
|
|
|
|
Standard_Real aDC, aPrevDC;
|
|
|
|
Standard_Boolean isOwnDC = CurObject->OwnDeviationCoefficient(aDC, aPrevDC);
|
|
|
|
if (!isOwnDC)
|
|
|
|
aDC = ic->DeviationCoefficient();
|
|
|
|
|
|
|
|
GEOMToolsGUI_DeflectionDlg * DeflectionDlg = new GEOMToolsGUI_DeflectionDlg
|
|
|
|
(SUIT_Session::session()->activeApplication()->desktop());
|
|
|
|
DeflectionDlg->setTheDC(aDC);
|
|
|
|
double aNewDC = 0.0;
|
|
|
|
bool ok = false;
|
|
|
|
while (!ok) {
|
|
|
|
if (DeflectionDlg->exec()) {
|
|
|
|
SUIT_OverrideCursor();
|
|
|
|
aNewDC = DeflectionDlg->getTheDC();
|
|
|
|
ok = (1e-07 <= aNewDC && aNewDC <= 1.0); // spinbox can return zero
|
|
|
|
if (ok) {
|
|
|
|
for (; ic->MoreCurrent(); ic->NextCurrent()) {
|
|
|
|
CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
|
|
|
|
ic->SetDeviationCoefficient(CurObject, aNewDC, Standard_True);
|
|
|
|
ic->Redisplay(CurObject);
|
2013-02-12 17:35:16 +06:00
|
|
|
appStudy->setObjectProperty(mgrId,CurObject->getIO()->getEntry(), GEOM::propertyName( GEOM::Deflection ), aNewDC);
|
2012-08-09 13:58:02 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ok = true;
|
|
|
|
}
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
}
|
2012-08-09 13:58:02 +06:00
|
|
|
GeometryGUI::Modified();
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2012-08-09 13:58:02 +06:00
|
|
|
else if (isVTK) { // if is VTKViewer
|
|
|
|
SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>
|
|
|
|
(SUIT_Session::session()->activeApplication());
|
|
|
|
if (!app)
|
|
|
|
return;
|
|
|
|
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
if (!aSelMgr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
aSelMgr->selectedObjects(selected);
|
|
|
|
if (selected.IsEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>(window);
|
|
|
|
if (!vtkVW)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SALOME_View* view = GEOM_Displayer::GetActiveView();
|
|
|
|
|
|
|
|
vtkActorCollection* aCollection = vtkActorCollection::New();
|
|
|
|
|
|
|
|
for (SALOME_ListIteratorOfListIO It (selected); It.More(); It.Next()) {
|
|
|
|
Handle(SALOME_InteractiveObject) anIObject = It.Value();
|
|
|
|
SALOME_Prs* aPrs = view->CreatePrs(anIObject->getEntry());
|
|
|
|
SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>(aPrs);
|
|
|
|
if (vtkPrs) {
|
|
|
|
vtkActorCollection* anActors = vtkPrs->GetObjects();
|
|
|
|
anActors->InitTraversal();
|
|
|
|
vtkActor* anAct = anActors->GetNextActor();
|
|
|
|
aCollection->AddItem(anAct);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aCollection)
|
|
|
|
aCollection->InitTraversal();
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
double aDC = 0.;
|
|
|
|
|
|
|
|
vtkActor* anAct = aCollection->GetNextActor();
|
|
|
|
if (GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct))
|
|
|
|
aDC = anActor->GetDeflection();
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
GEOMToolsGUI_DeflectionDlg* DeflectionDlg = new GEOMToolsGUI_DeflectionDlg
|
|
|
|
(SUIT_Session::session()->activeApplication()->desktop());
|
|
|
|
DeflectionDlg->setTheDC(aDC);
|
|
|
|
if (DeflectionDlg->exec()) {
|
|
|
|
SUIT_OverrideCursor();
|
|
|
|
aDC = DeflectionDlg->getTheDC();
|
|
|
|
while (anAct != NULL) {
|
|
|
|
if (GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct)) {
|
|
|
|
// There are no casting to needed actor.
|
|
|
|
anActor->SetDeflection(aDC);
|
2013-02-12 17:35:16 +06:00
|
|
|
appStudy->setObjectProperty(mgrId, anActor->getIO()->getEntry(), GEOM::propertyName( GEOM::Deflection ), aDC);
|
2012-08-09 13:58:02 +06:00
|
|
|
}
|
|
|
|
anAct = aCollection->GetNextActor();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
} // end vtkviewer
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2008-03-07 12:45:34 +05:00
|
|
|
|
|
|
|
void GEOMToolsGUI::OnSelectOnly(int mode)
|
|
|
|
{
|
|
|
|
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(mode);
|
|
|
|
getGeometryGUI()->setLocalSelectionMode(mode);
|
|
|
|
}
|
|
|
|
}
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2012-10-08 17:16:36 +06:00
|
|
|
void GEOMToolsGUI::OnDiscloseConcealChildren( bool show )
|
2012-08-09 13:58:02 +06:00
|
|
|
{
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
SalomeApp_Application* app =
|
|
|
|
dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
|
|
|
|
SalomeApp_Module* mod = app ? dynamic_cast<SalomeApp_Module*>(app->activeModule()) : 0;
|
|
|
|
|
|
|
|
GEOM_Displayer* disp = mod ? dynamic_cast<GEOM_Displayer*>(mod->displayer()) : 0;
|
|
|
|
|
|
|
|
if ( app && disp ) {
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
|
|
|
if ( aSelMgr && appStudy ) {
|
|
|
|
aSelMgr->selectedObjects( selected );
|
|
|
|
if ( !selected.IsEmpty() ) {
|
|
|
|
_PTR(Study) aStudy = appStudy->studyDS();
|
|
|
|
_PTR(StudyBuilder) B = aStudy->NewBuilder();
|
|
|
|
|
|
|
|
bool aLocked = ( _PTR(AttributeStudyProperties)( aStudy->GetProperties() ) )->IsLocked();
|
|
|
|
if ( aLocked ) {
|
|
|
|
SUIT_MessageBox::warning( app->desktop(),
|
|
|
|
QObject::tr( "WRN_WARNING" ),
|
|
|
|
QObject::tr( "WRN_STUDY_LOCKED" ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
|
|
|
|
Handle(SALOME_InteractiveObject) IObject = It.Value();
|
|
|
|
|
|
|
|
_PTR(SObject) obj ( aStudy->FindObjectID( IObject->getEntry() ) );
|
|
|
|
_PTR(GenericAttribute) anAttr;
|
|
|
|
if ( obj ) {
|
|
|
|
_PTR(AttributeExpandable) aExp = B->FindOrCreateAttribute( obj, "AttributeExpandable" );
|
|
|
|
aExp->SetExpandable( show );
|
|
|
|
if(!show)
|
|
|
|
disp->EraseWithChildren(IObject,true);
|
|
|
|
} // if ( obj )
|
|
|
|
} // iterator
|
|
|
|
}
|
|
|
|
}
|
|
|
|
app->updateObjectBrowser( false );
|
|
|
|
app->updateActions();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnPointMarker()
|
|
|
|
{
|
|
|
|
GEOMToolsGUI_MarkerDlg dlg( SUIT_Session::session()->activeApplication()->desktop() );
|
|
|
|
dlg.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnMaterialProperties()
|
|
|
|
{
|
2013-02-12 17:35:16 +06:00
|
|
|
GEOMToolsGUI_MaterialPropertiesDlg* dlg = new GEOMToolsGUI_MaterialPropertiesDlg( SUIT_Session::session()->activeApplication()->desktop(), true, false, QtxDialog::OK | QtxDialog::Close | QtxDialog::Apply | QtxDialog::Help );
|
|
|
|
dlg->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnMaterialsLibrary()
|
|
|
|
{
|
|
|
|
GEOMToolsGUI_MaterialPropertiesDlg dlg( SUIT_Session::session()->activeApplication()->desktop(), false, true, QtxDialog::Standard );
|
|
|
|
dlg.setWindowTitle( tr( "MATERIAL_LIBRARY_TLT" ) );
|
2012-08-09 13:58:02 +06:00
|
|
|
dlg.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnUnpublishObject() {
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
SalomeApp_Application* app =
|
|
|
|
dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
|
|
|
|
SalomeApp_Module* mod = app ? dynamic_cast<SalomeApp_Module*>(app->activeModule()) : 0;
|
|
|
|
|
|
|
|
GEOM_Displayer* disp = mod ? dynamic_cast<GEOM_Displayer*>(mod->displayer()) : 0;
|
|
|
|
|
|
|
|
if ( app && disp ) {
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
|
|
|
if ( aSelMgr && appStudy ) {
|
|
|
|
aSelMgr->selectedObjects( selected );
|
|
|
|
if ( !selected.IsEmpty() ) {
|
|
|
|
_PTR(Study) aStudy = appStudy->studyDS();
|
|
|
|
_PTR(StudyBuilder) B = aStudy->NewBuilder();
|
|
|
|
|
|
|
|
bool aLocked = ( _PTR(AttributeStudyProperties)( aStudy->GetProperties() ) )->IsLocked();
|
|
|
|
if ( aLocked ) {
|
|
|
|
SUIT_MessageBox::warning( app->desktop(),
|
|
|
|
QObject::tr( "WRN_WARNING" ),
|
|
|
|
QObject::tr( "WRN_STUDY_LOCKED" ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
|
|
|
|
Handle(SALOME_InteractiveObject) IObject = It.Value();
|
|
|
|
|
|
|
|
_PTR(SObject) obj ( aStudy->FindObjectID( IObject->getEntry() ) );
|
|
|
|
_PTR(GenericAttribute) anAttr;
|
|
|
|
if ( obj ) {
|
|
|
|
_PTR(AttributeDrawable) aDrw = B->FindOrCreateAttribute( obj, "AttributeDrawable" );
|
|
|
|
aDrw->SetDrawable( false );
|
|
|
|
disp->EraseWithChildren(IObject);
|
|
|
|
} // if ( obj )
|
|
|
|
} // iterator
|
|
|
|
aSelMgr->clearSelected();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
app->updateObjectBrowser( false );
|
|
|
|
app->updateActions();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnPublishObject() {
|
|
|
|
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
if(!app)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
|
|
|
if(!appStudy)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_PTR(Study) aStudy = appStudy->studyDS();
|
|
|
|
|
|
|
|
if(!aStudy)
|
|
|
|
return;
|
|
|
|
|
|
|
|
//Check lock of the study
|
|
|
|
bool aLocked = ( _PTR(AttributeStudyProperties)( aStudy->GetProperties() ) )->IsLocked();
|
|
|
|
if ( aLocked ) {
|
|
|
|
SUIT_MessageBox::warning( app->desktop(),
|
|
|
|
QObject::tr( "WRN_WARNING" ),
|
|
|
|
QObject::tr( "WRN_STUDY_LOCKED" ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
GEOMToolsGUI_PublishDlg * publishDlg =
|
|
|
|
new GEOMToolsGUI_PublishDlg( SUIT_Session::session()->activeApplication()->desktop() );
|
|
|
|
publishDlg->exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnEdgeWidth()
|
|
|
|
{
|
|
|
|
SUIT_ViewWindow* window = SUIT_Session::session()->activeApplication()->desktop()->activeWindow();
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( SUIT_Session::session()->activeApplication()->activeStudy() );
|
|
|
|
|
|
|
|
|
|
|
|
bool isOCC = (window && window->getViewManager()->getType() == OCCViewer_Viewer::Type());
|
|
|
|
bool isVTK = (window && window->getViewManager()->getType() == SVTK_Viewer::Type());
|
2013-02-12 17:35:16 +06:00
|
|
|
int mgrId = window ? window->getViewManager()->getGlobalId() : -1;
|
2012-08-09 13:58:02 +06:00
|
|
|
|
|
|
|
if (isOCC) { // if is OCCViewer
|
|
|
|
OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>(window->getViewManager()->getViewModel());
|
|
|
|
Handle (AIS_InteractiveContext) ic = vm->getAISContext();
|
|
|
|
SALOME_View* view = GEOM_Displayer::GetActiveView();
|
|
|
|
ic->InitCurrent();
|
|
|
|
if (ic->MoreCurrent()) {
|
|
|
|
Handle(GEOM_AISShape) CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
|
|
|
|
|
|
|
|
int aWidth = (int)CurObject->Width();
|
|
|
|
|
|
|
|
GEOMToolsGUI_LineWidthDlg * Dlg = new GEOMToolsGUI_LineWidthDlg
|
|
|
|
(SUIT_Session::session()->activeApplication()->desktop(),"EDGE_WIDTH_TLT");
|
|
|
|
Dlg->setTheLW(aWidth);
|
|
|
|
int aNewWidth = 0;
|
|
|
|
if (Dlg->exec()) {
|
|
|
|
aNewWidth = Dlg->getTheLW();
|
|
|
|
bool ok = (aNewWidth != aWidth && aNewWidth != 0 );
|
|
|
|
if (ok) {
|
|
|
|
for(; ic->MoreCurrent(); ic->NextCurrent()) {
|
|
|
|
CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
|
|
|
|
SOCC_Prs* aPrs = dynamic_cast<SOCC_Prs*>(view->CreatePrs(CurObject->getIO()->getEntry()));
|
|
|
|
AIS_ListOfInteractive anAISObjects;
|
|
|
|
aPrs->GetObjects( anAISObjects );
|
|
|
|
AIS_ListIteratorOfListOfInteractive aIter( anAISObjects );
|
|
|
|
for ( ; aIter.More(); aIter.Next() ) {
|
|
|
|
Handle(SALOME_AISShape) cur = Handle(SALOME_AISShape)::DownCast(aIter.Value());
|
|
|
|
if ( !cur.IsNull() ) {
|
|
|
|
cur->SetWidth(aNewWidth);
|
|
|
|
ic->Redisplay(cur);
|
|
|
|
}
|
|
|
|
}
|
2013-02-12 17:35:16 +06:00
|
|
|
appStudy->setObjectProperty(mgrId, CurObject->getIO()->getEntry(), GEOM::propertyName( GEOM::LineWidth ), aNewWidth);
|
2012-08-09 13:58:02 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
}
|
|
|
|
else if (isVTK) { // if is VTKViewer
|
|
|
|
SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>
|
|
|
|
(SUIT_Session::session()->activeApplication());
|
|
|
|
if (!app)
|
|
|
|
return;
|
|
|
|
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
if (!aSelMgr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
aSelMgr->selectedObjects(selected);
|
|
|
|
if (selected.IsEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>(window);
|
|
|
|
if (!vtkVW)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SALOME_View* view = GEOM_Displayer::GetActiveView();
|
|
|
|
|
|
|
|
vtkActorCollection* aCollection = vtkActorCollection::New();
|
|
|
|
|
|
|
|
for (SALOME_ListIteratorOfListIO It (selected); It.More(); It.Next()) {
|
|
|
|
Handle(SALOME_InteractiveObject) anIObject = It.Value();
|
|
|
|
SALOME_Prs* aPrs = view->CreatePrs(anIObject->getEntry());
|
|
|
|
SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>(aPrs);
|
|
|
|
if (vtkPrs) {
|
|
|
|
vtkActorCollection* anActors = vtkPrs->GetObjects();
|
|
|
|
anActors->InitTraversal();
|
|
|
|
vtkActor* anAct = anActors->GetNextActor();
|
|
|
|
aCollection->AddItem(anAct);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aCollection)
|
|
|
|
aCollection->InitTraversal();
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
int aWidth = 1;
|
|
|
|
|
|
|
|
vtkActor* anAct = aCollection->GetNextActor();
|
|
|
|
if (GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct))
|
|
|
|
aWidth = anActor->GetWidth();
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
GEOMToolsGUI_LineWidthDlg * Dlg = new GEOMToolsGUI_LineWidthDlg
|
|
|
|
(SUIT_Session::session()->activeApplication()->desktop(),"EDGE_WIDTH_TLT");
|
|
|
|
|
|
|
|
Dlg->setTheLW(aWidth);
|
|
|
|
if (Dlg->exec()) {
|
|
|
|
SUIT_OverrideCursor();
|
|
|
|
aWidth = Dlg->getTheLW();
|
|
|
|
while (anAct != NULL) {
|
|
|
|
if (GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct)) {
|
|
|
|
// There are no casting to needed actor.
|
|
|
|
anActor->SetWidth(aWidth);
|
2013-02-12 17:35:16 +06:00
|
|
|
appStudy->setObjectProperty(mgrId, anActor->getIO()->getEntry(), GEOM::propertyName( GEOM::LineWidth ), aWidth);
|
2012-08-09 13:58:02 +06:00
|
|
|
}
|
|
|
|
anAct = aCollection->GetNextActor();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
} // end vtkviewer
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnIsosWidth() {
|
|
|
|
SalomeApp_Application* app =
|
|
|
|
dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
SalomeApp_Study* aStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
|
|
|
SUIT_ViewWindow* window = app->desktop()->activeWindow();
|
|
|
|
|
|
|
|
bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
|
|
|
|
bool isVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
|
|
|
|
|
|
|
|
if(isOCC){ // if is OCCViewer
|
|
|
|
|
|
|
|
OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>( window->getViewManager()->getViewModel() );
|
|
|
|
Handle (AIS_InteractiveContext) ic = vm->getAISContext();
|
2013-02-12 17:35:16 +06:00
|
|
|
int aMgrId = window->getViewManager()->getGlobalId();
|
2012-08-09 13:58:02 +06:00
|
|
|
|
|
|
|
ic->InitCurrent();
|
|
|
|
if ( ic->MoreCurrent() ) {
|
|
|
|
Handle(GEOM_AISShape) CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
|
|
|
|
CurObject->restoreIsoNumbers();
|
|
|
|
Handle(AIS_Drawer) CurDrawer = CurObject->Attributes();
|
|
|
|
|
|
|
|
Handle(Graphic3d_AspectLine3d) asp = CurDrawer->UIsoAspect()->Aspect();
|
|
|
|
|
|
|
|
Quantity_Color C;
|
|
|
|
Aspect_TypeOfLine T;
|
|
|
|
Standard_Real W;
|
|
|
|
asp->Values(C,T,W);
|
|
|
|
|
|
|
|
int aWidth = (int)W;
|
|
|
|
|
|
|
|
GEOMToolsGUI_LineWidthDlg * Dlg =
|
|
|
|
new GEOMToolsGUI_LineWidthDlg( SUIT_Session::session()->activeApplication()->desktop(),"ISOS_WIDTH_TLT" );
|
|
|
|
|
|
|
|
Dlg->setTheLW( aWidth );
|
|
|
|
|
|
|
|
if ( Dlg->exec() ) {
|
|
|
|
SUIT_OverrideCursor();
|
|
|
|
aWidth = Dlg->getTheLW();
|
|
|
|
} else //Cancel case
|
|
|
|
return;
|
|
|
|
|
|
|
|
for(; ic->MoreCurrent(); ic->NextCurrent()) {
|
|
|
|
CurObject = Handle(GEOM_AISShape)::DownCast(ic->Current());
|
|
|
|
|
|
|
|
Handle(AIS_Drawer) CurDrawer = CurObject->Attributes();
|
|
|
|
|
|
|
|
CurObject->Attributes()->UIsoAspect()->SetWidth(aWidth);
|
|
|
|
CurObject->Attributes()->VIsoAspect()->SetWidth(aWidth);
|
|
|
|
|
|
|
|
ic->Redisplay(CurObject);
|
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
aStudy->setObjectProperty(aMgrId ,CurObject->getIO()->getEntry(), GEOM::propertyName( GEOM::IsosWidth ), aWidth);
|
2012-08-09 13:58:02 +06:00
|
|
|
}
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(isVTK){ // if is VTKViewer
|
|
|
|
//
|
|
|
|
// Warning. It's works incorrect. must be recheked.
|
|
|
|
//
|
|
|
|
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >
|
|
|
|
( SUIT_Session::session()->activeApplication() );
|
|
|
|
if ( !app )
|
|
|
|
return;
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
if ( !aSelMgr )
|
|
|
|
return;
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
aSelMgr->selectedObjects( selected );
|
|
|
|
if ( selected.IsEmpty() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
|
|
|
|
if ( !vtkVW )
|
|
|
|
return;
|
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
int aMgrId = window->getViewManager()->getGlobalId();
|
|
|
|
|
2012-08-09 13:58:02 +06:00
|
|
|
SALOME_View* view = GEOM_Displayer::GetActiveView();
|
|
|
|
|
|
|
|
vtkActorCollection* aCollection = vtkActorCollection::New();
|
|
|
|
|
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
|
|
|
|
Handle(SALOME_InteractiveObject) anIObject = It.Value();
|
|
|
|
SALOME_Prs* aPrs = view->CreatePrs( anIObject->getEntry() );
|
|
|
|
SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( aPrs );
|
|
|
|
if ( vtkPrs ) {
|
|
|
|
vtkActorCollection* anActors = vtkPrs->GetObjects();
|
|
|
|
anActors->InitTraversal();
|
|
|
|
vtkActor* anAct = anActors->GetNextActor();
|
|
|
|
aCollection->AddItem(anAct);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(aCollection)
|
|
|
|
aCollection->InitTraversal();
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
int aWidth = 1;
|
|
|
|
|
|
|
|
vtkActor* anAct = aCollection->GetNextActor();
|
|
|
|
if (GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct)) {
|
|
|
|
aWidth = anActor->GetIsosWidth();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
GEOMToolsGUI_LineWidthDlg* Dlg =
|
|
|
|
new GEOMToolsGUI_LineWidthDlg( SUIT_Session::session()->activeApplication()->desktop(), "ISOS_WIDTH_TLT" );
|
|
|
|
|
|
|
|
Dlg->setTheLW( aWidth );
|
|
|
|
if (Dlg->exec() ) {
|
|
|
|
SUIT_OverrideCursor();
|
|
|
|
aWidth = Dlg->getTheLW();
|
|
|
|
} else
|
|
|
|
return; //Cancel case
|
|
|
|
|
|
|
|
while( anAct!= NULL ) {
|
|
|
|
if(GEOM_Actor* anActor = GEOM_Actor::SafeDownCast(anAct)) {
|
|
|
|
// There are no casting to needed actor.
|
|
|
|
anActor->SetIsosWidth(aWidth);
|
2013-02-12 17:35:16 +06:00
|
|
|
aStudy->setObjectProperty(aMgrId ,anActor->getIO()->getEntry(), GEOM::propertyName( GEOM::IsosWidth ), aWidth);
|
2012-08-09 13:58:02 +06:00
|
|
|
}
|
|
|
|
anAct = aCollection->GetNextActor();
|
|
|
|
}
|
|
|
|
|
|
|
|
view->Repaint();
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
} // end vtkviewer
|
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnBringToFront() {
|
|
|
|
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
if ( !app )
|
|
|
|
return;
|
|
|
|
|
|
|
|
SalomeApp_Module* mod = dynamic_cast<SalomeApp_Module*>(app->activeModule());
|
|
|
|
if(!mod)
|
|
|
|
return;
|
|
|
|
|
|
|
|
GEOM_Displayer* disp = dynamic_cast<GEOM_Displayer*>(mod->displayer());
|
|
|
|
|
|
|
|
if(!disp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
|
|
|
if ( !aSelMgr )
|
|
|
|
return;
|
|
|
|
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
aSelMgr->selectedObjects( selected );
|
|
|
|
if ( selected.IsEmpty() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(app->activeStudy());
|
|
|
|
if(!appStudy)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SUIT_ViewWindow* window = app->desktop()->activeWindow();
|
|
|
|
|
|
|
|
OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>( window->getViewManager()->getViewModel() );
|
|
|
|
if ( !vm )
|
|
|
|
return;
|
|
|
|
|
|
|
|
bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
|
|
|
|
|
|
|
|
QAction* a = getGeometryGUI()->getAction( GEOMOp::OpBringToFront );
|
|
|
|
bool checked = a->isChecked();
|
|
|
|
|
|
|
|
if ( isOCC ) {
|
|
|
|
GEOMBase* gb = new GEOMBase();
|
|
|
|
Handle(GEOM_AISShape) aisShape;
|
2013-02-12 17:35:16 +06:00
|
|
|
int aMgrId = window->getViewManager()->getGlobalId();
|
2012-08-09 13:58:02 +06:00
|
|
|
|
|
|
|
Handle(AIS_InteractiveContext) ic = vm->getAISContext();
|
|
|
|
SALOME_ListIO anIOlst;
|
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
|
|
|
|
aisShape = gb->ConvertIOinGEOMAISShape( It.Value(), true );
|
|
|
|
if ( !aisShape.IsNull() ) {
|
2013-02-12 17:35:16 +06:00
|
|
|
appStudy->setObjectProperty( aMgrId, aisShape->getIO()->getEntry(), GEOM::propertyName( GEOM::TopLevel ), checked );
|
2012-08-09 13:58:02 +06:00
|
|
|
aisShape->setTopLevel(checked);
|
|
|
|
anIOlst.Append(aisShape->getIO());
|
|
|
|
}
|
|
|
|
} // for...
|
|
|
|
disp->Redisplay(anIOlst);
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
} // if ( isOCC )
|
|
|
|
}
|
|
|
|
|
|
|
|
void GEOMToolsGUI::OnClsBringToFront() {
|
|
|
|
SalomeApp_Application* app =
|
|
|
|
dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
|
|
|
if(!app)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SalomeApp_Module* mod = dynamic_cast<SalomeApp_Module*>(app->activeModule());
|
|
|
|
if(!mod)
|
|
|
|
return;
|
|
|
|
|
|
|
|
GEOM_Displayer* disp = dynamic_cast<GEOM_Displayer*>(mod->displayer());
|
|
|
|
|
|
|
|
if(!disp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(app->activeStudy());
|
|
|
|
if(!appStudy)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SUIT_ViewWindow* window = app->desktop()->activeWindow();
|
|
|
|
|
|
|
|
bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
|
|
|
|
|
|
|
|
if(isOCC){ // if is OCCViewer
|
|
|
|
|
|
|
|
OCCViewer_Viewer* vm = dynamic_cast<OCCViewer_Viewer*>( window->getViewManager()->getViewModel() );
|
|
|
|
Handle (AIS_InteractiveContext) ic = vm->getAISContext();
|
2013-02-12 17:35:16 +06:00
|
|
|
int aMgrId = window->getViewManager()->getGlobalId();
|
2012-08-09 13:58:02 +06:00
|
|
|
|
|
|
|
SALOME_ListIO anIOlst;
|
|
|
|
AIS_ListOfInteractive aList;
|
|
|
|
ic->DisplayedObjects( aList );
|
|
|
|
for ( AIS_ListIteratorOfListOfInteractive it( aList ); it.More(); it.Next() ) {
|
|
|
|
|
|
|
|
Handle(GEOM_AISShape) CurObject = Handle(GEOM_AISShape)::DownCast(it.Value());
|
|
|
|
|
|
|
|
if(CurObject.IsNull())
|
|
|
|
continue;
|
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
appStudy->setObjectProperty( aMgrId, QString(CurObject->getIO()->getEntry()), GEOM::propertyName( GEOM::TopLevel ), Standard_False );
|
2012-08-09 13:58:02 +06:00
|
|
|
CurObject->setTopLevel(Standard_False);
|
|
|
|
anIOlst.Append(CurObject->getIO());
|
|
|
|
}
|
|
|
|
disp->Redisplay(anIOlst);
|
|
|
|
GeometryGUI::Modified();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-12 17:35:16 +06:00
|
|
|
void GEOMToolsGUI::OnSetMaterial( const QVariant& theParam )
|
|
|
|
{
|
|
|
|
if ( !theParam.canConvert<QString>() ) return;
|
|
|
|
|
|
|
|
QString theName = theParam.toString();
|
|
|
|
|
|
|
|
SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( SUIT_Session::session()->activeApplication() );
|
|
|
|
if ( !app ) return;
|
|
|
|
|
|
|
|
SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
|
|
|
if ( !study ) return;
|
|
|
|
|
|
|
|
LightApp_SelectionMgr* selMgr = app->selectionMgr();
|
|
|
|
|
|
|
|
SALOME_ListIO selected;
|
|
|
|
selMgr->selectedObjects( selected );
|
|
|
|
|
|
|
|
if ( selected.IsEmpty() ) return;
|
|
|
|
|
|
|
|
GEOM_Displayer displayer( study );
|
|
|
|
|
|
|
|
SALOME_View* window = displayer.GetActiveView();
|
|
|
|
if ( !window ) return;
|
|
|
|
|
|
|
|
int mgrId = dynamic_cast<SUIT_ViewModel*>( window )->getViewManager()->getGlobalId();
|
|
|
|
|
|
|
|
Material_Model aModel;
|
|
|
|
aModel.fromResources( theName );
|
|
|
|
QString prop = aModel.toProperties();
|
|
|
|
|
|
|
|
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
|
|
|
|
Handle(SALOME_InteractiveObject) io = It.Value();
|
|
|
|
study->setObjectProperty( mgrId, io->getEntry(), GEOM::propertyName( GEOM::Material ), prop );
|
|
|
|
if ( window->isVisible( io ) ) displayer.Redisplay( io, false );
|
|
|
|
}
|
|
|
|
displayer.UpdateViewer();
|
|
|
|
}
|