2012-08-09 16:03:55 +06:00
|
|
|
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
|
2009-02-17 10:27:49 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2006-02-07 20:01:11 +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
|
|
|
|
// version 2.1 of the License.
|
2006-02-07 20:01:11 +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.
|
2006-02-07 20:01:11 +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
|
2006-02-07 20:01:11 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2006-02-07 20:01:11 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// File : SMESHGUI_ShapeByMeshDlg.h
|
|
|
|
// Author : Edward AGAPOV, Open CASCADE S.A.S.
|
2006-02-07 20:01:11 +05:00
|
|
|
//
|
2009-02-17 10:27:49 +05:00
|
|
|
#ifndef SMESHGUI_SHAPEBYMESHDLG_H
|
|
|
|
#define SMESHGUI_SHAPEBYMESHDLG_H
|
2006-02-07 20:01:11 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// SMESH includes
|
2008-03-07 12:47:05 +05:00
|
|
|
#include "SMESH_SMESHGUI.hxx"
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
#include "SMESHGUI_Dialog.h"
|
|
|
|
#include "SMESHGUI_SelectionOp.h"
|
2006-02-07 20:01:11 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// IDL includes
|
2006-02-07 20:01:11 +05:00
|
|
|
#include <SALOMEconfig.h>
|
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Mesh)
|
|
|
|
|
|
|
|
class QFrame;
|
|
|
|
class QLineEdit;
|
|
|
|
class QButtonGroup;
|
2009-02-17 10:27:49 +05:00
|
|
|
class QGroupBox;
|
2006-02-07 20:01:11 +05:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Dialog to publish a sub-shape of the mesh main shape
|
|
|
|
* by selecting mesh elements
|
|
|
|
*/
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
class SMESHGUI_EXPORT SMESHGUI_ShapeByMeshDlg : public SMESHGUI_Dialog
|
2006-02-07 20:01:11 +05:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESHGUI_ShapeByMeshDlg();
|
|
|
|
virtual ~SMESHGUI_ShapeByMeshDlg();
|
2006-02-07 20:01:11 +05:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
private:
|
2009-02-17 10:27:49 +05:00
|
|
|
QFrame* createMainFrame( QWidget* );
|
2006-05-06 14:51:48 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
QGroupBox* myElemTypeBox;
|
2006-05-06 14:51:48 +06:00
|
|
|
QButtonGroup* myElemTypeGroup;
|
|
|
|
QLineEdit* myElementId;
|
|
|
|
QLineEdit* myGeomName;
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
bool myIsMultipleAllowed;
|
2009-02-17 10:27:49 +05:00
|
|
|
void setMultipleAllowed( bool );
|
2006-05-06 14:51:48 +06:00
|
|
|
|
|
|
|
friend class SMESHGUI_ShapeByMeshOp;
|
|
|
|
};
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
/*!
|
|
|
|
* \brief Operation to publish a sub-shape of the mesh main shape
|
|
|
|
* by selecting mesh elements
|
|
|
|
*/
|
2006-05-06 14:51:48 +06:00
|
|
|
class SMESHGUI_ShapeByMeshOp: public SMESHGUI_SelectionOp
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESHGUI_ShapeByMeshOp( bool = false );
|
2006-05-06 14:51:48 +06:00
|
|
|
virtual ~SMESHGUI_ShapeByMeshOp();
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
virtual LightApp_Dialog* dlg() const;
|
2006-05-06 14:51:48 +06:00
|
|
|
|
2006-02-07 20:01:11 +05:00
|
|
|
void Init();
|
2009-02-17 10:27:49 +05:00
|
|
|
void SetMesh( SMESH::SMESH_Mesh_ptr );
|
|
|
|
SMESH::SMESH_Mesh_ptr GetMesh();
|
2006-02-07 20:01:11 +05:00
|
|
|
GEOM::GEOM_Object_ptr GetShape();
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
protected:
|
2009-02-17 10:27:49 +05:00
|
|
|
virtual void commitOperation();
|
|
|
|
virtual void startOperation();
|
2006-02-07 20:01:11 +05:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
void activateSelection();
|
2009-02-17 10:27:49 +05:00
|
|
|
void setElementID( const QString& );
|
2006-05-06 14:51:48 +06:00
|
|
|
|
|
|
|
protected slots:
|
2009-02-17 10:27:49 +05:00
|
|
|
virtual bool onApply();
|
2006-02-07 20:01:11 +05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onSelectionDone();
|
2009-02-17 10:27:49 +05:00
|
|
|
void onTypeChanged( int );
|
|
|
|
void onElemIdChanged( const QString& );
|
2006-02-07 20:01:11 +05:00
|
|
|
|
|
|
|
private:
|
2006-05-06 14:51:48 +06:00
|
|
|
SMESHGUI_ShapeByMeshDlg* myDlg;
|
2006-02-07 20:01:11 +05:00
|
|
|
SMESH::SMESH_Mesh_var myMesh;
|
|
|
|
GEOM::GEOM_Object_var myGeomObj;
|
|
|
|
|
|
|
|
bool myIsManualIdEnter;
|
|
|
|
bool myHasSolids;
|
2008-03-07 12:47:05 +05:00
|
|
|
bool myIsMultipleAllowed;
|
2006-02-07 20:01:11 +05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|