Salome HOME
NRI : Merge from V1_2.
[modules/geom.git] / src / GEOMGUI / GeometryGUI_PrismDlg.h
1 //  GEOM GEOMGUI : GUI for Geometry 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   : GeometryGUI_PrismDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_PRISM_H
30 #define DIALOGBOX_PRISM_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34 #include "GeometryGUI_SpinBox.h"
35
36 #include <BRepPrimAPI_MakePrism.hxx>
37
38 #include <qvariant.h>
39 #include <qdialog.h>
40
41 class QVBoxLayout; 
42 class QHBoxLayout; 
43 class QGridLayout; 
44 class QButtonGroup;
45 class QCheckBox;
46 class QGroupBox;
47 class QLabel;
48 class QLineEdit;
49 class QPushButton;
50 class QRadioButton;
51 class GeometryGUI;
52
53
54 //=================================================================================
55 // class    : GeometryGUI_PrismDlg
56 // purpose  :
57 //=================================================================================
58 class GeometryGUI_PrismDlg : public QDialog
59
60     Q_OBJECT
61
62 public:
63     GeometryGUI_PrismDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
64     ~GeometryGUI_PrismDlg();
65
66 private :
67
68     void Init( SALOME_Selection* Sel ) ;
69     void closeEvent( QCloseEvent* e ) ;
70     void enterEvent( QEvent* e);
71     void MakePrismSimulationAndDisplay( const TopoDS_Shape& S) ;
72
73     GEOM::GEOM_Gen_var myGeom ;               /* Current Geom object */
74     GeometryGUI*          myGeomGUI ;            /* Current GeomGUI object */
75     TopoDS_Shape          mySimulationTopoDs;    /* Shape used for simulation display */    
76     SALOME_Selection*     mySelection ;          /* User shape selection */
77     Standard_Real         myDx ;
78     Standard_Real         myDy ;
79     Standard_Real         myDz ;
80     Standard_Real         myHeight ;             /* Height used for prism (extrusion) */
81     TopoDS_Shape          myBaseTopo ;           /* topology used as base of prism */  
82     GEOM::GEOM_Shape_var        myGeomShape ;          /* that is myBaseTopo */
83     bool                  myOkBase ;
84     bool                  myOkLine ;             /* to check when arguments myDx, myDy, myDz are defined */
85     QLineEdit*            myEditCurrentArgument; /* Current LineEdit */    
86     int                   myConstructorId ;      /* Current constructor id = radio button id */    
87     Handle(GEOM_ShapeTypeFilter) myEdgeFilter;   /* Filters selection */
88
89     QButtonGroup* GroupConstructors;
90     QRadioButton* Constructor1;    
91     QGroupBox* GroupConstructor1;
92
93     QLineEdit* LineEditC1A1Base;
94     QLineEdit* LineEditC1A2Line;
95     QPushButton* SelectButtonC1A1Base;
96     QPushButton* SelectButtonC1A2Line;
97     QLabel* TextLabelBase;
98     QLabel* TextLabelVector;
99     GeometryGUI_SpinBox* SpinBox_C1A3Height;
100     QCheckBox* CheckBoxC3A1Reverse;
101     QLabel* TextLabelHeight;
102
103     QGroupBox* GroupButtons;
104     QPushButton* buttonApply;
105     QPushButton* buttonOk;
106     QPushButton* buttonCancel;
107
108 private slots:
109
110     void ConstructorsClicked(int constructorId);
111     void ClickOnOk();
112     void ClickOnCancel();
113     void ClickOnApply();
114     void SetEditCurrentArgument() ;
115     void SelectionIntoArgument() ;
116     void LineEditReturnPressed() ;
117     void DeactivateActiveDialog() ;
118     void ActivateThisDialog() ;
119     void ReverseVector(int state) ;
120     void ValueChangedInSpinBox( double newValue ) ;
121
122 protected:
123     QGridLayout* GeometryGUI_PrismDlgLayout;
124     QGridLayout* GroupConstructorsLayout;
125     QGridLayout* GroupConstructor1Layout;
126     QGridLayout* GroupButtonsLayout;
127 };
128
129 #endif // DIALOGBOX_PRISM_H