Salome HOME
Remove OCC_LIBS from LDFLAGS
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddAlgorithmDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESHGUI_AddAlgorithmDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef DIALOGBOX_ADD_ALGORITHM_H
30 #define DIALOGBOX_ADD_ALGORITHM_H
31
32 #include "SALOME_Selection.h"
33 #include "SMESH_TypeFilter.hxx"
34 #include "SALOME_ListIO.hxx"
35
36 // IDL Headers
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Gen)
39
40 // QT Includes
41 #include <qvariant.h>
42 #include <qdialog.h>
43
44 class QVBoxLayout; 
45 class QHBoxLayout; 
46 class QGridLayout; 
47 class QButtonGroup;
48 class QFrame;
49 class QGroupBox;
50 class QLabel;
51 class QLineEdit;
52 class QPushButton;
53 class QRadioButton;
54 class SMESHGUI;
55
56
57 //=================================================================================
58 // class    : SMESHGUI_AddAlgorithmDlg
59 // purpose  :
60 //=================================================================================
61 class SMESHGUI_AddAlgorithmDlg : public QDialog
62
63     Q_OBJECT
64
65 public:
66     SMESHGUI_AddAlgorithmDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
67     ~SMESHGUI_AddAlgorithmDlg();
68
69 private:
70
71     void Init( SALOME_Selection* Sel ) ;
72     void closeEvent( QCloseEvent* e ) ;
73     void enterEvent ( QEvent * ) ;                /* mouse enter the QWidget */
74
75     SMESH::SMESH_Gen_var  myCompMesh ;                
76     SMESHGUI*             mySMESHGUI ;            
77     SALOME_Selection*     mySelection ;          
78
79     SMESH::SMESH_Mesh_var       myMesh;
80     SMESH::SMESH_subMesh_var    mySubMesh;
81     SMESH::SMESH_Hypothesis_var myAlgorithm;
82
83     Handle(SMESH_TypeFilter)  myAlgorithmFilter;
84     Handle(SMESH_TypeFilter) myMeshOrSubMeshFilter;
85
86     bool                  myOkMesh ;
87     bool                  myOkSubMesh ;
88     bool                  myOkAlgorithm;
89
90     int                   myConstructorId ;       /* Current constructor id = radio button id */
91     QLineEdit*            myEditCurrentArgument;  /* Current LineEdit */    
92
93     SALOME_ListIO AlgoList;
94
95     QButtonGroup* GroupConstructors;
96     QRadioButton* Constructor1;
97
98     QGroupBox* GroupConstructor1;
99     QLineEdit* LineEditC1A1Hyp;
100     QLineEdit* LineEditC1A2Mesh;
101     QPushButton* SelectButtonC1A1Hyp;
102     QPushButton* SelectButtonC1A2Mesh;
103     QLabel* TextLabelC1A2Mesh;
104     QLabel* TextLabelC1A1Hyp;
105
106     QGroupBox* GroupButtons;
107     QPushButton* buttonApply;
108     QPushButton* buttonOk;
109     QPushButton* buttonCancel;
110
111 private slots:
112
113     void ConstructorsClicked(int constructorId);
114     void ClickOnOk();
115     void ClickOnCancel();
116     void ClickOnApply();
117     void SetEditCurrentArgument() ;
118     void SelectionIntoArgument() ;
119     void LineEditReturnPressed() ;
120     void DeactivateActiveDialog() ;
121     void ActivateThisDialog() ;
122
123 protected:
124     QGridLayout* SMESHGUI_AddAlgorithmDlgLayout;
125     QGridLayout* GroupConstructorsLayout;
126     QGridLayout* GroupButtonsLayout;
127     QGridLayout* GroupConstructor1Layout;
128 };
129
130 #endif // DIALOGBOX_ADD_ALGORITHM_H