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"
48 class SMESHGUI_SpinBox;
50 //=================================================================================
51 // class : StdMeshersGUI_CreateHypothesisDlg
53 //=================================================================================
54 class StdMeshersGUI_CreateHypothesisDlg : public QDialog
59 StdMeshersGUI_CreateHypothesisDlg (const QString& hypType,
64 ~StdMeshersGUI_CreateHypothesisDlg ();
68 void CreateDlgLayout(const QString & caption,
69 const QPixmap & hypIcon,
70 const QString & hypTypeName);
72 virtual void GetParameters( const QString& hypType,
73 std::list<SMESHGUI_aParameterPtr>& ) = 0;
75 virtual bool SetParameters( SMESH::SMESH_Hypothesis_ptr theHyp,
76 const std::list<SMESHGUI_aParameterPtr> & params ) = 0;
79 virtual void onValueChanged();
82 void UpdateShown( const SMESHGUI_aParameterPtr );
84 void closeEvent( QCloseEvent* e ) ;
85 void enterEvent ( QEvent * ) ;
98 typedef QMap< SMESHGUI_aParameterPtr, ParamInfo > ParameterMap;
99 ParameterMap myParamMap;
104 QLabel* TextLabel_NameHypothesis ;
105 QLineEdit* LineEdit_NameHypothesis ;
106 QLabel* TextLabel_Length ;
107 QGroupBox* GroupButtons;
108 QPushButton* buttonOk;
109 QPushButton* buttonApply;
110 QPushButton* buttonCancel;
115 void ClickOnCancel();
117 void DeactivateActiveDialog() ;
118 void ActivateThisDialog() ;
121 #endif // DIALOGBOX_LOCAL_LENGTH_H