2014-02-20 18:25:37 +06:00
|
|
|
// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE
|
2008-03-07 12:47:05 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +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
|
2014-02-20 18:25:37 +06:00
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
2008-03-07 12:47:05 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +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.
|
2008-03-07 12:47:05 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +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
|
2008-03-07 12:47:05 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2008-03-07 12:47:05 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// File : SMESHGUI_ComputeDlg.cxx
|
|
|
|
// Author : Edward AGAPOV, Open CASCADE S.A.S.
|
|
|
|
// SMESH includes
|
2008-03-07 12:47:05 +05:00
|
|
|
//
|
|
|
|
#include "SMESHGUI_ComputeDlg.h"
|
|
|
|
|
|
|
|
#include "SMESHGUI.h"
|
|
|
|
#include "SMESHGUI_GEOMGenUtils.h"
|
|
|
|
#include "SMESHGUI_MeshUtils.h"
|
|
|
|
#include "SMESHGUI_VTKUtils.h"
|
2012-08-09 16:03:55 +06:00
|
|
|
#include "SMESHGUI_MeshInfosBox.h"
|
2008-03-07 12:47:05 +05:00
|
|
|
#include "SMESHGUI_HypothesesUtils.h"
|
2009-02-17 10:27:49 +05:00
|
|
|
#include "SMESHGUI_MeshEditPreview.h"
|
2012-08-09 16:03:55 +06:00
|
|
|
#include "SMESHGUI_MeshOrderOp.h"
|
|
|
|
#include "SMESHGUI_MeshOrderDlg.h"
|
|
|
|
|
2013-06-21 11:33:07 +06:00
|
|
|
#include "SMESH_Actor.h"
|
2009-02-17 10:27:49 +05:00
|
|
|
#include "SMESH_ActorUtils.h"
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
#include <SMDS_SetIterator.hxx>
|
2008-03-07 12:47:05 +05:00
|
|
|
#include <SMDS_Mesh.hxx>
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// SALOME GEOM includes
|
|
|
|
#include <GEOMBase.h>
|
|
|
|
#include <GEOM_Actor.h>
|
2013-02-12 20:37:44 +06:00
|
|
|
#include <GEOM_wrap.hxx>
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
// SALOME GUI includes
|
|
|
|
#include <LightApp_SelectionMgr.h>
|
|
|
|
#include <LightApp_UpdateFlags.h>
|
|
|
|
#include <SALOME_ListIO.hxx>
|
|
|
|
#include <SVTK_ViewWindow.h>
|
|
|
|
#include <SVTK_ViewModel.h>
|
|
|
|
#include <SalomeApp_Application.h>
|
|
|
|
#include <SUIT_ResourceMgr.h>
|
|
|
|
#include <SUIT_OverrideCursor.h>
|
|
|
|
#include <SUIT_MessageBox.h>
|
|
|
|
#include <SUIT_Desktop.h>
|
|
|
|
#include <QtxComboBox.h>
|
|
|
|
|
|
|
|
// SALOME KERNEL includes
|
|
|
|
#include <SALOMEDS_SObject.hxx>
|
|
|
|
#include <SALOMEDSClient_SObject.hxx>
|
2013-02-12 20:37:44 +06:00
|
|
|
#include <SALOMEDS_wrap.hxx>
|
2009-02-17 10:27:49 +05:00
|
|
|
|
2013-05-21 15:09:04 +06:00
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Group)
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// OCCT includes
|
2008-03-07 12:47:05 +05:00
|
|
|
#include <BRep_Tool.hxx>
|
|
|
|
#include <TopExp.hxx>
|
|
|
|
#include <TopExp_Explorer.hxx>
|
|
|
|
#include <TopTools_IndexedMapOfShape.hxx>
|
|
|
|
#include <TopoDS.hxx>
|
|
|
|
|
|
|
|
#include <TopLoc_Location.hxx>
|
|
|
|
#include <Poly_Triangulation.hxx>
|
|
|
|
#include <Bnd_Box.hxx>
|
|
|
|
#include <BRepBndLib.hxx>
|
|
|
|
#include <BRepMesh_IncrementalMesh.hxx>
|
|
|
|
|
|
|
|
#include <Standard_ErrorHandler.hxx>
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// Qt includes
|
|
|
|
#include <QFrame>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QRadioButton>
|
|
|
|
#include <QTableWidget>
|
|
|
|
#include <QHeaderView>
|
|
|
|
#include <QGridLayout>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QButtonGroup>
|
2012-08-09 16:03:55 +06:00
|
|
|
#include <QCloseEvent>
|
|
|
|
#include <QTimerEvent>
|
2013-07-03 22:01:42 +06:00
|
|
|
#include <QProgressBar>
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
// VTK includes
|
2008-03-07 12:47:05 +05:00
|
|
|
#include <vtkProperty.h>
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// STL includes
|
2008-03-07 12:47:05 +05:00
|
|
|
#include <vector>
|
|
|
|
#include <set>
|
|
|
|
|
2013-06-20 20:29:16 +06:00
|
|
|
#ifndef WIN32
|
|
|
|
#include <sys/sysinfo.h>
|
|
|
|
#endif
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
#define SPACING 6
|
|
|
|
#define MARGIN 11
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
#define COLONIZE(str) (QString(str).contains(":") > 0 ? QString(str) : QString(str) + " :" )
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
enum TCol {
|
|
|
|
COL_ALGO = 0, COL_SHAPE, COL_ERROR, COL_SHAPEID, COL_PUBLISHED, COL_BAD_MESH, NB_COLUMNS
|
|
|
|
};
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
//using namespace SMESH;
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
namespace SMESH
|
|
|
|
{
|
2008-03-07 12:47:05 +05:00
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Allocate some memory at construction and release it at destruction.
|
|
|
|
* Is used to be able to continue working after mesh generation or visualization
|
|
|
|
* break due to lack of memory
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
struct MemoryReserve
|
|
|
|
{
|
|
|
|
char* myBuf;
|
|
|
|
MemoryReserve(): myBuf( new char[1024*1024*1] ){} // 1M
|
2009-02-17 10:27:49 +05:00
|
|
|
void release() { delete [] myBuf; myBuf = 0; }
|
|
|
|
~MemoryReserve() { release(); }
|
2008-03-07 12:47:05 +05:00
|
|
|
};
|
|
|
|
|
|
|
|
// =========================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Class showing shapes without publishing
|
|
|
|
*/
|
|
|
|
// =========================================================================================
|
|
|
|
|
|
|
|
class TShapeDisplayer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
TShapeDisplayer(): myViewWindow(0)
|
|
|
|
{
|
|
|
|
myProperty = vtkProperty::New();
|
|
|
|
myProperty->SetRepresentationToWireframe();
|
|
|
|
myProperty->SetColor( 250, 0, 250 );
|
|
|
|
myProperty->SetAmbientColor( 250, 0, 250 );
|
|
|
|
myProperty->SetDiffuseColor( 250, 0, 250 );
|
|
|
|
//myProperty->SetSpecularColor( 250, 0, 250 );
|
|
|
|
myProperty->SetLineWidth( 5 );
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
~TShapeDisplayer()
|
|
|
|
{
|
|
|
|
DeleteActors();
|
|
|
|
myProperty->Delete();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
void DeleteActors()
|
|
|
|
{
|
|
|
|
if ( hasViewWindow() ) {
|
|
|
|
TActorIterator actorIt = actorIterator();
|
|
|
|
while ( actorIt.more() )
|
|
|
|
if (VTKViewer_Actor* anActor = actorIt.next()) {
|
|
|
|
myViewWindow->RemoveActor( anActor );
|
|
|
|
//anActor->Delete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
myIndexToShape.Clear();
|
|
|
|
myActors.clear();
|
|
|
|
myShownActors.clear();
|
|
|
|
myBuiltSubs.clear();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
void SetVisibility (bool theVisibility)
|
|
|
|
{
|
|
|
|
TActorIterator actorIt = shownIterator();
|
|
|
|
while ( actorIt.more() )
|
|
|
|
if (VTKViewer_Actor* anActor = actorIt.next())
|
|
|
|
anActor->SetVisibility(theVisibility);
|
|
|
|
SMESH::RepaintCurrentView();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
bool HasReadyActorsFor (int subShapeID, GEOM::GEOM_Object_var aMainShape )
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
std::string mainEntry;
|
2008-03-07 12:47:05 +05:00
|
|
|
if ( !aMainShape->_is_nil() )
|
|
|
|
mainEntry = aMainShape->GetStudyEntry();
|
|
|
|
return ( myMainEntry == mainEntry &&
|
|
|
|
myBuiltSubs.find( subShapeID ) != myBuiltSubs.end() );
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
void Show( int subShapeID, GEOM::GEOM_Object_var aMainShape, bool only = false)
|
|
|
|
{
|
|
|
|
SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( SMESHGUI::GetSMESHGUI() );
|
2013-12-18 21:08:18 +06:00
|
|
|
SUIT_ResourceMgr* resMgr = SMESH::GetResourceMgr( SMESHGUI::GetSMESHGUI() );
|
2009-02-17 10:27:49 +05:00
|
|
|
std::string mainEntry;
|
2008-03-07 12:47:05 +05:00
|
|
|
if ( !aMainShape->_is_nil() )
|
|
|
|
mainEntry = aMainShape->GetStudyEntry();
|
|
|
|
if ( myMainEntry != mainEntry || aViewWindow != myViewWindow ) { // remove actors
|
|
|
|
DeleteActors();
|
|
|
|
TopoDS_Shape aShape;
|
|
|
|
if ( !aMainShape->_is_nil() && GEOMBase::GetShape(aMainShape, aShape)) {
|
|
|
|
checkTriangulation( aShape );
|
|
|
|
TopExp::MapShapes(aShape, myIndexToShape);
|
|
|
|
myActors.resize( myIndexToShape.Extent(), 0 );
|
|
|
|
myShownActors.reserve( myIndexToShape.Extent() );
|
|
|
|
}
|
|
|
|
myMainEntry = mainEntry;
|
|
|
|
myViewWindow = aViewWindow;
|
|
|
|
}
|
|
|
|
if ( only ) { // hide shown actors
|
|
|
|
TActorIterator actorIt = shownIterator();
|
|
|
|
while ( actorIt.more() )
|
|
|
|
if (VTKViewer_Actor* anActor = actorIt.next())
|
|
|
|
anActor->SetVisibility(false);
|
|
|
|
myShownActors.clear();
|
|
|
|
}
|
|
|
|
// find actors to show
|
|
|
|
TopoDS_Shape aShape = myIndexToShape( subShapeID );
|
|
|
|
if ( !aShape.IsNull() ) {
|
|
|
|
TopAbs_ShapeEnum type( aShape.ShapeType() >= TopAbs_WIRE ? TopAbs_EDGE : TopAbs_FACE );
|
|
|
|
for ( TopExp_Explorer exp( aShape, type ); exp.More(); exp.Next() ) {
|
|
|
|
//checkTriangulation( exp.Current() );
|
2013-12-18 21:08:18 +06:00
|
|
|
if ( GEOM_Actor* anActor = getActor( exp.Current() ) ) {
|
|
|
|
int UNbIsos = resMgr->integerValue( "Geometry", "iso_number_u", 1);
|
|
|
|
int VNbIsos = resMgr->integerValue( "Geometry", "iso_number_v", 1);
|
|
|
|
int aNbIsos[2] = { UNbIsos ? UNbIsos : 1, VNbIsos ? VNbIsos : 1 };
|
|
|
|
anActor->SetNbIsos( aNbIsos );
|
2008-03-07 12:47:05 +05:00
|
|
|
myShownActors.push_back( anActor );
|
2013-12-18 21:08:18 +06:00
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
if ( type == TopAbs_FACE ) {
|
|
|
|
for ( TopExp_Explorer exp( aShape, TopAbs_EDGE ); exp.More(); exp.Next() ) {
|
|
|
|
const TopoDS_Edge & edge = TopoDS::Edge( exp.Current() );
|
|
|
|
if ( !BRep_Tool::Degenerated( edge ))
|
|
|
|
if ( GEOM_Actor* anActor = getActor( exp.Current() ))
|
|
|
|
myShownActors.push_back( anActor );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
myBuiltSubs.insert( subShapeID );
|
|
|
|
SetVisibility(true);
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
typedef std::vector<GEOM_Actor*> TActorVec;
|
|
|
|
TActorVec myActors;
|
|
|
|
TActorVec myShownActors;
|
|
|
|
TopTools_IndexedMapOfShape myIndexToShape;
|
2009-02-17 10:27:49 +05:00
|
|
|
std::string myMainEntry;
|
2008-03-07 12:47:05 +05:00
|
|
|
SVTK_ViewWindow* myViewWindow;
|
|
|
|
vtkProperty* myProperty;
|
|
|
|
std::set<int> myBuiltSubs;
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
typedef SMDS_SetIterator< GEOM_Actor*, TActorVec::const_iterator> TActorIterator;
|
|
|
|
TActorIterator actorIterator() {
|
|
|
|
return TActorIterator( myActors.begin(), myActors.end() );
|
|
|
|
}
|
|
|
|
TActorIterator shownIterator() {
|
|
|
|
return TActorIterator( myShownActors.begin(), myShownActors.end() );
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
GEOM_Actor* getActor(const TopoDS_Shape& shape)
|
|
|
|
{
|
|
|
|
int index = myIndexToShape.FindIndex( shape ) - 1;
|
|
|
|
if ( index < 0 || index >= myActors.size() )
|
|
|
|
return 0;
|
|
|
|
GEOM_Actor* & actor = myActors[ index ];
|
|
|
|
if ( !actor ) {
|
|
|
|
actor = GEOM_Actor::New();
|
|
|
|
if ( actor ) {
|
2009-02-17 10:27:49 +05:00
|
|
|
actor->SetShape(shape,0,0);
|
|
|
|
actor->SetProperty(myProperty);
|
2008-03-07 12:47:05 +05:00
|
|
|
actor->SetShadingProperty(myProperty);
|
|
|
|
actor->SetWireframeProperty(myProperty);
|
|
|
|
actor->SetPreviewProperty(myProperty);
|
|
|
|
actor->PickableOff();
|
|
|
|
// if ( shape.ShapeType() == TopAbs_EDGE )
|
|
|
|
// actor->SubShapeOn();
|
|
|
|
myViewWindow->AddActor( actor );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return actor;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
void checkTriangulation(const TopoDS_Shape& shape)
|
|
|
|
{
|
|
|
|
TopLoc_Location aLoc;
|
|
|
|
Standard_Boolean alreadymesh = Standard_True;
|
|
|
|
TopExp_Explorer ex(shape, TopAbs_FACE);
|
|
|
|
if ( ex.More() )
|
2009-02-17 10:27:49 +05:00
|
|
|
for ( ; ex.More(); ex.Next()) {
|
2008-03-07 12:47:05 +05:00
|
|
|
const TopoDS_Face& aFace = TopoDS::Face(ex.Current());
|
|
|
|
Handle(Poly_Triangulation) aPoly = BRep_Tool::Triangulation(aFace,aLoc);
|
|
|
|
if(aPoly.IsNull()) { alreadymesh = Standard_False; break; }
|
|
|
|
}
|
|
|
|
else
|
|
|
|
for (ex.Init(shape, TopAbs_EDGE); ex.More(); ex.Next()) {
|
|
|
|
const TopoDS_Edge& edge = TopoDS::Edge(ex.Current());
|
|
|
|
Handle(Poly_Polygon3D) aPoly = BRep_Tool::Polygon3D(edge, aLoc);
|
|
|
|
if(aPoly.IsNull()) { alreadymesh = Standard_False; break; }
|
|
|
|
}
|
|
|
|
if (alreadymesh) return;
|
|
|
|
// Compute default deflection
|
|
|
|
Bnd_Box B;
|
|
|
|
BRepBndLib::Add(shape, B);
|
|
|
|
Standard_Real aXmin, aYmin, aZmin, aXmax, aYmax, aZmax;
|
|
|
|
B.Get(aXmin, aYmin, aZmin, aXmax, aYmax, aZmax);
|
2009-02-17 10:27:49 +05:00
|
|
|
double deflection = Max( aXmax-aXmin, Max ( aYmax-aYmin, aZmax-aZmin)) * 0.01 *4;
|
2008-03-07 12:47:05 +05:00
|
|
|
BRepMesh_IncrementalMesh MESH(shape,deflection);
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
bool hasViewWindow() const
|
|
|
|
{
|
|
|
|
if ( !myViewWindow ) return false;
|
|
|
|
|
|
|
|
if ( SalomeApp_Application* anApp = SMESHGUI::GetSMESHGUI()->getApp() )
|
|
|
|
return FindVtkViewWindow( anApp->getViewManager(SVTK_Viewer::Type(), false ),
|
|
|
|
myViewWindow );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// =========================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Return text describing an error
|
|
|
|
*/
|
|
|
|
#define CASE2TEXT(enum) case SMESH::enum: text = QObject::tr( #enum ); break;
|
|
|
|
QString errorText(int errCode, const char* comment)
|
|
|
|
{
|
|
|
|
QString text;
|
|
|
|
switch ( errCode ) {
|
2012-10-08 17:56:59 +06:00
|
|
|
CASE2TEXT( COMPERR_OK );
|
|
|
|
CASE2TEXT( COMPERR_BAD_INPUT_MESH );
|
|
|
|
CASE2TEXT( COMPERR_STD_EXCEPTION );
|
|
|
|
CASE2TEXT( COMPERR_OCC_EXCEPTION );
|
2008-03-07 12:47:05 +05:00
|
|
|
case SMESH::COMPERR_SLM_EXCEPTION: break; // avoid double "Salome exception"
|
2012-10-08 17:56:59 +06:00
|
|
|
CASE2TEXT( COMPERR_EXCEPTION );
|
|
|
|
CASE2TEXT( COMPERR_MEMORY_PB );
|
|
|
|
CASE2TEXT( COMPERR_BAD_SHAPE );
|
|
|
|
CASE2TEXT( COMPERR_CANCELED );
|
|
|
|
CASE2TEXT( COMPERR_NO_MESH_ON_SHAPE );
|
2013-11-22 18:34:58 +06:00
|
|
|
CASE2TEXT( COMPERR_BAD_PARMETERS );
|
2008-03-07 12:47:05 +05:00
|
|
|
case SMESH::COMPERR_ALGO_FAILED:
|
|
|
|
if ( strlen(comment) == 0 )
|
|
|
|
text = QObject::tr("COMPERR_ALGO_FAILED");
|
|
|
|
break;
|
2012-08-09 16:03:55 +06:00
|
|
|
case SMESH::COMPERR_WARNING:
|
2013-05-24 17:49:50 +06:00
|
|
|
text = QObject::tr( (comment && strlen(comment)) ? "COMPERR_WARNING" : "COMPERR_UNKNOWN");
|
|
|
|
break;
|
2008-03-07 12:47:05 +05:00
|
|
|
default:
|
|
|
|
text = QString("#%1").arg( -errCode );
|
|
|
|
}
|
|
|
|
if ( text.length() > 0 ) text += ". ";
|
|
|
|
return text + comment;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
/*!
|
2012-08-09 16:03:55 +06:00
|
|
|
* \brief Return SO of a sub-shape
|
2008-03-07 12:47:05 +05:00
|
|
|
*/
|
|
|
|
_PTR(SObject) getSubShapeSO( int subShapeID, GEOM::GEOM_Object_var aMainShape)
|
|
|
|
{
|
|
|
|
_PTR(SObject) so = SMESH::FindSObject(aMainShape);
|
|
|
|
if ( subShapeID == 1 || !so )
|
|
|
|
return so;
|
|
|
|
_PTR(ChildIterator) it;
|
|
|
|
if (_PTR(Study) study = SMESH::GetActiveStudyDocument())
|
|
|
|
it = study->NewChildIterator(so);
|
|
|
|
_PTR(SObject) subSO;
|
|
|
|
if ( it ) {
|
|
|
|
for ( it->InitEx(true); !subSO && it->More(); it->Next() ) {
|
|
|
|
GEOM::GEOM_Object_var geom = SMESH::SObjectToInterface<GEOM::GEOM_Object>( it->Value() );
|
|
|
|
if ( !geom->_is_nil() ) {
|
|
|
|
GEOM::ListOfLong_var list = geom->GetSubShapeIndices();
|
|
|
|
if ( list->length() == 1 && list[0] == subShapeID )
|
2014-01-10 14:01:57 +06:00
|
|
|
{
|
|
|
|
GEOM::GEOM_Object_var mainGO = geom->GetMainShape();
|
|
|
|
if ( aMainShape->IsSame( mainGO ))
|
|
|
|
subSO = it->Value();
|
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return subSO;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
/*!
|
2013-02-12 20:37:44 +06:00
|
|
|
* \brief Return sub-shape by ID. WARNING: UnRegister() must be called on a result
|
2008-03-07 12:47:05 +05:00
|
|
|
*/
|
|
|
|
GEOM::GEOM_Object_ptr getSubShape( int subShapeID, GEOM::GEOM_Object_var aMainShape)
|
|
|
|
{
|
|
|
|
GEOM::GEOM_Object_var aSubShape;
|
2013-02-12 20:37:44 +06:00
|
|
|
if ( subShapeID == 1 ) {
|
2008-03-07 12:47:05 +05:00
|
|
|
aSubShape = aMainShape;
|
2013-02-12 20:37:44 +06:00
|
|
|
aSubShape->Register();
|
|
|
|
}
|
|
|
|
else if ( _PTR(SObject) so = getSubShapeSO( subShapeID, aMainShape )) {
|
2008-03-07 12:47:05 +05:00
|
|
|
aSubShape = SMESH::SObjectToInterface<GEOM::GEOM_Object>( so );
|
2013-02-12 20:37:44 +06:00
|
|
|
aSubShape->Register();
|
|
|
|
}
|
|
|
|
else {
|
2008-03-07 12:47:05 +05:00
|
|
|
aSubShape = SMESH::GetSubShape( aMainShape, subShapeID );
|
2013-02-12 20:37:44 +06:00
|
|
|
// future call of UnRegister() will delete a servant of this new object
|
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
return aSubShape._retn();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
/*!
|
|
|
|
* \brief Return shape type name
|
|
|
|
*/
|
|
|
|
#define CASE2NAME(enum) case GEOM::enum: name = QObject::tr( "GEOM_" #enum ); break;
|
|
|
|
QString shapeTypeName(GEOM::GEOM_Object_var aShape, const char* dflt = "" )
|
|
|
|
{
|
|
|
|
QString name = dflt;
|
|
|
|
if ( !aShape->_is_nil() ) {
|
|
|
|
switch ( aShape->GetShapeType() ) {
|
|
|
|
CASE2NAME( VERTEX );
|
|
|
|
CASE2NAME( EDGE );
|
|
|
|
CASE2NAME( WIRE );
|
|
|
|
CASE2NAME( FACE );
|
|
|
|
CASE2NAME( SHELL );
|
|
|
|
CASE2NAME( SOLID );
|
|
|
|
CASE2NAME( COMPSOLID );
|
|
|
|
CASE2NAME( COMPOUND );
|
|
|
|
default:;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
/*!
|
2012-08-09 16:03:55 +06:00
|
|
|
* \brief Return text describing a sub-shape
|
2008-03-07 12:47:05 +05:00
|
|
|
*/
|
|
|
|
QString shapeText(int subShapeID, GEOM::GEOM_Object_var aMainShape )
|
|
|
|
{
|
|
|
|
QString text;
|
2014-01-09 21:08:07 +06:00
|
|
|
if ( _PTR(SObject) aSO = getSubShapeSO( subShapeID, aMainShape )) {
|
|
|
|
text = aSO->GetName().c_str();
|
|
|
|
text += QString(" (%1)").arg( aSO->GetID().c_str() );
|
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
else {
|
|
|
|
text = QString("#%1").arg( subShapeID );
|
2013-02-12 20:37:44 +06:00
|
|
|
GEOM::GEOM_Object_wrap shape = getSubShape( subShapeID, aMainShape );
|
|
|
|
QString typeName = shapeTypeName( shape );
|
2008-03-07 12:47:05 +05:00
|
|
|
if ( typeName.length() )
|
|
|
|
text += QString(" (%1)").arg(typeName);
|
|
|
|
}
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
/*!
|
|
|
|
* \brief Return a list of selected rows
|
|
|
|
*/
|
2009-02-17 10:27:49 +05:00
|
|
|
int getSelectedRows(QTableWidget* table, QList<int>& rows)
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
|
|
|
rows.clear();
|
2009-02-17 10:27:49 +05:00
|
|
|
QList<QTableWidgetSelectionRange> selRanges = table->selectedRanges();
|
|
|
|
QTableWidgetSelectionRange range;
|
|
|
|
foreach( range, selRanges )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
for ( int row = range.topRow(); row <= range.bottomRow(); ++row )
|
2013-05-21 15:09:04 +06:00
|
|
|
if ( !rows.count( row ))
|
|
|
|
rows.append( row );
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( rows.isEmpty() && table->currentRow() > -1 )
|
2013-05-21 15:09:04 +06:00
|
|
|
if ( !rows.count( table->currentRow() ))
|
|
|
|
rows.append( table->currentRow() );
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
return rows.count();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace SMESH
|
|
|
|
|
|
|
|
|
|
|
|
// =========================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Dialog to compute a mesh and show computation errors
|
|
|
|
*/
|
|
|
|
//=======================================================================
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESHGUI_ComputeDlg::SMESHGUI_ComputeDlg( QWidget* parent, bool ForEval )
|
2009-02-17 10:27:49 +05:00
|
|
|
: SMESHGUI_Dialog( parent, false, true, Close/* | Help*/ )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
QVBoxLayout* aDlgLay = new QVBoxLayout (mainFrame());
|
|
|
|
aDlgLay->setMargin( 0 );
|
|
|
|
aDlgLay->setSpacing( SPACING );
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
QFrame* aMainFrame = createMainFrame(mainFrame(),ForEval);
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
aDlgLay->addWidget(aMainFrame);
|
|
|
|
|
|
|
|
aDlgLay->setStretchFactor(aMainFrame, 1);
|
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// =========================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Destructor
|
|
|
|
*/
|
|
|
|
//=======================================================================
|
|
|
|
|
|
|
|
SMESHGUI_ComputeDlg::~SMESHGUI_ComputeDlg()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
//=======================================================================
|
|
|
|
// function : createMainFrame()
|
|
|
|
// purpose : Create frame containing dialog's fields
|
|
|
|
//=======================================================================
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
QFrame* SMESHGUI_ComputeDlg::createMainFrame (QWidget* theParent, bool ForEval)
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
|
|
|
QFrame* aFrame = new QFrame(theParent);
|
|
|
|
|
|
|
|
SUIT_ResourceMgr* rm = resourceMgr();
|
|
|
|
QPixmap iconCompute (rm->loadPixmap("SMESH", tr("ICON_COMPUTE")));
|
|
|
|
|
|
|
|
// constructor
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
QGroupBox* aPixGrp;
|
|
|
|
if(ForEval) {
|
|
|
|
aPixGrp = new QGroupBox(tr("EVAL_DLG"), aFrame);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aPixGrp = new QGroupBox(tr("CONSTRUCTOR"), aFrame);
|
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
QButtonGroup* aBtnGrp = new QButtonGroup(this);
|
|
|
|
QHBoxLayout* aPixGrpLayout = new QHBoxLayout(aPixGrp);
|
|
|
|
aPixGrpLayout->setMargin(MARGIN); aPixGrpLayout->setSpacing(SPACING);
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
QRadioButton* aRBut = new QRadioButton(aPixGrp);
|
2009-02-17 10:27:49 +05:00
|
|
|
aRBut->setIcon(iconCompute);
|
|
|
|
aRBut->setChecked(true);
|
|
|
|
aPixGrpLayout->addWidget(aRBut);
|
|
|
|
aBtnGrp->addButton(aRBut, 0);
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
// Mesh name
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
QGroupBox* nameBox = new QGroupBox(tr("SMESH_MESHINFO_NAME"), aFrame );
|
|
|
|
QHBoxLayout* nameBoxLayout = new QHBoxLayout(nameBox);
|
|
|
|
nameBoxLayout->setMargin(MARGIN); nameBoxLayout->setSpacing(SPACING);
|
2008-03-07 12:47:05 +05:00
|
|
|
myMeshName = new QLabel(nameBox);
|
2009-02-17 10:27:49 +05:00
|
|
|
nameBoxLayout->addWidget(myMeshName);
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
// Mesh Info
|
|
|
|
|
|
|
|
myBriefInfo = new SMESHGUI_MeshInfosBox(false, aFrame);
|
|
|
|
myFullInfo = new SMESHGUI_MeshInfosBox(true, aFrame);
|
|
|
|
|
|
|
|
// Computation errors
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
myCompErrorGroup = new QGroupBox(tr("ERRORS"), aFrame);
|
2012-08-09 16:03:55 +06:00
|
|
|
myWarningLabel = new QLabel(QString("<b>%1</b>").arg(tr("COMPUTE_WARNING")), myCompErrorGroup);
|
|
|
|
myTable = new QTableWidget( 1, NB_COLUMNS, myCompErrorGroup);
|
|
|
|
myShowBtn = new QPushButton(tr("SHOW_SHAPE"), myCompErrorGroup);
|
|
|
|
myPublishBtn = new QPushButton(tr("PUBLISH_SHAPE"), myCompErrorGroup);
|
|
|
|
myBadMeshBtn = new QPushButton(tr("SHOW_BAD_MESH"), myCompErrorGroup);
|
2013-05-21 15:09:04 +06:00
|
|
|
myBadMeshToGroupBtn = new QPushButton(tr("GROUP_OF_BAD_MESH"), myCompErrorGroup);
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
//myTable->setReadOnly( true ); // VSR: check
|
|
|
|
myTable->setEditTriggers( QAbstractItemView::NoEditTriggers );
|
2008-03-07 12:47:05 +05:00
|
|
|
myTable->hideColumn( COL_PUBLISHED );
|
|
|
|
myTable->hideColumn( COL_SHAPEID );
|
2009-02-17 10:27:49 +05:00
|
|
|
myTable->hideColumn( COL_BAD_MESH );
|
|
|
|
myTable->horizontalHeader()->setResizeMode( COL_ERROR, QHeaderView::Interactive );
|
2012-10-08 17:56:59 +06:00
|
|
|
myTable->setWordWrap( true );
|
|
|
|
myTable->horizontalHeader()->setStretchLastSection( true );
|
|
|
|
myTable->setMinimumWidth( 500 );
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
QStringList headers;
|
|
|
|
headers << tr( "COL_ALGO_HEADER" );
|
|
|
|
headers << tr( "COL_SHAPE_HEADER" );
|
|
|
|
headers << tr( "COL_ERROR_HEADER" );
|
|
|
|
headers << tr( "COL_SHAPEID_HEADER" );
|
|
|
|
headers << tr( "COL_PUBLISHED_HEADER" );
|
|
|
|
|
|
|
|
myTable->setHorizontalHeaderLabels( headers );
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
// layouting
|
2009-02-17 10:27:49 +05:00
|
|
|
QGridLayout* grpLayout = new QGridLayout(myCompErrorGroup);
|
2008-03-07 12:47:05 +05:00
|
|
|
grpLayout->setSpacing(SPACING);
|
|
|
|
grpLayout->setMargin(MARGIN);
|
2013-05-21 15:09:04 +06:00
|
|
|
grpLayout->addWidget( myWarningLabel, 0, 0, 1, 4 );
|
|
|
|
grpLayout->addWidget( myTable, 1, 0, 1, 4 );
|
|
|
|
grpLayout->addWidget( myShowBtn, 2, 0 );
|
|
|
|
grpLayout->addWidget( myPublishBtn, 2, 1 );
|
|
|
|
grpLayout->addWidget( myBadMeshBtn, 2, 2 );
|
|
|
|
grpLayout->addWidget( myBadMeshToGroupBtn, 2, 3 );
|
2012-10-08 17:56:59 +06:00
|
|
|
grpLayout->setColumnStretch( 3, 1 );
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
// Hypothesis definition errors
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
myHypErrorGroup = new QGroupBox(tr("SMESH_WRN_MISSING_PARAMETERS"), aFrame);
|
|
|
|
QHBoxLayout* myHypErrorGroupLayout = new QHBoxLayout(myHypErrorGroup);
|
|
|
|
myHypErrorGroupLayout->setMargin(MARGIN);
|
|
|
|
myHypErrorGroupLayout->setSpacing(SPACING);
|
2008-03-07 12:47:05 +05:00
|
|
|
myHypErrorLabel = new QLabel(myHypErrorGroup);
|
2009-02-17 10:27:49 +05:00
|
|
|
myHypErrorGroupLayout->addWidget(myHypErrorLabel);
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
// Memory Lack Label
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
myMemoryLackGroup = new QGroupBox(tr("ERRORS"), aFrame);
|
|
|
|
QVBoxLayout* myMemoryLackGroupLayout = new QVBoxLayout(myMemoryLackGroup);
|
|
|
|
myMemoryLackGroupLayout->setMargin(MARGIN);
|
|
|
|
myMemoryLackGroupLayout->setSpacing(SPACING);
|
2008-03-07 12:47:05 +05:00
|
|
|
QLabel* memLackLabel = new QLabel(tr("MEMORY_LACK"), myMemoryLackGroup);
|
|
|
|
QFont bold = memLackLabel->font(); bold.setBold(true);
|
|
|
|
memLackLabel->setFont( bold );
|
|
|
|
memLackLabel->setMinimumWidth(300);
|
2009-02-17 10:27:49 +05:00
|
|
|
myMemoryLackGroupLayout->addWidget(memLackLabel);
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
// add all widgets to aFrame
|
|
|
|
QVBoxLayout* aLay = new QVBoxLayout(aFrame);
|
2014-03-21 22:58:45 +06:00
|
|
|
aLay->setMargin( MARGIN );
|
|
|
|
aLay->setSpacing( SPACING );
|
2008-03-07 12:47:05 +05:00
|
|
|
aLay->addWidget( aPixGrp );
|
|
|
|
aLay->addWidget( nameBox );
|
|
|
|
aLay->addWidget( myBriefInfo );
|
|
|
|
aLay->addWidget( myFullInfo );
|
|
|
|
aLay->addWidget( myHypErrorGroup );
|
|
|
|
aLay->addWidget( myCompErrorGroup );
|
|
|
|
aLay->addWidget( myMemoryLackGroup );
|
|
|
|
aLay->setStretchFactor( myCompErrorGroup, 1 );
|
|
|
|
|
|
|
|
((QPushButton*) button( OK ))->setDefault( true );
|
|
|
|
|
|
|
|
return aFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Constructor
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESHGUI_BaseComputeOp::SMESHGUI_BaseComputeOp()
|
2012-08-09 16:03:55 +06:00
|
|
|
: SMESHGUI_Operation(), myCompDlg( 0 )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
myTShapeDisplayer = new SMESH::TShapeDisplayer();
|
|
|
|
myBadMeshDisplayer = 0;
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
//myHelpFileName = "/files/about_meshes.htm"; // V3
|
|
|
|
myHelpFileName = "about_meshes_page.html"; // V4
|
|
|
|
}
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::SMESH_Mesh_ptr SMESHGUI_BaseComputeOp::getMesh()
|
|
|
|
{
|
|
|
|
LightApp_SelectionMgr* Sel = selectionMgr();
|
|
|
|
SALOME_ListIO selected; Sel->selectedObjects( selected );
|
|
|
|
Handle(SALOME_InteractiveObject) anIO = selected.First();
|
|
|
|
SMESH::SMESH_Mesh_var aMesh = SMESH::GetMeshByIO(anIO);
|
|
|
|
return myMesh->_is_nil() ? aMesh._retn() : SMESH::SMESH_Mesh::_duplicate( myMesh );
|
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Start operation
|
|
|
|
* \purpose Init dialog fields, connect signals and slots, show dialog
|
|
|
|
*/
|
|
|
|
//================================================================================
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_BaseComputeOp::startOperation()
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
// create compute dialog if not created before
|
|
|
|
computeDlg();
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
myMesh = SMESH::SMESH_Mesh::_nil();
|
2008-03-07 12:47:05 +05:00
|
|
|
myMainShape = GEOM::GEOM_Object::_nil();
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// check selection
|
2008-03-07 12:47:05 +05:00
|
|
|
LightApp_SelectionMgr *Sel = selectionMgr();
|
|
|
|
SALOME_ListIO selected; Sel->selectedObjects( selected );
|
|
|
|
|
|
|
|
int nbSel = selected.Extent();
|
|
|
|
if (nbSel != 1) {
|
2009-02-17 10:27:49 +05:00
|
|
|
SUIT_MessageBox::warning(desktop(),
|
2012-08-09 16:03:55 +06:00
|
|
|
tr("SMESH_WRN_WARNING"),
|
|
|
|
tr("SMESH_WRN_NO_AVAILABLE_DATA"));
|
2008-03-07 12:47:05 +05:00
|
|
|
onCancel();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
myIObject = selected.First();
|
|
|
|
myMesh = SMESH::GetMeshByIO(myIObject);
|
|
|
|
if (myMesh->_is_nil()) {
|
|
|
|
SUIT_MessageBox::warning(desktop(),
|
2012-08-09 16:03:55 +06:00
|
|
|
tr("SMESH_WRN_WARNING"),
|
|
|
|
tr("SMESH_WRN_NO_AVAILABLE_DATA"));
|
2008-03-07 12:47:05 +05:00
|
|
|
onCancel();
|
2012-08-09 16:03:55 +06:00
|
|
|
return;
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
myMainShape = myMesh->GetShapeToMesh();
|
|
|
|
|
|
|
|
SMESHGUI_Operation::startOperation();
|
|
|
|
}
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
//================================================================================
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHGUI_ComputeDlg_QThread::SMESHGUI_ComputeDlg_QThread(SMESH::SMESH_Gen_var gen,
|
|
|
|
SMESH::SMESH_Mesh_var mesh,
|
|
|
|
GEOM::GEOM_Object_var mainShape)
|
|
|
|
{
|
|
|
|
myResult = false;
|
|
|
|
myGen = gen;
|
|
|
|
myMesh = mesh;
|
|
|
|
myMainShape = mainShape;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMESHGUI_ComputeDlg_QThread::run()
|
|
|
|
{
|
|
|
|
myResult = myGen->Compute(myMesh, myMainShape);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SMESHGUI_ComputeDlg_QThread::result()
|
|
|
|
{
|
|
|
|
return myResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMESHGUI_ComputeDlg_QThread::cancel()
|
|
|
|
{
|
|
|
|
myGen->CancelCompute(myMesh, myMainShape);
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
//================================================================================
|
|
|
|
|
2013-02-12 20:37:44 +06:00
|
|
|
SMESHGUI_ComputeDlg_QThreadQDialog::SMESHGUI_ComputeDlg_QThreadQDialog(QWidget * parent,
|
|
|
|
SMESH::SMESH_Gen_var gen,
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::SMESH_Mesh_var mesh,
|
|
|
|
GEOM::GEOM_Object_var mainShape)
|
2013-02-12 20:37:44 +06:00
|
|
|
: QDialog(parent,
|
|
|
|
Qt::WindowSystemMenuHint |
|
|
|
|
Qt::WindowCloseButtonHint |
|
|
|
|
Qt::Dialog |
|
|
|
|
Qt::WindowMaximizeButtonHint),
|
2012-08-09 16:03:55 +06:00
|
|
|
qthread(gen, mesh, mainShape)
|
|
|
|
{
|
|
|
|
// --
|
2013-07-03 22:01:42 +06:00
|
|
|
setWindowTitle(tr("TITLE"));
|
2013-02-12 20:37:44 +06:00
|
|
|
setMinimumWidth( 200 );
|
|
|
|
|
2013-07-03 22:01:42 +06:00
|
|
|
cancelButton = new QPushButton(tr("CANCEL"));
|
2012-08-09 16:03:55 +06:00
|
|
|
cancelButton->setDefault(true);
|
2013-07-09 17:57:50 +06:00
|
|
|
cancelButton->setCheckable(true);
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
QLabel * nbNodesName = new QLabel(tr("SMESH_MESHINFO_NODES"), this );
|
|
|
|
QLabel * nbElemsName = new QLabel(tr("SMESH_MESHINFO_ELEMENTS"), this );
|
|
|
|
nbNodesLabel = new QLabel("0", this );
|
|
|
|
nbElemsLabel = new QLabel("0", this );
|
2014-01-09 20:20:44 +06:00
|
|
|
#ifndef WIN32
|
|
|
|
QLabel * freeRAMName = new QLabel(tr("SMESH_FREERAM"), this );
|
2013-06-20 20:29:16 +06:00
|
|
|
freeRAMLabel = new QLabel("", this );
|
2014-01-09 20:20:44 +06:00
|
|
|
#endif
|
2013-07-03 22:01:42 +06:00
|
|
|
progressBar = new QProgressBar(this);
|
|
|
|
progressBar->setMinimum( 0 );
|
|
|
|
progressBar->setMaximum( 1000 );
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
QGridLayout* layout = new QGridLayout(this);
|
|
|
|
layout->setMargin( MARGIN );
|
|
|
|
layout->setSpacing( SPACING );
|
2013-06-20 20:29:16 +06:00
|
|
|
int row = 0;
|
|
|
|
layout->addWidget(nbNodesName, row, 0);
|
|
|
|
layout->addWidget(nbNodesLabel, row++, 1);
|
|
|
|
layout->addWidget(nbElemsName, row, 0);
|
|
|
|
layout->addWidget(nbElemsLabel, row++, 1);
|
2013-10-18 19:29:00 +06:00
|
|
|
#ifndef WIN32
|
2013-06-20 20:29:16 +06:00
|
|
|
layout->addWidget(freeRAMName, row, 0);
|
|
|
|
layout->addWidget(freeRAMLabel, row++, 1);
|
|
|
|
#endif
|
2013-07-03 22:01:42 +06:00
|
|
|
layout->addWidget(progressBar, row++, 0, 1, 2);
|
|
|
|
layout->addWidget(cancelButton, row++, 0, 1, 2);
|
2013-02-12 20:37:44 +06:00
|
|
|
adjustSize();
|
|
|
|
update();
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
connect(cancelButton, SIGNAL(clicked()), this, SLOT(onCancel()));
|
|
|
|
// --
|
2013-02-12 20:37:44 +06:00
|
|
|
startTimer(300); // millisecs
|
2012-08-09 16:03:55 +06:00
|
|
|
qthread.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SMESHGUI_ComputeDlg_QThreadQDialog::result()
|
|
|
|
{
|
|
|
|
return qthread.result();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMESHGUI_ComputeDlg_QThreadQDialog::onCancel()
|
|
|
|
{
|
|
|
|
qthread.cancel();
|
2013-07-03 22:01:42 +06:00
|
|
|
cancelButton->setText( tr("CANCELING"));
|
2013-07-09 17:57:50 +06:00
|
|
|
cancelButton->setEnabled(false);
|
2013-07-03 22:01:42 +06:00
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
void SMESHGUI_ComputeDlg_QThreadQDialog::timerEvent(QTimerEvent *event)
|
|
|
|
{
|
2013-07-09 17:57:50 +06:00
|
|
|
if ( !cancelButton->isChecked() ) // not yet cancelled
|
2013-07-03 22:01:42 +06:00
|
|
|
progressBar->setValue( progressBar->maximum() * qthread.getMesh()->GetComputeProgress() );
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
if(qthread.isFinished())
|
2013-06-20 20:29:16 +06:00
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nbNodesLabel->setText( QString("%1").arg( qthread.getMesh()->NbNodes() ));
|
|
|
|
nbElemsLabel->setText( QString("%1").arg( qthread.getMesh()->NbElements() ));
|
2013-10-18 19:29:00 +06:00
|
|
|
#ifndef WIN32
|
2013-06-20 20:29:16 +06:00
|
|
|
struct sysinfo si;
|
|
|
|
const int err = sysinfo( &si );
|
|
|
|
if ( err )
|
|
|
|
freeRAMLabel->setText("");
|
|
|
|
else
|
|
|
|
freeRAMLabel->setText( tr("SMESH_GIGABYTE").arg
|
|
|
|
( si.freeram * si.mem_unit /1024./1024./1024., 0, 'f', 2 ));
|
|
|
|
#endif
|
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMESHGUI_ComputeDlg_QThreadQDialog::closeEvent(QCloseEvent *event)
|
|
|
|
{
|
|
|
|
if(qthread.isRunning())
|
2013-06-20 20:29:16 +06:00
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
event->ignore();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief computeMesh()
|
|
|
|
*/
|
|
|
|
//================================================================================
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_BaseComputeOp::computeMesh()
|
|
|
|
{
|
2008-03-07 12:47:05 +05:00
|
|
|
// COMPUTE MESH
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESH::MemoryReserve aMemoryReserve;
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
SMESH::compute_error_array_var aCompErrors;
|
|
|
|
QString aHypErrors;
|
|
|
|
|
|
|
|
bool computeFailed = true, memoryLack = false;
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
_PTR(SObject) aMeshSObj = SMESH::FindSObject(myMesh);
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( !aMeshSObj ) // IPAL 21340
|
|
|
|
return;
|
2009-02-17 10:27:49 +05:00
|
|
|
bool hasShape = myMesh->HasShapeToMesh();
|
2008-03-07 12:47:05 +05:00
|
|
|
bool shapeOK = myMainShape->_is_nil() ? !hasShape : hasShape;
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( shapeOK )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
myCompDlg->myMeshName->setText( aMeshSObj->GetName().c_str() );
|
2008-03-07 12:47:05 +05:00
|
|
|
SMESH::SMESH_Gen_var gen = getSMESHGUI()->GetSMESHGen();
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESH::algo_error_array_var errors = gen->GetAlgoState(myMesh,myMainShape);
|
2008-03-07 12:47:05 +05:00
|
|
|
if ( errors->length() > 0 ) {
|
|
|
|
aHypErrors = SMESH::GetMessageOnAlgoStateErrors( errors.in() );
|
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( myMesh->HasModificationsToDiscard() && // issue 0020693
|
|
|
|
SUIT_MessageBox::question( desktop(), tr( "SMESH_WARNING" ),
|
|
|
|
tr( "FULL_RECOMPUTE_QUESTION" ),
|
|
|
|
tr( "SMESH_BUT_YES" ), tr( "SMESH_BUT_NO" ), 1, 0 ) == 0 )
|
|
|
|
myMesh->Clear();
|
2008-03-07 12:47:05 +05:00
|
|
|
SUIT_OverrideCursor aWaitCursor;
|
|
|
|
try {
|
|
|
|
#if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESHGUI_ComputeDlg_QThreadQDialog qthreaddialog(desktop(), gen, myMesh, myMainShape);
|
|
|
|
qthreaddialog.exec();
|
2013-07-03 22:01:42 +06:00
|
|
|
computeFailed = !qthreaddialog.result();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
2013-05-16 23:16:44 +06:00
|
|
|
catch(const SALOME::SALOME_Exception & S_ex) {
|
2008-03-07 12:47:05 +05:00
|
|
|
memoryLack = true;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
#if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
2009-02-17 10:27:49 +05:00
|
|
|
aCompErrors = gen->GetComputeErrors( myMesh, myMainShape );
|
2008-03-07 12:47:05 +05:00
|
|
|
// check if there are memory problems
|
|
|
|
for ( int i = 0; (i < aCompErrors->length()) && !memoryLack; ++i )
|
|
|
|
memoryLack = ( aCompErrors[ i ].code == SMESH::COMPERR_MEMORY_PB );
|
|
|
|
}
|
2013-05-16 23:16:44 +06:00
|
|
|
catch(const SALOME::SALOME_Exception & S_ex) {
|
2008-03-07 12:47:05 +05:00
|
|
|
memoryLack = true;
|
|
|
|
}
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( !memoryLack && !SMDS_Mesh::CheckMemory(true) ) { // has memory to show dialog boxes?
|
|
|
|
memoryLack = true;
|
|
|
|
}
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
// NPAL16631: if ( !memoryLack )
|
|
|
|
{
|
2014-04-07 17:45:23 +06:00
|
|
|
SMESH::ModifiedMesh( aMeshSObj,
|
|
|
|
!computeFailed && aHypErrors.isEmpty(),
|
|
|
|
myMesh->NbNodes() == 0);
|
2008-03-07 12:47:05 +05:00
|
|
|
update( UF_ObjBrowser | UF_Model );
|
|
|
|
|
|
|
|
// SHOW MESH
|
|
|
|
// NPAL16631: if ( getSMESHGUI()->automaticUpdate() )
|
2012-08-09 16:03:55 +06:00
|
|
|
SUIT_ResourceMgr* resMgr = SMESH::GetResourceMgr( SMESHGUI::GetSMESHGUI() );
|
|
|
|
bool limitExceeded;
|
2013-06-21 11:33:07 +06:00
|
|
|
long limitSize = resMgr->integerValue( "SMESH", "update_limit", 500000 );
|
|
|
|
int entities = SMESH_Actor::eAllEntity;
|
2013-08-05 14:35:32 +06:00
|
|
|
int hidden = 0;
|
2014-04-08 15:20:55 +06:00
|
|
|
long nbElements = 0;
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( !memoryLack )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2014-04-08 15:20:55 +06:00
|
|
|
// List of objects that will be updated automatically
|
|
|
|
QList< QPair< SMESH::SMESH_IDSource_var, _PTR(SObject) > > aListToUpdate;
|
|
|
|
SMESH::SMESH_IDSource_var aMeshObj = SMESH::SObjectToInterface<SMESH::SMESH_IDSource>( aMeshSObj );
|
|
|
|
// put Mesh into list
|
|
|
|
aListToUpdate.append( QPair< SMESH::SMESH_IDSource_var, _PTR(SObject) >(aMeshObj, aMeshSObj) );
|
|
|
|
SMESH::submesh_array_var aSubMeshes = myMesh->GetSubMeshes();
|
|
|
|
// put SubMeshes into list
|
|
|
|
for ( int i = 0; i < aSubMeshes->length(); i++ ) {
|
|
|
|
SMESH::SMESH_subMesh_var sm = aSubMeshes[i];
|
|
|
|
if ( CORBA::is_nil( sm ) ) continue;
|
|
|
|
_PTR(SObject) smSObj = SMESH::ObjectToSObject( sm );
|
|
|
|
if ( !smSObj ) continue;
|
|
|
|
SMESH::SMESH_IDSource_var aSubMeshObj = SMESH::SObjectToInterface<SMESH::SMESH_IDSource>( smSObj );
|
|
|
|
aListToUpdate.append( QPair< SMESH::SMESH_IDSource_var, _PTR(SObject) >(aSubMeshObj, smSObj) );
|
|
|
|
}
|
|
|
|
// put Groups into list
|
|
|
|
SMESH::ListOfGroups_var aGroups = myMesh->GetGroups();
|
|
|
|
for ( size_t i = 0; i < aGroups->length(); ++i ) {
|
|
|
|
SMESH::SMESH_GroupBase_var aGrp = aGroups[i];
|
|
|
|
if ( CORBA::is_nil( aGrp ) ) continue;
|
|
|
|
SMESH::SMESH_Group_var aStdGroup = SMESH::SMESH_Group::_narrow( aGrp );
|
|
|
|
SMESH::SMESH_GroupOnGeom_var aGeomGroup = SMESH::SMESH_GroupOnGeom::_narrow( aGrp );
|
|
|
|
SMESH::SMESH_GroupOnFilter_var aFltGroup = SMESH::SMESH_GroupOnFilter::_narrow( aGrp );
|
|
|
|
if ( !aStdGroup->_is_nil() ) continue; // don't update the standalone groups
|
|
|
|
_PTR(SObject) aGroupSO = SMESH::FindSObject( aGrp );
|
|
|
|
if ( !aGroupSO ) continue;
|
|
|
|
SMESH::SMESH_IDSource_var aGroupObj = SMESH::SObjectToInterface<SMESH::SMESH_IDSource>( aGroupSO );
|
|
|
|
aListToUpdate.append( QPair< SMESH::SMESH_IDSource_var, _PTR(SObject) >(aGroupObj, aGroupSO) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// update mesh, sub-mesh and groups, if it's possible
|
|
|
|
QList< QPair< SMESH::SMESH_IDSource_var, _PTR(SObject) > >::iterator anIter;
|
|
|
|
for( anIter = aListToUpdate.begin(); anIter != aListToUpdate.end(); anIter++ ) {
|
|
|
|
SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_narrow( SMESH::SObjectToObject( (*anIter).second ));
|
|
|
|
if ( getSMESHGUI()->automaticUpdate( (*anIter).first, &entities, &limitExceeded, &hidden, &nbElements ) )
|
|
|
|
{
|
|
|
|
try {
|
2008-03-07 12:47:05 +05:00
|
|
|
#if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
|
2014-04-08 15:20:55 +06:00
|
|
|
OCC_CATCH_SIGNALS;
|
2008-03-07 12:47:05 +05:00
|
|
|
#endif
|
2014-04-08 15:20:55 +06:00
|
|
|
bool toDisplay = false;
|
|
|
|
|
|
|
|
if ( !aMesh->_is_nil() ) { // display a mesh only
|
|
|
|
toDisplay = true;
|
|
|
|
SMESH_Actor *anActor = SMESH::FindActorByObject( aMesh );
|
|
|
|
if ( !anActor ) anActor = SMESH::CreateActor( (*anIter).second->GetStudy(), (*anIter).second->GetID().c_str(), true );
|
|
|
|
if ( anActor ) // actor is not created for an empty mesh
|
|
|
|
{
|
|
|
|
anActor->SetEntityMode( entities );
|
|
|
|
SMESH::DisplayActor( SMESH::GetActiveWindow(), anActor );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Handle(SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject
|
|
|
|
( (*anIter).second->GetID().c_str(), "SMESH", (*anIter).second->GetName().c_str() );
|
|
|
|
SMESH::Update(anIO, toDisplay);
|
|
|
|
|
|
|
|
if ( limitExceeded && !aMesh->_is_nil() )
|
|
|
|
{
|
|
|
|
QStringList hiddenMsg;
|
|
|
|
if ( hidden & SMESH_Actor::e0DElements ) hiddenMsg << tr( "SMESH_ELEMS0D" );
|
|
|
|
if ( hidden & SMESH_Actor::eEdges ) hiddenMsg << tr( "SMESH_EDGES" );
|
|
|
|
if ( hidden & SMESH_Actor::eFaces ) hiddenMsg << tr( "SMESH_FACES" );
|
|
|
|
if ( hidden & SMESH_Actor::eVolumes ) hiddenMsg << tr( "SMESH_VOLUMES" );
|
|
|
|
if ( hidden & SMESH_Actor::eBallElem ) hiddenMsg << tr( "SMESH_BALLS" );
|
|
|
|
SUIT_MessageBox::warning( desktop(),
|
|
|
|
tr( "SMESH_WRN_WARNING" ),
|
|
|
|
tr( "SMESH_WRN_SIZE_INC_LIMIT_EXCEEDED" ).arg( nbElements ).arg( limitSize ).arg( hiddenMsg.join(", ") ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (...) {
|
2008-03-07 12:47:05 +05:00
|
|
|
#ifdef _DEBUG_
|
2014-04-08 15:20:55 +06:00
|
|
|
MESSAGE ( "Exception thrown during mesh visualization" );
|
2008-03-07 12:47:05 +05:00
|
|
|
#endif
|
2014-04-08 15:20:55 +06:00
|
|
|
if ( SMDS_Mesh::CheckMemory(true) ) { // has memory to show warning?
|
|
|
|
SMESH::OnVisuException();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
memoryLack = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( limitExceeded && !aMesh->_is_nil() )
|
|
|
|
{
|
|
|
|
SUIT_MessageBox::warning( desktop(),
|
|
|
|
tr( "SMESH_WRN_WARNING" ),
|
|
|
|
tr( "SMESH_WRN_SIZE_LIMIT_EXCEEDED" ).arg( nbElements ).arg( limitSize ) );
|
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
LightApp_SelectionMgr *Sel = selectionMgr();
|
|
|
|
if ( Sel )
|
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
SALOME_ListIO selected;
|
|
|
|
selected.Append( myIObject );
|
|
|
|
Sel->setSelectedObjects( selected );
|
2009-02-17 10:27:49 +05:00
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( memoryLack )
|
|
|
|
aMemoryReserve.release();
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
myCompDlg->setWindowTitle(tr( computeFailed ? "SMESH_WRN_COMPUTE_FAILED" : "SMESH_COMPUTE_SUCCEED"));
|
|
|
|
|
|
|
|
// SHOW ERRORS
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
bool noCompError = ( !aCompErrors.operator->() || aCompErrors->length() == 0 );
|
|
|
|
bool noHypoError = ( aHypErrors.isEmpty() );
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
SUIT_ResourceMgr* resMgr = SMESH::GetResourceMgr( SMESHGUI::GetSMESHGUI() );
|
|
|
|
int aNotifyMode = resMgr->integerValue( "SMESH", "show_result_notification" );
|
|
|
|
|
|
|
|
bool isShowResultDlg = true;
|
|
|
|
switch( aNotifyMode ) {
|
|
|
|
case 0: // show the mesh computation result dialog NEVER
|
|
|
|
isShowResultDlg = false;
|
|
|
|
commit();
|
|
|
|
break;
|
|
|
|
case 1: // show the mesh computation result dialog if there are some errors
|
|
|
|
if ( memoryLack || !noCompError || !noHypoError )
|
|
|
|
isShowResultDlg = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
isShowResultDlg = false;
|
|
|
|
commit();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: // show the result dialog after each mesh computation
|
|
|
|
isShowResultDlg = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// SHOW RESULTS
|
|
|
|
if ( isShowResultDlg )
|
|
|
|
showComputeResult( memoryLack, noCompError,aCompErrors, noHypoError, aHypErrors );
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMESHGUI_BaseComputeOp::showComputeResult( const bool theMemoryLack,
|
2012-08-09 16:03:55 +06:00
|
|
|
const bool theNoCompError,
|
|
|
|
SMESH::compute_error_array_var& theCompErrors,
|
|
|
|
const bool theNoHypoError,
|
|
|
|
const QString& theHypErrors )
|
2009-02-17 10:27:49 +05:00
|
|
|
{
|
|
|
|
bool hasShape = myMesh->HasShapeToMesh();
|
|
|
|
SMESHGUI_ComputeDlg* aCompDlg = computeDlg();
|
|
|
|
aCompDlg->myMemoryLackGroup->hide();
|
|
|
|
|
|
|
|
if ( theMemoryLack )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
aCompDlg->myMemoryLackGroup->show();
|
|
|
|
aCompDlg->myFullInfo->hide();
|
|
|
|
aCompDlg->myBriefInfo->hide();
|
|
|
|
aCompDlg->myHypErrorGroup->hide();
|
|
|
|
aCompDlg->myCompErrorGroup->hide();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
else if ( theNoCompError && theNoHypoError )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::long_array_var aRes = myMesh->GetMeshInfo();
|
|
|
|
aCompDlg->myFullInfo->SetMeshInfo( aRes );
|
2009-02-17 10:27:49 +05:00
|
|
|
aCompDlg->myFullInfo->show();
|
|
|
|
aCompDlg->myBriefInfo->hide();
|
|
|
|
aCompDlg->myHypErrorGroup->hide();
|
|
|
|
aCompDlg->myCompErrorGroup->hide();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
bool onlyWarnings = !theNoCompError; // == valid mesh computed but there are errors reported
|
|
|
|
for ( int i = 0; i < theCompErrors->length() && onlyWarnings; ++i )
|
2012-10-08 17:56:59 +06:00
|
|
|
onlyWarnings = ( theCompErrors[ i ].code == SMESH::COMPERR_WARNING ||
|
|
|
|
theCompErrors[ i ].code == SMESH::COMPERR_NO_MESH_ON_SHAPE );
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
// full or brief mesh info
|
|
|
|
SMESH::long_array_var aRes = myMesh->GetMeshInfo();
|
|
|
|
if ( onlyWarnings ) {
|
|
|
|
aCompDlg->myFullInfo->SetMeshInfo( aRes );
|
|
|
|
aCompDlg->myFullInfo->show();
|
|
|
|
aCompDlg->myBriefInfo->hide();
|
|
|
|
} else {
|
|
|
|
aCompDlg->myBriefInfo->SetMeshInfo( aRes );
|
|
|
|
aCompDlg->myBriefInfo->show();
|
|
|
|
aCompDlg->myFullInfo->hide();
|
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
// pbs of hypo dfinitions
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( theNoHypoError ) {
|
|
|
|
aCompDlg->myHypErrorGroup->hide();
|
2012-08-09 16:03:55 +06:00
|
|
|
} else {
|
2009-02-17 10:27:49 +05:00
|
|
|
aCompDlg->myHypErrorGroup->show();
|
|
|
|
aCompDlg->myHypErrorLabel->setText( theHypErrors );
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
// table of errors
|
|
|
|
if ( theNoCompError )
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
aCompDlg->myCompErrorGroup->hide();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
else
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
aCompDlg->myCompErrorGroup->show();
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( onlyWarnings )
|
|
|
|
aCompDlg->myWarningLabel->show();
|
|
|
|
else
|
|
|
|
aCompDlg->myWarningLabel->hide();
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
if ( !hasShape ) {
|
2009-02-17 10:27:49 +05:00
|
|
|
aCompDlg->myPublishBtn->hide();
|
|
|
|
aCompDlg->myShowBtn->hide();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
else {
|
2009-02-17 10:27:49 +05:00
|
|
|
aCompDlg->myPublishBtn->show();
|
|
|
|
aCompDlg->myShowBtn->show();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
// fill table of errors
|
2012-08-09 16:03:55 +06:00
|
|
|
QTableWidget* tbl = aCompDlg->myTable;
|
2009-02-17 10:27:49 +05:00
|
|
|
tbl->setRowCount( theCompErrors->length() );
|
2008-03-07 12:47:05 +05:00
|
|
|
if ( !hasShape ) tbl->hideColumn( COL_SHAPE );
|
|
|
|
else tbl->showColumn( COL_SHAPE );
|
|
|
|
tbl->setColumnWidth( COL_ERROR, 200 );
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
bool hasBadMesh = false;
|
|
|
|
for ( int row = 0; row < theCompErrors->length(); ++row )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESH::ComputeError & err = theCompErrors[ row ];
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
QString text = err.algoName.in();
|
|
|
|
if ( !tbl->item( row, COL_ALGO ) ) tbl->setItem( row, COL_ALGO, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_ALGO )->setText( text );
|
2009-02-17 10:27:49 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
text = SMESH::errorText( err.code, err.comment.in() );
|
|
|
|
if ( !tbl->item( row, COL_ERROR ) ) tbl->setItem( row, COL_ERROR, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_ERROR )->setText( text );
|
2009-02-17 10:27:49 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
text = QString("%1").arg( err.subShapeID );
|
|
|
|
if ( !tbl->item( row, COL_SHAPEID ) ) tbl->setItem( row, COL_SHAPEID, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_SHAPEID )->setText( text );
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
text = hasShape ? SMESH::shapeText( err.subShapeID, myMainShape ) : QString("");
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( !tbl->item( row, COL_SHAPE ) ) tbl->setItem( row, COL_SHAPE, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_SHAPE )->setText( text );
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
text = ( !hasShape || SMESH::getSubShapeSO( err.subShapeID, myMainShape )) ? "PUBLISHED" : "";
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( !tbl->item( row, COL_PUBLISHED ) ) tbl->setItem( row, COL_PUBLISHED, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_PUBLISHED )->setText( text ); // if text=="", "PUBLISH" button enabled
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
text = err.hasBadMesh ? "hasBadMesh" : "";
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( !tbl->item( row, COL_BAD_MESH ) ) tbl->setItem( row, COL_BAD_MESH, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_BAD_MESH )->setText( text );
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( err.hasBadMesh ) hasBadMesh = true;
|
|
|
|
|
|
|
|
//tbl->item( row, COL_ERROR )->setWordWrap( true ); // VSR: TODO ???
|
|
|
|
tbl->resizeRowToContents( row );
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
tbl->resizeColumnToContents( COL_ALGO );
|
|
|
|
tbl->resizeColumnToContents( COL_SHAPE );
|
2012-10-08 17:56:59 +06:00
|
|
|
tbl->setWordWrap( true );
|
2009-02-17 10:27:49 +05:00
|
|
|
|
2013-05-21 15:09:04 +06:00
|
|
|
if ( hasBadMesh ) {
|
2009-02-17 10:27:49 +05:00
|
|
|
aCompDlg->myBadMeshBtn->show();
|
2013-05-21 15:09:04 +06:00
|
|
|
aCompDlg->myBadMeshToGroupBtn->show();
|
|
|
|
}
|
|
|
|
else {
|
2009-02-17 10:27:49 +05:00
|
|
|
aCompDlg->myBadMeshBtn->hide();
|
2013-05-21 15:09:04 +06:00
|
|
|
aCompDlg->myBadMeshToGroupBtn->hide();
|
|
|
|
}
|
2008-03-07 12:47:05 +05:00
|
|
|
tbl->setCurrentCell(0,0);
|
|
|
|
currentCellChanged(); // to update buttons
|
|
|
|
}
|
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
// show dialog and wait, becase Compute can be invoked from Preview operation
|
|
|
|
//aCompDlg->exec(); // this way it becomes modal - impossible to rotate model in the Viewer
|
|
|
|
aCompDlg->show();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Stops operation
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_BaseComputeOp::stopOperation()
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
|
|
|
SMESHGUI_Operation::stopOperation();
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( myTShapeDisplayer )
|
|
|
|
myTShapeDisplayer->SetVisibility( false );
|
|
|
|
if ( myBadMeshDisplayer ) {
|
|
|
|
myBadMeshDisplayer->SetVisibility( false );
|
|
|
|
// delete it in order not to have problems at its destruction when the viewer
|
|
|
|
// where it worked is dead due to e.g. study closing
|
|
|
|
delete myBadMeshDisplayer;
|
|
|
|
myBadMeshDisplayer = 0;
|
|
|
|
}
|
|
|
|
myIObject.Nullify();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
2012-08-09 16:03:55 +06:00
|
|
|
* \brief publish selected sub-shape
|
2008-03-07 12:47:05 +05:00
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_BaseComputeOp::onPublishShape()
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
|
|
|
GEOM::GEOM_Gen_var geomGen = SMESH::GetGEOMGen();
|
|
|
|
SALOMEDS::Study_var study = SMESHGUI::GetSMESHGen()->GetCurrentStudy();
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
QList<int> rows;
|
|
|
|
SMESH::getSelectedRows( table(), rows );
|
|
|
|
int row;
|
|
|
|
foreach ( row, rows )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
int curSub = table()->item(row, COL_SHAPEID)->text().toInt();
|
2013-02-12 20:37:44 +06:00
|
|
|
GEOM::GEOM_Object_wrap shape = SMESH::getSubShape( curSub, myMainShape );
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( !shape->_is_nil() && ! SMESH::getSubShapeSO( curSub, myMainShape ))
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( !SMESH::getSubShapeSO( 1, myMainShape )) // the main shape not published
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
QString name = GEOMBase::GetDefaultName( SMESH::shapeTypeName( myMainShape, "MAIN_SHAPE" ));
|
2013-02-12 20:37:44 +06:00
|
|
|
SALOMEDS::SObject_wrap so =
|
2009-02-17 10:27:49 +05:00
|
|
|
geomGen->AddInStudy( study, myMainShape, name.toLatin1().data(), GEOM::GEOM_Object::_nil());
|
2008-03-07 12:47:05 +05:00
|
|
|
// look for myMainShape in the table
|
2009-02-17 10:27:49 +05:00
|
|
|
for ( int r = 0, nr = table()->rowCount(); r < nr; ++r ) {
|
|
|
|
if ( table()->item( r, COL_SHAPEID )->text() == "1" ) {
|
2008-03-07 12:47:05 +05:00
|
|
|
if ( so->_is_nil() ) {
|
2013-02-12 20:37:44 +06:00
|
|
|
CORBA::String_var name = so->GetName();
|
|
|
|
CORBA::String_var entry = so->GetID();
|
2014-01-10 14:01:57 +06:00
|
|
|
QString shapeText = QString("%1 (%2)").arg( name.in() ).arg( entry.in() );
|
|
|
|
table()->item( r, COL_SHAPE )->setText( shapeText );
|
2013-02-12 20:37:44 +06:00
|
|
|
table()->item( r, COL_PUBLISHED )->setText( entry.in() );
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( curSub == 1 ) continue;
|
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
QString name = GEOMBase::GetDefaultName( SMESH::shapeTypeName( shape, "ERROR_SHAPE" ));
|
2013-02-12 20:37:44 +06:00
|
|
|
SALOMEDS::SObject_wrap so = geomGen->AddInStudy( study, shape, name.toLatin1().data(), myMainShape);
|
2008-03-07 12:47:05 +05:00
|
|
|
if ( !so->_is_nil() ) {
|
2013-02-12 20:37:44 +06:00
|
|
|
CORBA::String_var name = so->GetName();
|
|
|
|
CORBA::String_var entry = so->GetID();
|
2014-01-10 14:01:57 +06:00
|
|
|
QString shapeText = QString("%1 (%2)").arg( name.in() ).arg( entry.in() );
|
|
|
|
table()->item( row, COL_SHAPE )->setText( shapeText );
|
2013-02-12 20:37:44 +06:00
|
|
|
table()->item( row, COL_PUBLISHED )->setText( entry.in() );
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
getSMESHGUI()->getApp()->updateObjectBrowser();
|
|
|
|
currentCellChanged(); // to update buttons
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
2009-02-17 10:27:49 +05:00
|
|
|
* \brief show mesh elements preventing computation of a submesh of current row
|
2008-03-07 12:47:05 +05:00
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_BaseComputeOp::onShowBadMesh()
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
|
|
|
myTShapeDisplayer->SetVisibility( false );
|
2009-02-17 10:27:49 +05:00
|
|
|
QList<int> rows;
|
|
|
|
if ( SMESH::getSelectedRows( table(), rows ) == 1 ) {
|
|
|
|
bool hasBadMesh = ( !table()->item(rows.front(), COL_BAD_MESH)->text().isEmpty() );
|
|
|
|
if ( hasBadMesh ) {
|
|
|
|
int curSub = table()->item(rows.front(), COL_SHAPEID)->text().toInt();
|
|
|
|
SMESHGUI* gui = getSMESHGUI();
|
|
|
|
SMESH::SMESH_Gen_var gen = gui->GetSMESHGen();
|
|
|
|
SVTK_ViewWindow* view = SMESH::GetViewWindow( gui );
|
|
|
|
if ( myBadMeshDisplayer ) delete myBadMeshDisplayer;
|
|
|
|
myBadMeshDisplayer = new SMESHGUI_MeshEditPreview( view );
|
|
|
|
SMESH::MeshPreviewStruct_var aMeshData = gen->GetBadInputElements(myMesh,curSub);
|
2013-03-01 19:13:25 +06:00
|
|
|
double aPointSize = SMESH::GetFloat("SMESH:node_size",3);
|
|
|
|
double aLineWidth = SMESH::GetFloat("SMESH:element_width",1);
|
2009-02-17 10:27:49 +05:00
|
|
|
vtkProperty* prop = vtkProperty::New();
|
|
|
|
prop->SetLineWidth( aLineWidth * 3 );
|
|
|
|
prop->SetPointSize( aPointSize * 3 );
|
|
|
|
prop->SetColor( 250, 0, 250 );
|
|
|
|
myBadMeshDisplayer->GetActor()->SetProperty( prop );
|
|
|
|
myBadMeshDisplayer->SetData( aMeshData._retn() );
|
2012-10-08 17:56:59 +06:00
|
|
|
prop->Delete();
|
2009-02-17 10:27:49 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-21 15:09:04 +06:00
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief create groups of bad mesh elements preventing computation of a submesh of current row
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void SMESHGUI_BaseComputeOp::onGroupOfBadMesh()
|
|
|
|
{
|
|
|
|
QList<int> rows;
|
|
|
|
SMESH::getSelectedRows( table(), rows );
|
|
|
|
int row;
|
|
|
|
foreach ( row, rows )
|
|
|
|
{
|
|
|
|
bool hasBadMesh = ( !table()->item(row, COL_BAD_MESH)->text().isEmpty() );
|
|
|
|
if ( hasBadMesh ) {
|
|
|
|
int curSub = table()->item(rows.front(), COL_SHAPEID)->text().toInt();
|
|
|
|
QString grName = table()->item(rows.front(), COL_SHAPE)->text();
|
|
|
|
if ( grName.isEmpty() ) grName = "bad mesh";
|
|
|
|
else grName = "bad mesh of " + grName;
|
|
|
|
SMESH::SMESH_Gen_var gen = getSMESHGUI()->GetSMESHGen();
|
|
|
|
SMESH::ListOfGroups_var groups
|
|
|
|
( gen->MakeGroupsOfBadInputElements(myMesh,curSub,grName.toLatin1().data()) );
|
|
|
|
update( UF_ObjBrowser | UF_Model );
|
|
|
|
if( LightApp_Application* anApp = dynamic_cast<LightApp_Application*>( application() ))
|
|
|
|
{
|
|
|
|
QStringList anEntryList;
|
|
|
|
for ( size_t i = 0; i < groups->length(); ++i )
|
|
|
|
if ( _PTR(SObject) so = SMESH::FindSObject( groups[i] ))
|
|
|
|
anEntryList.append( so->GetID().c_str() );
|
|
|
|
|
|
|
|
if ( !anEntryList.isEmpty())
|
|
|
|
anApp->browseObjects( anEntryList, true, false );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief SLOT called when a selected cell in table() changed
|
|
|
|
*/
|
|
|
|
//================================================================================
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_BaseComputeOp::currentCellChanged()
|
|
|
|
{
|
|
|
|
myTShapeDisplayer->SetVisibility( false );
|
|
|
|
if ( myBadMeshDisplayer )
|
|
|
|
myBadMeshDisplayer->SetVisibility( false );
|
|
|
|
|
|
|
|
bool publishEnable = 0, showEnable = 0, showOnly = 1, hasBadMesh = 0;
|
|
|
|
QList<int> rows;
|
|
|
|
int nbSelected = SMESH::getSelectedRows( table(), rows );
|
|
|
|
int row;
|
|
|
|
foreach ( row, rows )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
bool hasData = ( !table()->item( row, COL_SHAPE )->text().isEmpty() );
|
|
|
|
bool isPublished = ( !table()->item( row, COL_PUBLISHED )->text().isEmpty() );
|
2008-03-07 12:47:05 +05:00
|
|
|
if ( hasData && !isPublished )
|
|
|
|
publishEnable = true;
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
int curSub = table()->item( row, COL_SHAPEID )->text().toInt();
|
2008-03-07 12:47:05 +05:00
|
|
|
bool prsReady = myTShapeDisplayer->HasReadyActorsFor( curSub, myMainShape );
|
|
|
|
if ( prsReady ) {
|
|
|
|
myTShapeDisplayer->Show( curSub, myMainShape, showOnly );
|
|
|
|
showOnly = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
showEnable = true;
|
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
if ( !table()->item(row, COL_BAD_MESH)->text().isEmpty() )
|
|
|
|
hasBadMesh = true;
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
myCompDlg->myPublishBtn->setEnabled( publishEnable );
|
|
|
|
myCompDlg->myShowBtn ->setEnabled( showEnable );
|
|
|
|
myCompDlg->myBadMeshBtn->setEnabled( hasBadMesh && ( nbSelected == 1 ));
|
2013-11-18 16:27:22 +06:00
|
|
|
myCompDlg->myBadMeshToGroupBtn->setEnabled( hasBadMesh && ( nbSelected == 1 ));
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief update preview
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_BaseComputeOp::onPreviewShape()
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
|
|
|
if ( myTShapeDisplayer )
|
|
|
|
{
|
|
|
|
SUIT_OverrideCursor aWaitCursor;
|
2009-02-17 10:27:49 +05:00
|
|
|
QList<int> rows;
|
|
|
|
SMESH::getSelectedRows( table(), rows );
|
2008-03-07 12:47:05 +05:00
|
|
|
|
|
|
|
bool showOnly = true;
|
2009-02-17 10:27:49 +05:00
|
|
|
int row;
|
|
|
|
foreach ( row, rows )
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
int curSub = table()->item( row, COL_SHAPEID )->text().toInt();
|
2008-03-07 12:47:05 +05:00
|
|
|
if ( curSub > 0 ) {
|
|
|
|
myTShapeDisplayer->Show( curSub, myMainShape, showOnly );
|
|
|
|
showOnly = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
currentCellChanged(); // to update buttons
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Destructor
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESHGUI_BaseComputeOp::~SMESHGUI_BaseComputeOp()
|
|
|
|
{
|
|
|
|
delete myCompDlg;
|
|
|
|
myCompDlg = 0;
|
|
|
|
delete myTShapeDisplayer;
|
|
|
|
if ( myBadMeshDisplayer )
|
|
|
|
delete myBadMeshDisplayer;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Gets dialog of compute operation
|
|
|
|
* \retval SMESHGUI_ComputeDlg* - pointer to dialog of this operation
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHGUI_ComputeDlg* SMESHGUI_BaseComputeOp::computeDlg() const
|
|
|
|
{
|
|
|
|
if ( !myCompDlg )
|
|
|
|
{
|
|
|
|
SMESHGUI_BaseComputeOp* me = (SMESHGUI_BaseComputeOp*)this;
|
2012-08-09 16:03:55 +06:00
|
|
|
me->myCompDlg = new SMESHGUI_ComputeDlg( desktop(), false );
|
2009-02-17 10:27:49 +05:00
|
|
|
// connect signals and slots
|
2013-05-21 15:09:04 +06:00
|
|
|
connect(myCompDlg->myShowBtn, SIGNAL (clicked()), SLOT(onPreviewShape()));
|
|
|
|
connect(myCompDlg->myPublishBtn, SIGNAL (clicked()), SLOT(onPublishShape()));
|
|
|
|
connect(myCompDlg->myBadMeshBtn, SIGNAL (clicked()), SLOT(onShowBadMesh()));
|
|
|
|
connect(myCompDlg->myBadMeshToGroupBtn, SIGNAL (clicked()), SLOT(onGroupOfBadMesh()));
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
QTableWidget* aTable = me->table();
|
|
|
|
connect(aTable, SIGNAL(itemSelectionChanged()), SLOT(currentCellChanged()));
|
|
|
|
connect(aTable, SIGNAL(currentCellChanged(int,int,int,int)), SLOT(currentCellChanged()));
|
|
|
|
}
|
|
|
|
return myCompDlg;
|
|
|
|
}
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief returns from compute mesh result dialog
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
bool SMESHGUI_BaseComputeOp::onApply()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Return a table
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
QTableWidget* SMESHGUI_BaseComputeOp::table()
|
|
|
|
{
|
|
|
|
return myCompDlg->myTable;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Constructor
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHGUI_ComputeOp::SMESHGUI_ComputeOp()
|
|
|
|
: SMESHGUI_BaseComputeOp()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Desctructor
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
SMESHGUI_ComputeOp::~SMESHGUI_ComputeOp()
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief perform it's intention action: compute mesh
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void SMESHGUI_ComputeOp::startOperation()
|
|
|
|
{
|
|
|
|
SMESHGUI_BaseComputeOp::startOperation();
|
2012-08-09 16:03:55 +06:00
|
|
|
if (myMesh->_is_nil())
|
|
|
|
return;
|
2009-02-17 10:27:49 +05:00
|
|
|
computeMesh();
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
2012-08-09 16:03:55 +06:00
|
|
|
* \brief check the same operations on the same mesh
|
2009-02-17 10:27:49 +05:00
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
bool SMESHGUI_BaseComputeOp::isValid( SUIT_Operation* theOp ) const
|
2009-02-17 10:27:49 +05:00
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESHGUI_BaseComputeOp* baseOp = dynamic_cast<SMESHGUI_BaseComputeOp*>( theOp );
|
|
|
|
bool ret = true;
|
|
|
|
if ( !myMesh->_is_nil() && baseOp ) {
|
|
|
|
SMESH::SMESH_Mesh_var aMesh = baseOp->getMesh();
|
|
|
|
if ( !aMesh->_is_nil() && aMesh->GetId() == myMesh->GetId() ) ret = false;
|
|
|
|
}
|
|
|
|
return ret;
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Gets dialog of this operation
|
|
|
|
* \retval LightApp_Dialog* - pointer to dialog of this operation
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
LightApp_Dialog* SMESHGUI_ComputeOp::dlg() const
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
return computeDlg();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
2009-02-17 10:27:49 +05:00
|
|
|
* \brief Constructor
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHGUI_PrecomputeOp::SMESHGUI_PrecomputeOp()
|
|
|
|
: SMESHGUI_BaseComputeOp(),
|
|
|
|
myDlg( 0 ),
|
2012-08-09 16:03:55 +06:00
|
|
|
myOrderMgr( 0 ),
|
2009-02-17 10:27:49 +05:00
|
|
|
myActiveDlg( 0 ),
|
|
|
|
myPreviewDisplayer( 0 )
|
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
myHelpFileName = "constructing_meshes_page.html#preview_mesh_anchor";
|
2009-02-17 10:27:49 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Destructor
|
2008-03-07 12:47:05 +05:00
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESHGUI_PrecomputeOp::~SMESHGUI_PrecomputeOp()
|
|
|
|
{
|
|
|
|
delete myDlg;
|
|
|
|
myDlg = 0;
|
2012-08-09 16:03:55 +06:00
|
|
|
delete myOrderMgr;
|
|
|
|
myOrderMgr = 0;
|
2009-02-17 10:27:49 +05:00
|
|
|
myActiveDlg = 0;
|
|
|
|
if ( myPreviewDisplayer )
|
|
|
|
delete myPreviewDisplayer;
|
|
|
|
myPreviewDisplayer = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Gets current dialog of this operation
|
|
|
|
* \retval LightApp_Dialog* - pointer to dialog of this operation
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
LightApp_Dialog* SMESHGUI_PrecomputeOp::dlg() const
|
|
|
|
{
|
|
|
|
return myActiveDlg;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief perform it's intention action: prepare data
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void SMESHGUI_PrecomputeOp::startOperation()
|
|
|
|
{
|
|
|
|
if ( !myDlg )
|
|
|
|
{
|
|
|
|
myDlg = new SMESHGUI_PrecomputeDlg( desktop() );
|
|
|
|
|
|
|
|
// connect signals
|
|
|
|
connect( myDlg, SIGNAL( preview() ), this, SLOT( onPreview() ) );
|
2012-08-09 16:03:55 +06:00
|
|
|
connect( myDlg, SIGNAL( dlgOk() ), this, SLOT( onCompute() ) );
|
|
|
|
connect( myDlg, SIGNAL( dlgApply() ), this, SLOT( onCompute() ) );
|
2009-02-17 10:27:49 +05:00
|
|
|
}
|
|
|
|
myActiveDlg = myDlg;
|
|
|
|
|
|
|
|
// connect signal to compute dialog. which will be shown after Compute mesh operation
|
|
|
|
SMESHGUI_ComputeDlg* cmpDlg = computeDlg();
|
|
|
|
if ( cmpDlg )
|
|
|
|
{
|
|
|
|
// disconnect signals
|
|
|
|
disconnect( cmpDlg, SIGNAL( dlgOk() ), this, SLOT( onOk() ) );
|
|
|
|
disconnect( cmpDlg, SIGNAL( dlgApply() ), this, SLOT( onApply() ) );
|
|
|
|
disconnect( cmpDlg, SIGNAL( dlgCancel() ), this, SLOT( onCancel() ) );
|
|
|
|
disconnect( cmpDlg, SIGNAL( dlgClose() ), this, SLOT( onCancel() ) );
|
|
|
|
disconnect( cmpDlg, SIGNAL( dlgHelp() ), this, SLOT( onHelp() ) );
|
|
|
|
|
|
|
|
// connect signals
|
|
|
|
if( cmpDlg->testButtonFlags( QtxDialog::OK ) )
|
|
|
|
connect( cmpDlg, SIGNAL( dlgOk() ), this, SLOT( onOk() ) );
|
|
|
|
if( cmpDlg->testButtonFlags( QtxDialog::Apply ) )
|
|
|
|
connect( cmpDlg, SIGNAL( dlgApply() ), this, SLOT( onApply() ) );
|
|
|
|
if( cmpDlg->testButtonFlags( QtxDialog::Help ) )
|
|
|
|
connect( cmpDlg, SIGNAL( dlgHelp() ), this, SLOT( onHelp() ) );
|
|
|
|
if( cmpDlg->testButtonFlags( QtxDialog::Cancel ) )
|
|
|
|
connect( cmpDlg, SIGNAL( dlgCancel() ), this, SLOT( onCancel() ) );
|
|
|
|
if( cmpDlg->testButtonFlags( QtxDialog::Close ) )
|
|
|
|
connect( cmpDlg, SIGNAL( dlgClose() ), this, SLOT( onCancel() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
SMESHGUI_BaseComputeOp::startOperation();
|
2012-08-09 16:03:55 +06:00
|
|
|
if (myMesh->_is_nil())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (myDlg->getPreviewMode() == -1)
|
|
|
|
{
|
|
|
|
// nothing to preview
|
|
|
|
SUIT_MessageBox::warning(desktop(),
|
|
|
|
tr("SMESH_WRN_WARNING"),
|
|
|
|
tr("SMESH_WRN_NOTHING_PREVIEW"));
|
|
|
|
onCancel();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// disconnect slot from preview dialog to have Apply from results of compute operation only
|
|
|
|
disconnect( myDlg, SIGNAL( dlgOk() ), this, SLOT( onOk() ) );
|
|
|
|
disconnect( myDlg, SIGNAL( dlgApply() ), this, SLOT( onApply() ) );
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
myDlg->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Stops operation
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void SMESHGUI_PrecomputeOp::stopOperation()
|
|
|
|
{
|
|
|
|
if ( myPreviewDisplayer )
|
|
|
|
{
|
|
|
|
myPreviewDisplayer->SetVisibility( false );
|
|
|
|
delete myPreviewDisplayer;
|
|
|
|
myPreviewDisplayer = 0;
|
|
|
|
}
|
|
|
|
myMapShapeId.clear();
|
|
|
|
SMESHGUI_BaseComputeOp::stopOperation();
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
2012-08-09 16:03:55 +06:00
|
|
|
* \brief reinitialize dialog after operaiton become active again
|
2009-02-17 10:27:49 +05:00
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void SMESHGUI_PrecomputeOp::resumeOperation()
|
|
|
|
{
|
|
|
|
if ( myActiveDlg == myDlg )
|
|
|
|
initDialog();
|
|
|
|
SMESHGUI_BaseComputeOp::resumeOperation();
|
|
|
|
}
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief perform it's intention action: reinitialise dialog
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_PrecomputeOp::initDialog()
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
QList<int> modes;
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
QMap<int, int> modeMap;
|
2012-08-09 16:03:55 +06:00
|
|
|
_PTR(SObject) pMesh = studyDS()->FindObjectID( myIObject->getEntry() );
|
|
|
|
getAssignedAlgos( pMesh, modeMap );
|
|
|
|
if ( modeMap.contains( SMESH::DIM_3D ) )
|
|
|
|
{
|
|
|
|
if ( modeMap.contains( SMESH::DIM_2D ) )
|
|
|
|
modes.append( SMESH::DIM_2D );
|
|
|
|
if ( modeMap.contains( SMESH::DIM_1D ) )
|
|
|
|
modes.append( SMESH::DIM_1D );
|
|
|
|
}
|
|
|
|
else if ( modeMap.contains( SMESH::DIM_2D ) )
|
|
|
|
{
|
|
|
|
if ( modeMap.contains( SMESH::DIM_1D ) )
|
|
|
|
modes.append( SMESH::DIM_1D );
|
|
|
|
}
|
|
|
|
|
|
|
|
myOrderMgr = new SMESHGUI_MeshOrderMgr( myDlg->getMeshOrderBox() );
|
|
|
|
myOrderMgr->SetMesh( myMesh );
|
|
|
|
bool isOrder = myOrderMgr->GetMeshOrder(myPrevOrder);
|
|
|
|
myDlg->getMeshOrderBox()->setShown(isOrder);
|
|
|
|
if ( !isOrder ) {
|
|
|
|
delete myOrderMgr;
|
|
|
|
myOrderMgr = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
myDlg->setPreviewModes( modes );
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief detect asigned mesh algorithms
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void SMESHGUI_PrecomputeOp::getAssignedAlgos(_PTR(SObject) theMesh,
|
|
|
|
QMap<int,int>& theModeMap)
|
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
_PTR(SObject) aHypRoot;
|
|
|
|
_PTR(GenericAttribute) anAttr;
|
|
|
|
int aPart = SMESH::Tag_RefOnAppliedAlgorithms;
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( theMesh && theMesh->FindSubObject( aPart, aHypRoot ) )
|
2009-02-17 10:27:49 +05:00
|
|
|
{
|
|
|
|
_PTR(ChildIterator) anIter =
|
|
|
|
SMESH::GetActiveStudyDocument()->NewChildIterator( aHypRoot );
|
|
|
|
for ( ; anIter->More(); anIter->Next() )
|
|
|
|
{
|
|
|
|
_PTR(SObject) anObj = anIter->Value();
|
|
|
|
_PTR(SObject) aRefObj;
|
|
|
|
if ( anObj->ReferencedObject( aRefObj ) )
|
|
|
|
anObj = aRefObj;
|
|
|
|
else
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( anObj->FindAttribute( anAttr, "AttributeName" ) )
|
|
|
|
{
|
|
|
|
CORBA::Object_var aVar = _CAST(SObject,anObj)->GetObject();
|
|
|
|
if ( CORBA::is_nil( aVar ) )
|
|
|
|
continue;
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
for( int dim = SMESH::DIM_1D; dim <= SMESH::DIM_3D; dim++ )
|
2009-02-17 10:27:49 +05:00
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::SMESH_Algo_var algo;
|
|
|
|
switch(dim) {
|
|
|
|
case SMESH::DIM_1D: algo = SMESH::SMESH_1D_Algo::_narrow( aVar ); break;
|
|
|
|
case SMESH::DIM_2D: algo = SMESH::SMESH_2D_Algo::_narrow( aVar ); break;
|
|
|
|
case SMESH::DIM_3D: algo = SMESH::SMESH_3D_Algo::_narrow( aVar ); break;
|
|
|
|
default: break;
|
|
|
|
}
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( !algo->_is_nil() )
|
2012-08-09 16:03:55 +06:00
|
|
|
theModeMap[ dim ] = 0;
|
2009-02-17 10:27:49 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
2012-08-09 16:03:55 +06:00
|
|
|
* \brief perform it's intention action: compute mesh
|
2009-02-17 10:27:49 +05:00
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
void SMESHGUI_PrecomputeOp::onCompute()
|
2009-02-17 10:27:49 +05:00
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
myDlg->hide();
|
|
|
|
if (myOrderMgr && myOrderMgr->IsOrderChanged())
|
|
|
|
myOrderMgr->SetMeshOrder();
|
|
|
|
myMapShapeId.clear();
|
|
|
|
myActiveDlg = computeDlg();
|
|
|
|
computeMesh();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
2009-02-17 10:27:49 +05:00
|
|
|
* \brief perform it's intention action: compute mesh
|
2008-03-07 12:47:05 +05:00
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void SMESHGUI_PrecomputeOp::onCancel()
|
|
|
|
{
|
|
|
|
QObject* curDlg = sender();
|
2012-08-09 16:03:55 +06:00
|
|
|
if ( curDlg == computeDlg() && myActiveDlg == myDlg )
|
2009-02-17 10:27:49 +05:00
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
// return from error messages
|
|
|
|
myDlg->show();
|
2009-02-17 10:27:49 +05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
bool isRestoreOrder = false;
|
2009-02-17 10:27:49 +05:00
|
|
|
if ( myActiveDlg == myDlg && !myMesh->_is_nil() && myMapShapeId.count() )
|
|
|
|
{
|
|
|
|
// ask to remove already computed mesh elements
|
|
|
|
if ( SUIT_MessageBox::question( desktop(), tr( "SMESH_WARNING" ),
|
|
|
|
tr( "CLEAR_SUBMESH_QUESTION" ),
|
|
|
|
tr( "SMESH_BUT_DELETE" ), tr( "SMESH_BUT_NO" ), 0, 1 ) == 0 )
|
|
|
|
{
|
|
|
|
// remove all submeshes for collected shapes
|
|
|
|
QMap<int,int>::const_iterator it = myMapShapeId.constBegin();
|
|
|
|
for ( ; it != myMapShapeId.constEnd(); ++it )
|
|
|
|
myMesh->ClearSubMesh( *it );
|
2012-08-09 16:03:55 +06:00
|
|
|
isRestoreOrder = true;
|
2009-02-17 10:27:49 +05:00
|
|
|
}
|
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
// return previous mesh order
|
|
|
|
if (myOrderMgr && myOrderMgr->IsOrderChanged()) {
|
|
|
|
if (!isRestoreOrder)
|
|
|
|
isRestoreOrder =
|
|
|
|
(SUIT_MessageBox::question( desktop(), tr( "SMESH_WARNING" ),
|
|
|
|
tr( "SMESH_REJECT_MESH_ORDER" ),
|
|
|
|
tr( "SMESH_BUT_YES" ), tr( "SMESH_BUT_NO" ), 0, 1 ) == 0);
|
|
|
|
if (isRestoreOrder)
|
|
|
|
myOrderMgr->SetMeshOrder(myPrevOrder);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete myOrderMgr;
|
|
|
|
myOrderMgr = 0;
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
myMapShapeId.clear();
|
|
|
|
SMESHGUI_BaseComputeOp::onCancel();
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief perform it's intention action: preview mesh
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void SMESHGUI_PrecomputeOp::onPreview()
|
|
|
|
{
|
|
|
|
if ( !myDlg || myMesh->_is_nil() || myMainShape->_is_nil() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
_PTR(SObject) aMeshSObj = SMESH::FindSObject(myMesh);
|
|
|
|
if ( !aMeshSObj )
|
|
|
|
return;
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
// set modified submesh priority if any
|
|
|
|
if (myOrderMgr && myOrderMgr->IsOrderChanged())
|
|
|
|
myOrderMgr->SetMeshOrder();
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// Compute preview of mesh,
|
|
|
|
// i.e. compute mesh till indicated dimension
|
|
|
|
int dim = myDlg->getPreviewMode();
|
|
|
|
|
|
|
|
SMESH::MemoryReserve aMemoryReserve;
|
|
|
|
|
|
|
|
SMESH::compute_error_array_var aCompErrors;
|
|
|
|
QString aHypErrors;
|
|
|
|
|
|
|
|
bool computeFailed = true, memoryLack = false;
|
|
|
|
|
|
|
|
SMESHGUI_ComputeDlg* aCompDlg = computeDlg();
|
|
|
|
aCompDlg->myMeshName->setText( aMeshSObj->GetName().c_str() );
|
|
|
|
|
|
|
|
SMESHGUI* gui = getSMESHGUI();
|
|
|
|
SMESH::SMESH_Gen_var gen = gui->GetSMESHGen();
|
|
|
|
SMESH::algo_error_array_var errors = gen->GetAlgoState(myMesh,myMainShape);
|
|
|
|
if ( errors->length() > 0 ) {
|
|
|
|
aHypErrors = SMESH::GetMessageOnAlgoStateErrors( errors.in() );
|
|
|
|
}
|
|
|
|
|
|
|
|
SUIT_OverrideCursor aWaitCursor;
|
|
|
|
|
|
|
|
SVTK_ViewWindow* view = SMESH::GetViewWindow( gui );
|
|
|
|
if ( myPreviewDisplayer ) delete myPreviewDisplayer;
|
|
|
|
myPreviewDisplayer = new SMESHGUI_MeshEditPreview( view );
|
|
|
|
|
|
|
|
SMESH::long_array_var aShapesId = new SMESH::long_array();
|
|
|
|
try {
|
|
|
|
#if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
SMESH::MeshPreviewStruct_var previewData =
|
|
|
|
gen->Precompute(myMesh, myMainShape, (SMESH::Dimension)dim, aShapesId);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESH::MeshPreviewStruct* previewRes = previewData._retn();
|
|
|
|
if ( previewRes && previewRes->nodesXYZ.length() > 0 )
|
|
|
|
{
|
|
|
|
computeFailed = false;
|
|
|
|
myPreviewDisplayer->SetData( previewRes );
|
|
|
|
// append shape indeces with computed mesh entities
|
|
|
|
for ( int i = 0, n = aShapesId->length(); i < n; i++ )
|
2012-08-09 16:03:55 +06:00
|
|
|
myMapShapeId[ aShapesId[ i ] ] = 0;
|
2009-02-17 10:27:49 +05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
myPreviewDisplayer->SetVisibility(false);
|
|
|
|
}
|
|
|
|
catch(const SALOME::SALOME_Exception & S_ex){
|
|
|
|
memoryLack = true;
|
|
|
|
myPreviewDisplayer->SetVisibility(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
#if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
|
|
|
aCompErrors = gen->GetComputeErrors( myMesh, myMainShape );
|
|
|
|
// check if there are memory problems
|
|
|
|
for ( int i = 0; (i < aCompErrors->length()) && !memoryLack; ++i )
|
|
|
|
memoryLack = ( aCompErrors[ i ].code == SMESH::COMPERR_MEMORY_PB );
|
|
|
|
}
|
|
|
|
catch(const SALOME::SALOME_Exception & S_ex){
|
|
|
|
memoryLack = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( memoryLack )
|
|
|
|
aMemoryReserve.release();
|
|
|
|
|
|
|
|
bool noCompError = ( !aCompErrors.operator->() || aCompErrors->length() == 0 );
|
|
|
|
bool noHypoError = ( aHypErrors.isEmpty() );
|
|
|
|
|
|
|
|
SUIT_ResourceMgr* resMgr = SMESH::GetResourceMgr( gui );
|
|
|
|
int aNotifyMode = resMgr->integerValue( "SMESH", "show_result_notification" );
|
|
|
|
|
|
|
|
bool isShowError = true;
|
|
|
|
switch( aNotifyMode ) {
|
|
|
|
case 0: // show the mesh computation result dialog NEVER
|
|
|
|
isShowError = false;
|
|
|
|
break;
|
|
|
|
case 1: // show the mesh computation result dialog if there are some errors
|
|
|
|
default: // show the result dialog after each mesh computation
|
|
|
|
if ( !computeFailed && !memoryLack && noCompError && noHypoError )
|
|
|
|
isShowError = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
aWaitCursor.suspend();
|
|
|
|
// SHOW ERRORS
|
|
|
|
if ( isShowError )
|
|
|
|
{
|
|
|
|
myDlg->hide();
|
|
|
|
aCompDlg->setWindowTitle(tr( computeFailed ? "SMESH_WRN_COMPUTE_FAILED" : "SMESH_COMPUTE_SUCCEED"));
|
|
|
|
showComputeResult( memoryLack, noCompError, aCompErrors, noHypoError, aHypErrors );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Constructor
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHGUI_PrecomputeDlg::SMESHGUI_PrecomputeDlg( QWidget* parent )
|
2012-08-09 16:03:55 +06:00
|
|
|
: SMESHGUI_Dialog( parent, false, false, OK | Cancel | Help ),
|
|
|
|
myOrderBox(0)
|
2009-02-17 10:27:49 +05:00
|
|
|
{
|
|
|
|
setWindowTitle( tr( "CAPTION" ) );
|
|
|
|
|
|
|
|
setButtonText( OK, tr( "COMPUTE" ) );
|
|
|
|
QFrame* main = mainFrame();
|
|
|
|
|
|
|
|
QVBoxLayout* layout = new QVBoxLayout( main );
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
myOrderBox = new SMESHGUI_MeshOrderBox( main );
|
|
|
|
layout->addWidget(myOrderBox);
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
QFrame* frame = new QFrame( main );
|
|
|
|
layout->setMargin(0); layout->setSpacing(0);
|
|
|
|
layout->addWidget( frame );
|
|
|
|
|
|
|
|
QHBoxLayout* frameLay = new QHBoxLayout( frame );
|
|
|
|
frameLay->setMargin(0); frameLay->setSpacing(SPACING);
|
|
|
|
|
|
|
|
myPreviewMode = new QtxComboBox( frame );
|
|
|
|
frameLay->addWidget( myPreviewMode );
|
|
|
|
|
|
|
|
myPreviewBtn = new QPushButton( tr( "PREVIEW" ), frame );
|
|
|
|
frameLay->addWidget( myPreviewBtn );
|
|
|
|
|
|
|
|
connect( myPreviewBtn, SIGNAL( clicked( bool ) ), this, SIGNAL( preview() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Destructor
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHGUI_PrecomputeDlg::~SMESHGUI_PrecomputeDlg()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Sets available preview modes
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void SMESHGUI_PrecomputeDlg::setPreviewModes( const QList<int>& theModes )
|
|
|
|
{
|
|
|
|
myPreviewMode->clear();
|
|
|
|
QList<int>::const_iterator it = theModes.constBegin();
|
|
|
|
for ( int i = 0; it != theModes.constEnd(); ++it, i++ )
|
|
|
|
{
|
|
|
|
QString mode = QString( "PREVIEW_%1" ).arg( *it );
|
|
|
|
myPreviewMode->addItem( tr( mode.toLatin1().data() ) );
|
|
|
|
myPreviewMode->setId( i, *it );
|
|
|
|
}
|
|
|
|
myPreviewBtn->setEnabled( !theModes.isEmpty() );
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Returns current preview mesh mode
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
int SMESHGUI_PrecomputeDlg::getPreviewMode() const
|
2008-03-07 12:47:05 +05:00
|
|
|
{
|
2009-02-17 10:27:49 +05:00
|
|
|
return myPreviewMode->currentId();
|
2008-03-07 12:47:05 +05:00
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Returns current preview mesh mode
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHGUI_MeshOrderBox* SMESHGUI_PrecomputeDlg::getMeshOrderBox() const
|
|
|
|
{
|
|
|
|
return myOrderBox;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Constructor
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHGUI_EvaluateOp::SMESHGUI_EvaluateOp()
|
|
|
|
: SMESHGUI_BaseComputeOp()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Desctructor
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHGUI_EvaluateOp::~SMESHGUI_EvaluateOp()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief perform it's intention action: compute mesh
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void SMESHGUI_EvaluateOp::startOperation()
|
|
|
|
{
|
|
|
|
SMESHGUI_BaseComputeOp::evaluateDlg();
|
|
|
|
SMESHGUI_BaseComputeOp::startOperation();
|
|
|
|
if (myMesh->_is_nil())
|
|
|
|
return;
|
|
|
|
evaluateMesh();
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Gets dialog of this operation
|
|
|
|
* \retval LightApp_Dialog* - pointer to dialog of this operation
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
LightApp_Dialog* SMESHGUI_EvaluateOp::dlg() const
|
|
|
|
{
|
|
|
|
return evaluateDlg();
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief evaluateMesh()
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
void SMESHGUI_BaseComputeOp::evaluateMesh()
|
|
|
|
{
|
|
|
|
// EVALUATE MESH
|
|
|
|
|
|
|
|
SMESH::MemoryReserve aMemoryReserve;
|
|
|
|
|
|
|
|
SMESH::compute_error_array_var aCompErrors;
|
|
|
|
QString aHypErrors;
|
|
|
|
|
|
|
|
bool evaluateFailed = true, memoryLack = false;
|
|
|
|
SMESH::long_array_var aRes;
|
|
|
|
|
|
|
|
_PTR(SObject) aMeshSObj = SMESH::FindSObject(myMesh);
|
|
|
|
if ( !aMeshSObj ) // IPAL21340
|
|
|
|
return;
|
|
|
|
|
|
|
|
bool hasShape = myMesh->HasShapeToMesh();
|
|
|
|
bool shapeOK = myMainShape->_is_nil() ? !hasShape : hasShape;
|
|
|
|
if ( shapeOK )
|
|
|
|
{
|
|
|
|
myCompDlg->myMeshName->setText( aMeshSObj->GetName().c_str() );
|
|
|
|
SMESH::SMESH_Gen_var gen = getSMESHGUI()->GetSMESHGen();
|
|
|
|
SMESH::algo_error_array_var errors = gen->GetAlgoState(myMesh,myMainShape);
|
|
|
|
if ( errors->length() > 0 ) {
|
|
|
|
aHypErrors = SMESH::GetMessageOnAlgoStateErrors( errors.in() );
|
|
|
|
}
|
|
|
|
SUIT_OverrideCursor aWaitCursor;
|
|
|
|
try {
|
|
|
|
#if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
|
|
|
aRes = gen->Evaluate(myMesh, myMainShape);
|
|
|
|
}
|
|
|
|
catch(const SALOME::SALOME_Exception & S_ex){
|
|
|
|
memoryLack = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
#if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
|
|
|
aCompErrors = gen->GetComputeErrors( myMesh, myMainShape );
|
|
|
|
}
|
|
|
|
catch(const SALOME::SALOME_Exception & S_ex){
|
|
|
|
memoryLack = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( memoryLack )
|
|
|
|
aMemoryReserve.release();
|
|
|
|
|
|
|
|
evaluateFailed = ( aCompErrors->length() > 0 );
|
|
|
|
myCompDlg->setWindowTitle(tr( evaluateFailed ? "SMESH_WRN_EVALUATE_FAILED" : "SMESH_EVALUATE_SUCCEED"));
|
|
|
|
|
|
|
|
// SHOW ERRORS
|
|
|
|
|
|
|
|
bool noCompError = ( !aCompErrors.operator->() || aCompErrors->length() == 0 );
|
|
|
|
bool noHypoError = ( aHypErrors.isEmpty() );
|
|
|
|
|
|
|
|
//SUIT_ResourceMgr* resMgr = SMESH::GetResourceMgr( SMESHGUI::GetSMESHGUI() );
|
|
|
|
//int aNotifyMode = resMgr->integerValue( "SMESH", "show_result_notification" );
|
|
|
|
|
|
|
|
bool isShowResultDlg = true;
|
|
|
|
//if( noHypoError )
|
|
|
|
//switch( aNotifyMode ) {
|
|
|
|
//case 0: // show the mesh computation result dialog NEVER
|
|
|
|
//isShowResultDlg = false;
|
|
|
|
//commit();
|
|
|
|
//break;
|
|
|
|
//case 1: // show the mesh computation result dialog if there are some errors
|
|
|
|
//if ( memoryLack || !noHypoError )
|
|
|
|
// isShowResultDlg = true;
|
|
|
|
//else
|
|
|
|
//{
|
|
|
|
// isShowResultDlg = false;
|
|
|
|
// commit();
|
|
|
|
//}
|
|
|
|
//break;
|
|
|
|
//default: // show the result dialog after each mesh computation
|
|
|
|
//isShowResultDlg = true;
|
|
|
|
//}
|
|
|
|
|
|
|
|
// SHOW RESULTS
|
|
|
|
if ( isShowResultDlg )
|
|
|
|
showEvaluateResult( aRes, memoryLack, noCompError, aCompErrors,
|
|
|
|
noHypoError, aHypErrors);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SMESHGUI_BaseComputeOp::showEvaluateResult(const SMESH::long_array& theRes,
|
|
|
|
const bool theMemoryLack,
|
|
|
|
const bool theNoCompError,
|
|
|
|
SMESH::compute_error_array_var& theCompErrors,
|
|
|
|
const bool theNoHypoError,
|
|
|
|
const QString& theHypErrors)
|
|
|
|
{
|
|
|
|
bool hasShape = myMesh->HasShapeToMesh();
|
|
|
|
SMESHGUI_ComputeDlg* aCompDlg = evaluateDlg();
|
|
|
|
aCompDlg->myMemoryLackGroup->hide();
|
|
|
|
|
|
|
|
if ( theMemoryLack )
|
|
|
|
{
|
|
|
|
aCompDlg->myMemoryLackGroup->show();
|
|
|
|
aCompDlg->myFullInfo->hide();
|
|
|
|
aCompDlg->myBriefInfo->hide();
|
|
|
|
aCompDlg->myHypErrorGroup->hide();
|
|
|
|
aCompDlg->myCompErrorGroup->hide();
|
|
|
|
}
|
|
|
|
else if ( theNoCompError && theNoHypoError )
|
|
|
|
{
|
|
|
|
aCompDlg->myFullInfo->SetMeshInfo( theRes );
|
|
|
|
aCompDlg->myFullInfo->show();
|
|
|
|
aCompDlg->myBriefInfo->hide();
|
|
|
|
aCompDlg->myHypErrorGroup->hide();
|
|
|
|
aCompDlg->myCompErrorGroup->hide();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QTableWidget* tbl = aCompDlg->myTable;
|
|
|
|
aCompDlg->myBriefInfo->SetMeshInfo( theRes );
|
|
|
|
aCompDlg->myBriefInfo->show();
|
|
|
|
aCompDlg->myFullInfo->hide();
|
|
|
|
|
|
|
|
if ( theNoHypoError ) {
|
|
|
|
aCompDlg->myHypErrorGroup->hide();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aCompDlg->myHypErrorGroup->show();
|
|
|
|
aCompDlg->myHypErrorLabel->setText( theHypErrors );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( theNoCompError ) {
|
|
|
|
aCompDlg->myCompErrorGroup->hide();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aCompDlg->myCompErrorGroup->show();
|
|
|
|
|
|
|
|
aCompDlg->myPublishBtn->hide();
|
|
|
|
aCompDlg->myShowBtn->hide();
|
|
|
|
|
|
|
|
// fill table of errors
|
|
|
|
tbl->setRowCount( theCompErrors->length() );
|
|
|
|
if ( !hasShape ) tbl->hideColumn( COL_SHAPE );
|
|
|
|
else tbl->showColumn( COL_SHAPE );
|
|
|
|
tbl->setColumnWidth( COL_ERROR, 200 );
|
|
|
|
|
|
|
|
bool hasBadMesh = false;
|
|
|
|
for ( int row = 0; row < theCompErrors->length(); ++row )
|
|
|
|
{
|
|
|
|
SMESH::ComputeError & err = theCompErrors[ row ];
|
|
|
|
|
|
|
|
QString text = err.algoName.in();
|
|
|
|
if ( !tbl->item( row, COL_ALGO ) ) tbl->setItem( row, COL_ALGO, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_ALGO )->setText( text );
|
|
|
|
|
|
|
|
text = SMESH::errorText( err.code, err.comment.in() );
|
|
|
|
if ( !tbl->item( row, COL_ERROR ) ) tbl->setItem( row, COL_ERROR, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_ERROR )->setText( text );
|
|
|
|
|
|
|
|
text = QString("%1").arg( err.subShapeID );
|
|
|
|
if ( !tbl->item( row, COL_SHAPEID ) ) tbl->setItem( row, COL_SHAPEID, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_SHAPEID )->setText( text );
|
|
|
|
|
|
|
|
text = hasShape ? SMESH::shapeText( err.subShapeID, myMainShape ) : QString("");
|
|
|
|
if ( !tbl->item( row, COL_SHAPE ) ) tbl->setItem( row, COL_SHAPE, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_SHAPE )->setText( text );
|
|
|
|
|
|
|
|
text = ( !hasShape || SMESH::getSubShapeSO( err.subShapeID, myMainShape )) ? "PUBLISHED" : "";
|
|
|
|
if ( !tbl->item( row, COL_PUBLISHED ) ) tbl->setItem( row, COL_PUBLISHED, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_PUBLISHED )->setText( text ); // if text=="", "PUBLISH" button enabled
|
|
|
|
|
|
|
|
text = err.hasBadMesh ? "hasBadMesh" : "";
|
|
|
|
if ( !tbl->item( row, COL_BAD_MESH ) ) tbl->setItem( row, COL_BAD_MESH, new QTableWidgetItem( text ) );
|
|
|
|
else tbl->item( row, COL_BAD_MESH )->setText( text );
|
|
|
|
if ( err.hasBadMesh ) hasBadMesh = true;
|
|
|
|
|
|
|
|
//tbl->item( row, COL_ERROR )->setWordWrap( true ); // VSR: TODO ???
|
|
|
|
tbl->resizeRowToContents( row );
|
|
|
|
}
|
|
|
|
tbl->resizeColumnToContents( COL_ALGO );
|
|
|
|
tbl->resizeColumnToContents( COL_SHAPE );
|
2012-10-08 17:56:59 +06:00
|
|
|
tbl->setWordWrap( true );
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
if ( hasBadMesh )
|
2013-11-18 16:27:22 +06:00
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
aCompDlg->myBadMeshBtn->show();
|
2013-11-18 16:27:22 +06:00
|
|
|
aCompDlg->myBadMeshToGroupBtn->show();
|
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
else
|
2013-11-18 16:27:22 +06:00
|
|
|
{
|
2012-08-09 16:03:55 +06:00
|
|
|
aCompDlg->myBadMeshBtn->hide();
|
2013-11-18 16:27:22 +06:00
|
|
|
aCompDlg->myBadMeshToGroupBtn->hide();
|
|
|
|
}
|
2012-08-09 16:03:55 +06:00
|
|
|
tbl->setCurrentCell(0,0);
|
|
|
|
currentCellChanged(); // to update buttons
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// show dialog and wait, becase Compute can be invoked from Preview operation
|
|
|
|
//aCompDlg->exec(); // this way it becomes modal - impossible to rotate model in the Viewer
|
|
|
|
aCompDlg->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Gets dialog of evaluate operation
|
|
|
|
* \retval SMESHGUI_ComputeDlg* - pointer to dialog of this operation
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHGUI_ComputeDlg* SMESHGUI_BaseComputeOp::evaluateDlg() const
|
|
|
|
{
|
|
|
|
if ( !myCompDlg )
|
|
|
|
{
|
|
|
|
SMESHGUI_BaseComputeOp* me = (SMESHGUI_BaseComputeOp*)this;
|
|
|
|
me->myCompDlg = new SMESHGUI_ComputeDlg( desktop(), true );
|
|
|
|
// connect signals and slots
|
|
|
|
connect(myCompDlg->myShowBtn, SIGNAL (clicked()), SLOT(onPreviewShape()));
|
|
|
|
connect(myCompDlg->myPublishBtn, SIGNAL (clicked()), SLOT(onPublishShape()));
|
|
|
|
connect(myCompDlg->myBadMeshBtn, SIGNAL (clicked()), SLOT(onShowBadMesh()));
|
|
|
|
QTableWidget* aTable = me->table();
|
|
|
|
connect(aTable, SIGNAL(itemSelectionChanged()), SLOT(currentCellChanged()));
|
|
|
|
connect(aTable, SIGNAL(currentCellChanged(int,int,int,int)), SLOT(currentCellChanged()));
|
|
|
|
}
|
|
|
|
return myCompDlg;
|
|
|
|
}
|
|
|
|
|