Salome HOME
Update copyright information
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_CreateHypothesesDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SMESH SMESHGUI : GUI for SMESH component
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