1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : StdMeshersGUI_CreateHypothesisDlg.h
28 #ifndef DIALOGBOX_CreateHypothesisDlg_H
29 #define DIALOGBOX_CreateHypothesisDlg_H
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
39 #include "SMESHGUI_aParameter.h"
46 class SMESHGUI_SpinBox;
48 //=================================================================================
49 // class : StdMeshersGUI_CreateHypothesisDlg
51 //=================================================================================
52 class StdMeshersGUI_CreateHypothesisDlg : public QDialog
57 StdMeshersGUI_CreateHypothesisDlg (const QString& hypType,
62 ~StdMeshersGUI_CreateHypothesisDlg ();
66 void CreateDlgLayout(const QString & caption,
67 const QPixmap & hypIcon,
68 const QString & hypTypeName);
70 virtual void GetParameters( const QString& hypType,
71 std::list<SMESHGUI_aParameterPtr>& ) = 0;
73 virtual bool SetParameters( SMESH::SMESH_Hypothesis_ptr theHyp,
74 const std::list<SMESHGUI_aParameterPtr> & params ) = 0;
77 virtual void onValueChanged();
80 void UpdateShown( const SMESHGUI_aParameterPtr );
82 void closeEvent( QCloseEvent* e ) ;
83 void enterEvent ( QEvent * ) ;
96 typedef QMap< SMESHGUI_aParameterPtr, ParamInfo > ParameterMap;
97 ParameterMap myParamMap;
102 QLabel* TextLabel_NameHypothesis ;
103 QLineEdit* LineEdit_NameHypothesis ;
104 QLabel* TextLabel_Length ;
105 QGroupBox* GroupButtons;
106 QPushButton* buttonOk;
107 QPushButton* buttonApply;
108 QPushButton* buttonCancel;
113 void ClickOnCancel();
115 void DeactivateActiveDialog() ;
116 void ActivateThisDialog() ;
119 #endif // DIALOGBOX_LOCAL_LENGTH_H