Salome HOME
IPAL19834: Incorrect result after make Partition of 2 objects. A fix by PKV.
[modules/geom.git] / src / BasicGUI / BasicGUI_EllipseDlg.h
1 // GEOM GEOMGUI : GUI for Geometry component
2 //
3 // Copyright (C) 2003  OPEN CASCADE 
4 // 
5 // This library is free software; you can redistribute it and/or 
6 // modify it under the terms of the GNU Lesser General Public 
7 // License as published by the Free Software Foundation; either 
8 // version 2.1 of the License. 
9 // 
10 // This library is distributed in the hope that it will be useful, 
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 // Lesser General Public License for more details. 
14 // 
15 // You should have received a copy of the GNU Lesser General Public 
16 // License along with this library; if not, write to the Free Software 
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21 // File   : BasicGUI_EllipseDlg.h
22 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
23 //
24
25 #ifndef BASICGUI_ELLIPSEDLG_H
26 #define BASICGUI_ELLIPSEDLG_H
27
28 #include <GEOMBase_Skeleton.h>
29
30 class DlgRef_2Sel2Spin;
31
32 //=================================================================================
33 // class    : BasicGUI_EllipseDlg
34 // purpose  :
35 //=================================================================================
36 class BasicGUI_EllipseDlg : public GEOMBase_Skeleton
37
38   Q_OBJECT
39
40 public:
41   BasicGUI_EllipseDlg( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
42   ~BasicGUI_EllipseDlg();
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   virtual void                       addSubshapesToStudy();
50   
51 private:
52   void                               Init();
53   void                               enterEvent( QEvent* );
54
55 private:
56   GEOM::GEOM_Object_var              myPoint, myDir;
57   
58   DlgRef_2Sel2Spin*                  GroupPoints;
59   
60 private slots:
61   void                               ClickOnOk();
62   bool                               ClickOnApply();
63   
64   void                               ActivateThisDialog();
65   void                               DeactivateActiveDialog();
66   
67   void                               LineEditReturnPressed();
68   void                               SelectionIntoArgument();
69   void                               SetEditCurrentArgument();
70   void                               ValueChangedInSpinBox( double );
71   void                               SetDoubleSpinBoxStep( double );
72 };
73
74 #endif // BASICGUI_ELLIPSEDLG_H