1 // Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File : GenerationGUI_PrismDlg.h
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
27 #ifndef GENERATIONGUI_PRISMDLG_H
28 #define GENERATIONGUI_PRISMDLG_H
30 #include "GEOMBase_Skeleton.h"
31 #include "GEOM_GenericObjPtr.h"
33 class DlgRef_2Sel1Spin3Check1Spin;
34 class DlgRef_3Sel2Check3Spin;
35 class DlgRef_1Sel3Spin2Check1Spin;
36 class DlgRef_1Check1Spin1Check;
38 //=================================================================================
39 // class : GenerationGUI_PrismDlg
41 //=================================================================================
42 class GenerationGUI_PrismDlg : public GEOMBase_Skeleton
47 GenerationGUI_PrismDlg( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
48 ~GenerationGUI_PrismDlg();
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();
61 void enterEvent( QEvent* );
64 QList<GEOM::GeomObjPtr> myBaseObjects; /* Base shapes */
65 GEOM::GeomObjPtr myVec; /* Vector, defining the direction */
66 GEOM::GeomObjPtr myPoint1, myPoint2; /* Points for extrusion */
68 DlgRef_2Sel1Spin3Check1Spin* GroupVecH;
69 DlgRef_3Sel2Check3Spin* Group2Points;
70 DlgRef_1Sel3Spin2Check1Spin* GroupDXDYDZ;
71 DlgRef_1Check1Spin1Check* GroupThickening;
76 void ActivateThisDialog();
77 void SelectionIntoArgument();
78 void SetEditCurrentArgument();
79 void ConstructorsClicked( int );
80 void ValueChangedInSpinBox();
81 void SetDoubleSpinBoxStep( double );
84 void onScalePrism(bool);
85 void onAddThickening( bool );
86 void onChangeDirection( bool );
89 #endif // GENERATIONGUI_PRISMDLG_H