Salome HOME
6cff8a1980f8d575940d619762043889b785a7a9
[modules/geom.git] / src / GenerationGUI / GenerationGUI_PrismDlg.h
1 // Copyright (C) 2007-2023  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : GenerationGUI_PrismDlg.h
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26
27 #ifndef GENERATIONGUI_PRISMDLG_H
28 #define GENERATIONGUI_PRISMDLG_H
29
30 #include "GEOMBase_Skeleton.h"
31 #include "GEOM_GenericObjPtr.h"
32
33 class DlgRef_2Sel1Spin3Check1Spin;
34 class DlgRef_3Sel2Check3Spin;
35 class DlgRef_1Sel3Spin2Check1Spin;
36 class DlgRef_1Check1Spin1Check;
37
38 //=================================================================================
39 // class    : GenerationGUI_PrismDlg
40 // purpose  :
41 //=================================================================================
42 class GenerationGUI_PrismDlg : public GEOMBase_Skeleton
43
44   Q_OBJECT
45
46 public:
47   GenerationGUI_PrismDlg( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
48   ~GenerationGUI_PrismDlg();
49   
50 protected:
51   // redefined from GEOMBase_Helper
52   virtual GEOM::GEOM_IOperations_ptr createOperation();
53   virtual bool                       isValid( QString& );
54   virtual bool                       execute( ObjectList& );    
55   virtual void                       addSubshapesToStudy();
56   virtual bool                       extractPrefix() const;
57   virtual QList<GEOM::GeomObjPtr>    getSourceObjects();
58
59 private:
60   void                               Init();
61   void                               enterEvent( QEvent* );
62  
63 private:
64   QList<GEOM::GeomObjPtr>            myBaseObjects;  /* Base shapes */
65   GEOM::GeomObjPtr                   myVec;  /* Vector, defining the direction */
66   GEOM::GeomObjPtr                   myPoint1, myPoint2;   /* Points for extrusion */ 
67   
68   DlgRef_2Sel1Spin3Check1Spin*       GroupVecH;
69   DlgRef_3Sel2Check3Spin*            Group2Points;
70   DlgRef_1Sel3Spin2Check1Spin*       GroupDXDYDZ;
71   DlgRef_1Check1Spin1Check*          GroupThickening;
72   
73 private slots:
74   void                               ClickOnOk();
75   bool                               ClickOnApply();
76   void                               ActivateThisDialog();
77   void                               SelectionIntoArgument();
78   void                               SetEditCurrentArgument();
79   void                               ConstructorsClicked( int );
80   void                               ValueChangedInSpinBox();
81   void                               SetDoubleSpinBoxStep( double );
82   void                               onReverse();
83   void                               onBothway();
84   void                               onScalePrism(bool);
85   void                               onAddThickening( bool );
86   void                               onChangeDirection( bool );
87 };
88
89 #endif // GENERATIONGUI_PRISMDLG_H