2004-12-01 15:48:31 +05:00
|
|
|
// SMESH SMESHGUI : GUI for SMESH component
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003 CEA
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
|
|
|
// See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
2005-08-23 14:52:20 +06:00
|
|
|
// File : SMESHGUI_HypothesesUtils.h
|
2004-12-01 15:48:31 +05:00
|
|
|
// Author : Julia DOROVSKIKH
|
|
|
|
// Module : SMESH
|
|
|
|
// $Header$
|
|
|
|
|
|
|
|
#ifndef SMESHGUI_HypothesesUtils_HeaderFile
|
|
|
|
#define SMESHGUI_HypothesesUtils_HeaderFile
|
|
|
|
|
|
|
|
#include <qstring.h>
|
|
|
|
#include <qstringlist.h>
|
|
|
|
|
|
|
|
#include "SALOME_InteractiveObject.hxx"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SALOMEDSClient_definitions.hxx"
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
#include "SALOMEconfig.h"
|
|
|
|
#include CORBA_CLIENT_HEADER(SALOMEDS)
|
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Mesh)
|
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Hypothesis)
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
#include <vector>
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
class HypothesisData;
|
2005-11-01 15:12:45 +05:00
|
|
|
class HypothesesSet;
|
2004-12-01 15:48:31 +05:00
|
|
|
class SMESHGUI_GenericHypothesisCreator;
|
2005-06-07 19:22:20 +06:00
|
|
|
class SALOMEDSClient_SObject;
|
2005-11-14 14:17:11 +05:00
|
|
|
class algo_error_array;
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
namespace SMESH{
|
|
|
|
|
|
|
|
void InitAvailableHypotheses();
|
|
|
|
|
2005-08-23 14:52:20 +06:00
|
|
|
QStringList GetAvailableHypotheses( const bool isAlgo,
|
|
|
|
const int theDim = -1,
|
|
|
|
const bool isAux = false);
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2005-11-01 15:12:45 +05:00
|
|
|
QStringList GetHypothesesSets();
|
|
|
|
|
|
|
|
HypothesesSet* GetHypothesesSet(const QString theSetName);
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
HypothesisData* GetHypothesisData(const char* aHypType);
|
|
|
|
|
|
|
|
SMESHGUI_GenericHypothesisCreator* GetHypothesisCreator(const char* aHypType);
|
|
|
|
|
|
|
|
SMESH::SMESH_Hypothesis_ptr CreateHypothesis(const char* aHypType,
|
|
|
|
const char* aHypName,
|
|
|
|
const bool isAlgo = false);
|
|
|
|
|
|
|
|
bool AddHypothesisOnMesh(SMESH::SMESH_Mesh_ptr aMesh, SMESH::SMESH_Hypothesis_ptr aHyp);
|
|
|
|
|
|
|
|
bool AddHypothesisOnSubMesh(SMESH::SMESH_subMesh_ptr aSubMesh, SMESH::SMESH_Hypothesis_ptr aHyp);
|
|
|
|
|
|
|
|
bool RemoveHypothesisOrAlgorithmOnMesh(const Handle(SALOME_InteractiveObject)& IObject);
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
bool RemoveHypothesisOrAlgorithmOnMesh(_PTR(SObject) MorSM,
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH::SMESH_Hypothesis_ptr anHyp);
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
typedef std::vector<_PTR(SObject)> SObjectList;
|
|
|
|
SObjectList GetMeshesUsingAlgoOrHypothesis(SMESH::SMESH_Hypothesis_ptr AlgoOrHyp ) ;
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2005-11-14 14:17:11 +05:00
|
|
|
QString GetMessageOnAlgoStateErrors(const algo_error_array& errors);
|
2004-12-01 15:48:31 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|