Salome HOME
5a0237c83c23c62fac9c8a3a34a723ef681c0b00
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_CreatePolyhedralVolumeDlg.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_CreatePolyhedralVolumeDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef DIALOGBOX_CREATEPOLYHEDRAL_H
30 #define DIALOGBOX_CREATEPOLYHEDRAL_H
31
32 #include "SALOME_Selection.h"
33
34 // QT Includes
35 #include <qdialog.h>
36
37 class QGridLayout; 
38 class QButtonGroup;
39 class QGroupBox;
40 class QListBox;
41 class QLabel;
42 class QLineEdit;
43 class QPushButton;
44 class QRadioButton;
45 class SMESHGUI;
46 class SMESH_Actor;
47
48 namespace SMESH{
49   struct TPolySimulation;
50 }
51
52 // IDL Headers
53 #include <SALOMEconfig.h>
54 #include CORBA_SERVER_HEADER(SMESH_Mesh)
55
56 //=================================================================================
57 // class    : SMESHGUI_CreatePolyhedralVolumeDlg
58 // purpose  :
59 //=================================================================================
60 class SMESHGUI_CreatePolyhedralVolumeDlg : public QDialog
61
62     Q_OBJECT
63
64 public:
65     SMESHGUI_CreatePolyhedralVolumeDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
66     ~SMESHGUI_CreatePolyhedralVolumeDlg();
67
68 private:
69
70     void Init( SALOME_Selection* Sel ) ;
71     void closeEvent( QCloseEvent* e ) ;
72     void enterEvent ( QEvent * ) ;                          /* mouse enter the QWidget */
73     void hideEvent ( QHideEvent * );                        /* ESC key */
74     int  GetConstructorId();
75     void displaySimulation();
76     
77     SMESHGUI*                     mySMESHGUI ;              /* Current SMESHGUI object */
78     SALOME_Selection*             mySelection ;             /* User shape selection */
79     QString                       myIDs;
80     bool                          myOkElements ;            /* to check when elements are defined */
81
82     QLineEdit*                    myEditCurrentArgument;
83    
84     SMESH::SMESH_Mesh_var         myMesh;
85     SMESH_Actor*                  myActor;
86     SMESH::TPolySimulation*       mySimulation;
87     
88     QButtonGroup* GroupConstructors;
89     QRadioButton* RadioButton1;
90     QRadioButton* RadioButton2;
91     QGroupBox* GroupButtons;
92     QPushButton* buttonOk;
93     QPushButton* buttonCancel;
94     QPushButton* buttonApply;
95     QGroupBox* GroupContent;
96     QLabel* TextLabelIds;
97     QPushButton* SelectElementsButton;
98     QLineEdit* LineEditElements;
99     QListBox* myFacesByNodes;
100     QLabel* myFacesByNodesLabel;
101     QPushButton* AddButton;
102     QPushButton* RemoveButton;
103        
104     public slots:
105
106     void onAdd();
107     void onRemove();
108
109     private slots:
110
111     void ConstructorsClicked(int constructorId);
112     void ClickOnOk();
113     void ClickOnCancel();
114     void ClickOnApply();
115     void SetEditCurrentArgument() ;
116     void SelectionIntoArgument() ;
117     void DeactivateActiveDialog() ;
118     void ActivateThisDialog() ;
119     void onTextChange(const QString&);
120     void onListSelectionChanged();
121     
122 protected:
123     QGridLayout* SMESHGUI_CreatePolyhedralVolumeDlgLayout;
124     QGridLayout* GroupConstructorsLayout;
125     QGridLayout* GroupButtonsLayout;
126     QGridLayout* GroupContentLayout;
127 };
128
129 #endif // DIALOGBOX_CREATEPOLYHEDRAL_H