Salome HOME
e7f4e9cc279a6dbe84c731e42001c08ff63260f2
[modules/geom.git] / src / PrimitiveGUI / PrimitiveGUI_DiskDlg.h
1 //  Copyright (C) 2007-2010  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
20 // GEOM GEOMGUI : GUI for Geometry component
21 // File   : PrimitiveGUI_DiskDlg.h
22 // Author : Dmitry Matveitchev, OCN
23 //
24 #ifndef BASICGUI_DISKDLG_H
25 #define BASICGUI_DISKDLG_H
26
27 #include <GEOMBase_Skeleton.h>
28
29 class DlgRef_3Sel;
30 class DlgRef_2Sel1Spin;
31 class DlgRef_1Spin;
32 class DlgRef_3Radio;
33
34 //=================================================================================
35 // class    : PrimitiveGUI_DiskDlg
36 // purpose  :
37 //=================================================================================
38 class PrimitiveGUI_DiskDlg : public GEOMBase_Skeleton
39 {
40   Q_OBJECT
41
42 public:
43   PrimitiveGUI_DiskDlg( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
44   ~PrimitiveGUI_DiskDlg();
45
46 protected:
47   // redefined from GEOMBase_Helper
48   virtual GEOM::GEOM_IOperations_ptr createOperation();
49   virtual bool                       isValid( QString& );
50   virtual bool                       execute( ObjectList& );
51   
52   virtual void                       addSubshapesToStudy();
53   
54 private:
55   void                               Init();
56   void                               enterEvent( QEvent* );
57   double                             getRadius() const;
58   int                                myOrientationType;
59
60 private:
61   GEOM::GEOM_Object_var              myPoint, myDir, myPoint1, myPoint2, myPoint3;
62
63   DlgRef_2Sel1Spin*                  GroupPntVecR;
64   DlgRef_3Sel*                       Group3Pnts;
65   DlgRef_1Spin*                      GroupDimensions;
66   DlgRef_3Radio*                     GroupOrientation;
67
68 private slots:
69   void                               ClickOnOk();
70   bool                               ClickOnApply();
71
72   void                               ActivateThisDialog();
73     
74   void                               SelectionIntoArgument();
75
76   void                               ConstructorsClicked( int );
77   void                               LineEditReturnPressed();
78   void                               SetEditCurrentArgument();
79   void                               ValueChangedInSpinBox();
80   void                               SetDoubleSpinBoxStep( double );
81   void                               RadioButtonClicked();
82 };
83
84 #endif // BASICGUI_DISKDLG_H