]> SALOME platform Git repositories - modules/geom.git/blob - src/BasicGUI/BasicGUI_EllipseDlg.h
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 "GEOM_BasicGUI.hxx"
29
30 #include <GEOMBase_Skeleton.h>
31
32 class DlgRef_2Sel2Spin;
33
34 //=================================================================================
35 // class    : BasicGUI_EllipseDlg
36 // purpose  :
37 //=================================================================================
38 class BASICGUI_EXPORT BasicGUI_EllipseDlg : public GEOMBase_Skeleton
39
40   Q_OBJECT
41
42 public:
43   BasicGUI_EllipseDlg( GeometryGUI*, QWidget* = 0,
44                       const char* = 0, bool = false, Qt::WindowFlags = 0 );
45   ~BasicGUI_EllipseDlg();
46
47 protected:
48   // redefined from GEOMBase_Helper
49   virtual GEOM::GEOM_IOperations_ptr createOperation();
50   virtual bool                       isValid( QString& );
51   virtual bool                       execute( ObjectList& );
52   
53   virtual void                       closeEvent( QCloseEvent* );
54   
55 private:
56   void                               Init();
57   void                               enterEvent( QEvent* );
58
59 private:
60   GEOM::GEOM_Object_var              myPoint, myDir;
61   
62   DlgRef_2Sel2Spin*                  GroupPoints;
63   
64 private slots:
65   void                               ClickOnOk();
66   void                               ClickOnCancel();
67   bool                               ClickOnApply();
68   
69   void                               ActivateThisDialog();
70   void                               DeactivateActiveDialog();
71   
72   void                               LineEditReturnPressed();
73   void                               SelectionIntoArgument();
74   void                               SetEditCurrentArgument();
75   void                               ValueChangedInSpinBox( double );
76 };
77
78 #endif // BASICGUI_ELLIPSEDLG_H