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