Salome HOME
updated copyright message
[modules/geom.git] / src / OperationGUI / OperationGUI_Fillet1d2dDlg.h
1 // Copyright (C) 2007-2023  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // GEOM GEOMGUI : GUI for Geometry component
21 // File   : OperationGUI_Fillet1d2dDlg.h
22 // Author : DMV, OCN
23
24 #ifndef OPERATIONGUI_Fillet1d2dDLG_H
25 #define OPERATIONGUI_Fillet1d2dDLG_H
26
27 #include <GEOMBase_Skeleton.h>
28
29 #include <TColStd_IndexedMapOfInteger.hxx>
30
31 class DlgRef_2Sel1Spin2Check;
32
33 //=================================================================================
34 // class    : OperationGUI_Fillet1d2dDlg
35 // purpose  :
36 //=================================================================================
37 class OperationGUI_Fillet1d2dDlg : public GEOMBase_Skeleton
38
39   Q_OBJECT
40       
41 public:
42   OperationGUI_Fillet1d2dDlg( GeometryGUI*, QWidget*, bool theIs1D );
43   ~OperationGUI_Fillet1d2dDlg();
44   
45 protected:
46   // redefined from GEOMBase_Helper
47   virtual                             GEOM::GEOM_IOperations_ptr createOperation();
48   virtual                             bool isValid( QString& );
49   virtual                             bool execute( ObjectList& );
50   virtual QList<GEOM::GeomObjPtr>     getSourceObjects();
51
52 private slots:
53   void                                ClickOnOk();
54   bool                                ClickOnApply();
55   void                                ActivateThisDialog();
56   void                                LineEditReturnPressed();
57   void                                SelectionIntoArgument();
58   void                                SetEditCurrentArgument();
59   void                                ValueChangedInSpinBox( double );
60   
61 private:
62   void                                Init();
63   void                                enterEvent( QEvent* );
64   void                                activateSelection();
65   double                              getRadius() const;
66
67 private:
68   bool                                myIs1D;
69   GEOM::GEOM_Object_var               myShape;
70   TColStd_IndexedMapOfInteger         myVertexes;
71
72   DlgRef_2Sel1Spin2Check*             GroupVertexes;
73 };
74
75 #endif // OPERATIONGUI_Fillet1d2dDLG_H