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