smesh/src/StdMeshersGUI/StdMeshersGUI.cxx

178 lines
5.5 KiB
C++
Raw Normal View History

2004-06-18 14:34:31 +06:00
// SMESH StdMeshersGUI : GUI for plugged-in meshers
//
// 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
//
//
//
// File : StdMeshersGUI.cxx
// Author : Julia DOROVSKIKH
// Module : SMESH
// $Header$
2004-12-01 15:48:31 +05:00
#include "SALOMEconfig.h"
2004-06-18 14:34:31 +06:00
#include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
#include "SMESHGUI.h"
2004-12-01 15:48:31 +05:00
#include "SMESHGUI_Utils.h"
2004-06-18 14:34:31 +06:00
#include "SMESHGUI_Hypotheses.h"
2004-12-01 15:48:31 +05:00
#include "SMESHGUI_HypothesesUtils.h"
2004-06-18 14:34:31 +06:00
2004-12-01 15:48:31 +05:00
#include "SMESHGUI_aParameterDlg.h"
#include "StdMeshersGUI_Parameters.h"
#include "StdMeshersGUI_CreateStdHypothesisDlg.h"
2004-06-18 14:34:31 +06:00
#include "SUIT_Desktop.h"
#include "SUIT_ResourceMgr.h"
2004-06-18 14:34:31 +06:00
2005-08-16 18:26:35 +06:00
#include <SalomeApp_Tools.h>
2004-06-18 14:34:31 +06:00
#include <qobject.h>
2004-12-01 15:48:31 +05:00
#include "utilities.h"
using namespace std;
2004-06-18 14:34:31 +06:00
//=============================================================================
/*! class HypothesisCreator
*
*/
//=============================================================================
class StdMeshersGUI_HypothesisCreator : public SMESHGUI_GenericHypothesisCreator
{
public:
StdMeshersGUI_HypothesisCreator (const QString& aHypType,
const QString& aServerLibName,
SMESHGUI* aSMESHGUI)
: myHypType(aHypType),
myServerLibName(aServerLibName),
mySMESHGUI(aSMESHGUI) {}
virtual void CreateHypothesis (const bool isAlgo, QWidget* parent = 0);
virtual void EditHypothesis (SMESH::SMESH_Hypothesis_ptr theHyp);
private:
QString myHypType;
QString myServerLibName;
SMESHGUI* mySMESHGUI;
};
//=============================================================================
/*! HypothesisCreator::CreateHypothesis
*
*/
//=============================================================================
void StdMeshersGUI_HypothesisCreator::CreateHypothesis
(bool isAlgo, QWidget* parent)
{
MESSAGE("StdMeshersGUI_HypothesisCreator::CreateHypothesis");
// Get default name for hypothesis/algorithm creation
char* sHypType = (char*)myHypType.latin1();
2004-12-01 15:48:31 +05:00
HypothesisData* aHypData = SMESH::GetHypothesisData(sHypType);
2004-06-18 14:34:31 +06:00
QString aHypName;
if (aHypData)
aHypName = aHypData->Label;
else
aHypName = myHypType;
// Create hypothesis/algorithm
if (isAlgo)
{
2004-12-01 15:48:31 +05:00
SMESH::CreateHypothesis(myHypType, aHypName, isAlgo);
2004-06-18 14:34:31 +06:00
}
else
{
2004-12-01 15:48:31 +05:00
if ( StdMeshersGUI_Parameters::HasParameters( myHypType ))
2004-06-18 14:34:31 +06:00
// Show Dialog for hypothesis creation
//StdMeshersGUI_CreateStdHypothesisDlg *aDlg =
2004-12-01 15:48:31 +05:00
new StdMeshersGUI_CreateStdHypothesisDlg(myHypType, parent, "");
else
SMESH::CreateHypothesis(myHypType, aHypName, isAlgo); // without GUI
2004-06-18 14:34:31 +06:00
}
}
//=============================================================================
/*! HypothesisCreator::EditHypothesis
*
*/
//=============================================================================
void StdMeshersGUI_HypothesisCreator::EditHypothesis
(SMESH::SMESH_Hypothesis_ptr theHyp)
{
MESSAGE("StdMeshersGUI_HypothesisCreator::EditHypothesis");
SMESH::SObjectList listSOmesh = SMESH::GetMeshesUsingAlgoOrHypothesis(theHyp);
2004-12-01 15:48:31 +05:00
list<SMESHGUI_aParameterPtr> paramList;
StdMeshersGUI_Parameters::GetParameters( theHyp, paramList );
bool modified = false;
2005-06-08 16:45:19 +06:00
if ( SMESHGUI_aParameterDlg::Parameters( SMESHGUI::GetSMESHGUI(), paramList, QObject::tr("SMESH_VALUE")) )
2005-08-16 18:26:35 +06:00
{
try
{
modified = StdMeshersGUI_Parameters::SetParameters( theHyp, paramList );
}
catch (const SALOME::SALOME_Exception& S_ex)
{
SalomeApp_Tools::QtCatchCorbaException(S_ex);
return;
}
}
2004-12-01 15:48:31 +05:00
if ( modified ) {
//set new Attribute Comment for hypothesis which parameters were modified
QString aParams = "";
StdMeshersGUI_Parameters::GetParameters( theHyp, paramList, aParams );
_PTR(SObject) SHyp = SMESH::FindSObject(theHyp);
if (SHyp)
2004-12-01 15:48:31 +05:00
if (!aParams.isEmpty()) {
SMESH::SetValue(SHyp, aParams);
//mySMESHGUI->GetActiveStudy()->updateObjBrowser(true);
}
if ( listSOmesh.size() > 0 ) {
_PTR(SObject) submSO = listSOmesh[0];
SMESH::SMESH_Mesh_var aMesh =
SMESH::SObjectToInterface<SMESH::SMESH_Mesh>(submSO);
SMESH::SMESH_subMesh_var aSubMesh =
SMESH::SObjectToInterface<SMESH::SMESH_subMesh>(submSO);
if ( !aSubMesh->_is_nil() )
aMesh = aSubMesh->GetFather();
_PTR(SObject) meshSO = SMESH::FindSObject( aMesh );
SMESH::ModifiedMesh( meshSO, false);
}
2004-06-18 14:34:31 +06:00
}
}
//=============================================================================
/*! GetHypothesisCreator
*
*/
//=============================================================================
extern "C"
{
SMESHGUI_GenericHypothesisCreator* GetHypothesisCreator
(QString aHypType, QString aServerLibName, SMESHGUI* aSMESHGUI)
{
return new StdMeshersGUI_HypothesisCreator
(aHypType, aServerLibName, aSMESHGUI);
}
}