Salome HOME
fc475ca9155eb87f0abf898956c7c91509433cac
[modules/geom.git] / src / OperationGUI / OperationGUI_ExtrudedFeatureDlg.h
1 // Copyright (C) 2007-2021  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   : OperationGUI_ExtrudedFeatureDlg.h
25 //  Author : Renaud NEDELEC, Open CASCADE S.A.S.
26
27 #ifndef BASICGUI_EXTRUDEDFEATUREDLG_H
28 #define BASICGUI_EXTRUDEDFEATUREDLG_H
29
30 #include "GEOMBase_Skeleton.h"
31 #include "GEOM_GenericObjPtr.h"
32 #include <QMap>
33
34 // class DlgRef_2Sel1Spin;
35 // class DlgRef_3Spin;
36 // class DlgRef_2Sel;
37 // class DlgRef_1Sel3Spin;
38 // class DlgRef_1Sel2Spin;
39 class DlgRef_2Sel2Spin2Push;
40
41 // class QLineEdit;
42 // class QGroupBox;
43 // class QButtonGroup;
44 // class QMenu;
45 class QAction;
46
47 //=================================================================================
48 // class    : OperationGUI_ExtrudedFeatureDlg
49 // purpose  :
50 //=================================================================================
51 class OperationGUI_ExtrudedFeatureDlg : public GEOMBase_Skeleton
52
53   Q_OBJECT
54
55 public:
56   OperationGUI_ExtrudedFeatureDlg( const int, GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
57   ~OperationGUI_ExtrudedFeatureDlg();
58   
59 protected:
60   // redefined from GEOMBase_Helper
61   virtual GEOM::GEOM_IOperations_ptr createOperation();
62   virtual bool                       isValid( QString& );
63   virtual bool                       execute( ObjectList& );
64 //   virtual void                       addSubshapesToStudy();
65   virtual QList<GEOM::GeomObjPtr>     getSourceObjects();
66   
67 private:
68   void                        Init();
69   void                        enterEvent( QEvent* );
70   
71 private:
72   int                         myOperation;
73   
74   GEOM::GeomObjPtr            myObject1;
75   GEOM::GeomObjPtr            myObject2;
76   
77   DlgRef_2Sel2Spin2Push*      myGroup;
78   
79 private slots:
80   void                        ClickOnOk();
81   bool                        ClickOnApply();
82   void                        ActivateThisDialog();
83   void                        SetEditCurrentArgument();
84   void                        SelectionIntoArgument();
85   void                        ValueChangedInSpinBox();
86   void                        ButtonClicked(bool);
87   
88 };
89
90 #endif // BASICGUI_EXTRUDEDFEATUREDLG_H