Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / OperationGUI / OperationGUI_Fillet1d2dDlg.h
1 // Copyright (C) 2007-2012  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.
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 // GEOM GEOMGUI : GUI for Geometry component
20 // File   : OperationGUI_Fillet1d2dDlg.h
21 // Author : DMV, OCN
22
23 #ifndef OPERATIONGUI_Fillet1d2dDLG_H
24 #define OPERATIONGUI_Fillet1d2dDLG_H
25
26 #include <GEOMBase_Skeleton.h>
27
28 #include <TColStd_IndexedMapOfInteger.hxx>
29
30 class DlgRef_2Sel1Spin2Check;
31
32 //=================================================================================
33 // class    : OperationGUI_Fillet1d2dDlg
34 // purpose  :
35 //=================================================================================
36 class OperationGUI_Fillet1d2dDlg : public GEOMBase_Skeleton
37
38   Q_OBJECT
39       
40 public:
41   OperationGUI_Fillet1d2dDlg( GeometryGUI*, QWidget*, bool theIs1D );
42   ~OperationGUI_Fillet1d2dDlg();
43   
44 protected:
45   // redefined from GEOMBase_Helper
46   virtual                             GEOM::GEOM_IOperations_ptr createOperation();
47   virtual                             bool isValid( QString& );
48   virtual                             bool execute( ObjectList& );
49
50 private slots:
51   void                                ClickOnOk();
52   bool                                ClickOnApply();
53   void                                ActivateThisDialog();
54   void                                LineEditReturnPressed();
55   void                                SelectionIntoArgument();
56   void                                SetEditCurrentArgument();
57   void                                ValueChangedInSpinBox( double );
58   
59 private:
60   void                                Init();
61   void                                enterEvent( QEvent* );
62   void                                activateSelection();
63   double                              getRadius() const;
64
65 private:
66   bool                                myIs1D;
67   GEOM::GEOM_Object_var               myShape;
68   TColStd_IndexedMapOfInteger         myVertexes;
69
70   DlgRef_2Sel1Spin2Check*             GroupVertexes;
71 };
72
73 #endif // OPERATIONGUI_Fillet1d2dDLG_H