Salome HOME
*** empty log message ***
[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,
42                       const char* = 0, bool = false, Qt::WindowFlags = 0 );
43   ~BasicGUI_EllipseDlg();
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   virtual void                       closeEvent( QCloseEvent* );
52   
53 private:
54   void                               Init();
55   void                               enterEvent( QEvent* );
56
57 private:
58   GEOM::GEOM_Object_var              myPoint, myDir;
59   
60   DlgRef_2Sel2Spin*                  GroupPoints;
61   
62 private slots:
63   void                               ClickOnOk();
64   void                               ClickOnCancel();
65   bool                               ClickOnApply();
66   
67   void                               ActivateThisDialog();
68   void                               DeactivateActiveDialog();
69   
70   void                               LineEditReturnPressed();
71   void                               SelectionIntoArgument();
72   void                               SetEditCurrentArgument();
73   void                               ValueChangedInSpinBox( double );
74 };
75
76 #endif // BASICGUI_ELLIPSEDLG_H