Salome HOME
Revert "Synchronize adm files"
[modules/geom.git] / src / OperationGUI / OperationGUI_Fillet1d2dDlg.h
1 // Copyright (C) 2007-2014  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
51 private slots:
52   void                                ClickOnOk();
53   bool                                ClickOnApply();
54   void                                ActivateThisDialog();
55   void                                LineEditReturnPressed();
56   void                                SelectionIntoArgument();
57   void                                SetEditCurrentArgument();
58   void                                ValueChangedInSpinBox( double );
59   
60 private:
61   void                                Init();
62   void                                enterEvent( QEvent* );
63   void                                activateSelection();
64   double                              getRadius() const;
65
66 private:
67   bool                                myIs1D;
68   GEOM::GEOM_Object_var               myShape;
69   TColStd_IndexedMapOfInteger         myVertexes;
70
71   DlgRef_2Sel1Spin2Check*             GroupVertexes;
72 };
73
74 #endif // OPERATIONGUI_Fillet1d2dDLG_H