Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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     int checkEditLine(bool checkLast=true); /*! Checking for indices, return 1 if all ok, esle -1*/
80     
81     SMESHGUI*                     mySMESHGUI ;              /* Current SMESHGUI object */
82     LightApp_SelectionMgr*        mySelectionMgr ;             /* User shape selection */
83     SVTK_Selector*                mySelector;
84     QString                       myIDs;
85     int                           myNbOkElements ;            /* to check when elements are defined */
86
87     QLineEdit*                    myEditCurrentArgument;
88    
89     SMESH::SMESH_Mesh_var         myMesh;
90     SMESH_Actor*                  myActor;
91     SMESH::TPolySimulation*       mySimulation;
92     
93     QButtonGroup* GroupConstructors;
94     QRadioButton* RadioButton1;
95     QRadioButton* RadioButton2;
96     QCheckBox* Preview;
97     QGroupBox* GroupButtons;
98     QPushButton* buttonOk;
99     QPushButton* buttonCancel;
100     QPushButton* buttonApply;
101     QPushButton* buttonHelp;
102     QGroupBox* GroupContent;
103     QLabel* TextLabelIds;
104     QPushButton* SelectElementsButton;
105     QLineEdit* LineEditElements;
106     QListBox* myFacesByNodes;
107     QLabel* myFacesByNodesLabel;
108     QPushButton* AddButton;
109     QPushButton* RemoveButton;
110
111     QString myHelpFileName;
112        
113     public slots:
114
115     void onAdd();
116     void onRemove();
117
118     private slots:
119
120     void ConstructorsClicked(int constructorId);
121     void ClickOnPreview(bool theToggled);
122     void ClickOnOk();
123     void ClickOnCancel();
124     void ClickOnApply();
125     void ClickOnHelp();
126     void SetEditCurrentArgument() ;
127     void SelectionIntoArgument() ;
128     void DeactivateActiveDialog() ;
129     void ActivateThisDialog() ;
130     void onTextChange(const QString&);
131     void onListSelectionChanged();
132     
133 protected:
134     QGridLayout* SMESHGUI_CreatePolyhedralVolumeDlgLayout;
135     QGridLayout* GroupConstructorsLayout;
136     QGridLayout* GroupButtonsLayout;
137     QGridLayout* GroupContentLayout;
138 };
139
140 #endif // DIALOGBOX_CREATEPOLYHEDRAL_H