Salome HOME
PAL6938
[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 // QT Includes
32 #include <qvariant.h>
33 #include <qdialog.h>
34 #include <qstringlist.h>
35
36 // IDL Headers
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(GEOM_Gen)
39 #include CORBA_SERVER_HEADER(SMESH_Mesh)
40
41 #include <map>
42 #include <string>
43
44 class QButtonGroup;
45 class QGroupBox;
46 class QPushButton;
47 class QListView;
48 class QListViewItem;
49 class SMESHGUI;
50
51 //=================================================================================
52 // class    : SMESHGUI_CreateHypothesesDlg
53 // purpose  :
54 //=================================================================================
55 class SMESHGUI_CreateHypothesesDlg : public QDialog
56 {
57     Q_OBJECT
58
59 public:
60     SMESHGUI_CreateHypothesesDlg (QWidget* parent = 0,
61                                   const char* name = 0,
62                                   bool modal = FALSE,
63                                   bool isAlgo = FALSE);
64     ~SMESHGUI_CreateHypothesesDlg ();
65
66 private:
67
68     void Init() ;
69     void closeEvent( QCloseEvent* e ) ;
70     void enterEvent ( QEvent * ) ;
71
72     void InitAlgoDefinition();
73
74     SMESHGUI*     mySMESHGUI;
75     bool          myIsAlgo;
76
77     QGroupBox*    GroupButtons;
78     QPushButton*  buttonCancel;
79     QPushButton*  buttonApply;
80
81     QGroupBox* GroupAlgorithms;
82     QListView* ListAlgoDefinition;
83
84 private slots:
85
86     void ClickOnCancel();
87     void ClickOnApply();
88     void ActivateThisDialog() ;
89
90     void onSelectionChanged();
91     void onDoubleClicked(QListViewItem*);
92 };
93
94 #endif // DIALOGBOX_CREATE_HYPOTHESES_H