smesh/src/SMESHGUI/SMESHGUI_AddQuadraticElementDlg.h

148 lines
5.1 KiB
C
Raw Normal View History

2012-08-09 16:03:55 +06:00
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
//
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
//
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.
//
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.
//
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
//
2012-08-09 16:03:55 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
// SMESH SMESHGUI : GUI for SMESH component
// File : SMESHGUI_AddMeshElementDlg.h
// Author : Nicolas REJNERI, Open CASCADE S.A.S.
//
#ifndef SMESHGUI_ADDQUADRATICELEMENTDLG_H
#define SMESHGUI_ADDQUADRATICELEMENTDLG_H
2009-02-17 10:27:49 +05:00
// SMESH includes
#include "SMESH_SMESHGUI.hxx"
2012-08-09 16:03:55 +06:00
#include "SMDSAbs_ElementType.hxx"
2009-02-17 10:27:49 +05:00
// Qt includes
#include <QDialog>
// IDL includes
#include <SALOMEconfig.h>
#include CORBA_SERVER_HEADER(SMESH_Mesh)
2012-08-09 16:03:55 +06:00
class QComboBox;
class QFrame;
class QGroupBox;
2012-08-09 16:03:55 +06:00
class QLabel;
class QLineEdit;
class QPushButton;
class QRadioButton;
class QCheckBox;
2009-02-17 10:27:49 +05:00
class QTableWidget;
class SMESHGUI;
class SMESH_Actor;
class SVTK_Selector;
2009-02-17 10:27:49 +05:00
class LightApp_SelectionMgr;
2009-02-17 10:27:49 +05:00
namespace SMESH
{
struct TElementSimulation;
}
//=================================================================================
// class : SMESHGUI_AddQuadraticElementDlg
// purpose :
//=================================================================================
2009-02-17 10:27:49 +05:00
class SMESHGUI_EXPORT SMESHGUI_AddQuadraticElementDlg : public QDialog
{
2009-02-17 10:27:49 +05:00
Q_OBJECT
public:
2012-08-09 16:03:55 +06:00
SMESHGUI_AddQuadraticElementDlg( SMESHGUI*, const SMDSAbs_EntityType );
2009-02-17 10:27:49 +05:00
~SMESHGUI_AddQuadraticElementDlg();
private:
2012-08-09 16:03:55 +06:00
typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
2009-02-17 10:27:49 +05:00
void Init();
void closeEvent( QCloseEvent* );
void hideEvent( QHideEvent* ); /* ESC key */
void enterEvent( QEvent* ); /* mouse enter the QWidget */
void keyPressEvent( QKeyEvent* );
void displaySimulation();
void UpdateTable( bool = true );
bool IsValid();
void updateButtons();
2012-08-09 16:03:55 +06:00
bool isValid();
2009-02-17 10:27:49 +05:00
SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
int myNbCorners; /* The required number of corners */
2012-08-09 16:03:55 +06:00
int myNbMidFaceNodes;
int myNbCenterNodes;
2009-02-17 10:27:49 +05:00
bool myBusy;
SVTK_Selector* mySelector;
2009-02-17 10:27:49 +05:00
SMESH::SMESH_Mesh_var myMesh;
SMESH_Actor* myActor;
SMESH::TElementSimulation* mySimulation;
2012-08-09 16:03:55 +06:00
QString myEntry;
GrpList myGroups;
2012-08-09 16:03:55 +06:00
SMDSAbs_EntityType myGeomType;
QLineEdit* myCurrentLineEdit;
2009-02-17 10:27:49 +05:00
QGroupBox* GroupConstructors;
QRadioButton* myRadioButton1;
QGroupBox* GroupArguments;
2012-08-09 16:03:55 +06:00
QPushButton* myCornerSelectButton;
2009-02-17 10:27:49 +05:00
QLineEdit* myCornerNodes;
2012-08-09 16:03:55 +06:00
QLabel* myMidFaceLabel;
QPushButton* myMidFaceSelectButton;
QLineEdit* myMidFaceNodes;
QLabel* myCenterLabel;
QPushButton* myCenterSelectButton;
QLineEdit* myCenterNode;
2009-02-17 10:27:49 +05:00
QTableWidget* myTable;
QCheckBox* myReverseCB;
2012-08-09 16:03:55 +06:00
QGroupBox* GroupGroups;
QLabel* TextLabel_GroupName;
QComboBox* ComboBox_GroupName;
2009-02-17 10:27:49 +05:00
QGroupBox* GroupButtons;
QPushButton* buttonOk;
QPushButton* buttonCancel;
QPushButton* buttonApply;
QPushButton* buttonHelp;
QString myHelpFileName;
private slots:
void onTextChange( const QString& );
void onCellTextChange( int, int );
void onReverse( int );
void onCellDoubleClicked( int, int );
void ClickOnOk();
void ClickOnCancel();
void ClickOnApply();
void ClickOnHelp();
2012-08-09 16:03:55 +06:00
void SetCurrentSelection();
2009-02-17 10:27:49 +05:00
void SelectionIntoArgument();
void DeactivateActiveDialog();
void ActivateThisDialog();
};
2009-02-17 10:27:49 +05:00
#endif // SMESHGUI_ADDQUADRATICELEMENTDLG_H