Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_CreateHypothesesDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  CEA
4 // 
5 //  This library is free software; you can redistribute it and/or 
6 //  modify it under the terms of the GNU Lesser General Public 
7 //  License as published by the Free Software Foundation; either 
8 //  version 2.1 of the License. 
9 // 
10 //  This library is distributed in the hope that it will be useful, 
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 //  Lesser General Public License for more details. 
14 // 
15 //  You should have received a copy of the GNU Lesser General Public 
16 //  License along with this library; if not, write to the Free Software 
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : SMESHGUI_CreateHypothesesDlg.h
24 //  Author : Julia DOROVSKIKH
25 //  Module : SMESH
26 //  $Header$
27
28 #ifndef DIALOGBOX_CREATE_HYPOTHESES_H
29 #define DIALOGBOX_CREATE_HYPOTHESES_H
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 // QT Includes
34 #include <qvariant.h>
35 #include <qdialog.h>
36 #include <qstringlist.h>
37
38 // IDL Headers
39 #include <SALOMEconfig.h>
40 #include CORBA_SERVER_HEADER(GEOM_Gen)
41 #include CORBA_SERVER_HEADER(SMESH_Mesh)
42
43 #include <map>
44 #include <string>
45
46 class QButtonGroup;
47 class QGroupBox;
48 class QPushButton;
49 class QListView;
50 class QListViewItem;
51 class SMESHGUI;
52
53 //=================================================================================
54 // class    : SMESHGUI_CreateHypothesesDlg
55 // purpose  :
56 //=================================================================================
57 class SMESHGUI_EXPORT SMESHGUI_CreateHypothesesDlg : public QDialog
58 {
59     Q_OBJECT
60
61 public:
62     SMESHGUI_CreateHypothesesDlg (SMESHGUI*,
63                                   const char* name = 0,
64                                   bool modal = FALSE,
65                                   bool isAlgo = FALSE);
66     ~SMESHGUI_CreateHypothesesDlg ();
67
68 private:
69
70     void Init() ;
71     void closeEvent( QCloseEvent* e ) ;
72     void enterEvent ( QEvent * ) ;
73
74     void InitAlgoDefinition();
75
76     SMESHGUI*     mySMESHGUI;
77     bool          myIsAlgo;
78
79     QGroupBox*    GroupButtons;
80     QPushButton*  buttonCancel;
81     QPushButton*  buttonApply;
82
83     QGroupBox* GroupAlgorithms;
84     QListView* ListAlgoDefinition;
85
86 private slots:
87
88     void ClickOnCancel();
89     void ClickOnApply();
90     void ActivateThisDialog() ;
91
92     void onSelectionChanged();
93     void onDoubleClicked(QListViewItem*);
94 };
95
96 #endif // DIALOGBOX_CREATE_HYPOTHESES_H