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