Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[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 //
22 //
23 //  File   : BasicGUI_EllipseDlg.h
24 //  Author : Nicolas REJNERI
25 //  Module : GEOM
26
27 #ifndef BASICGUI_ELLIPSE_H
28 #define BASICGUI_ELLIPSE_H
29
30 #include "GEOMBase_Skeleton.h"
31 #include "DlgRef_2Sel2Spin.h"
32
33 #include "BasicGUI.h"
34
35 #include <gp_Dir.hxx>
36
37 #if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
38 #define BASICGUI_WNT_EXPORT __declspec( dllexport )
39 #else
40 #define BASICGUI_WNT_EXPORT
41 #endif
42
43 //=================================================================================
44 // class    : BasicGUI_EllipseDlg
45 // purpose  :
46 //=================================================================================
47 class BasicGUI_EllipseDlg : public GEOMBase_Skeleton
48
49     Q_OBJECT
50
51 public:
52     BasicGUI_EllipseDlg(GeometryGUI* theGeometryGUI, QWidget* parent = 0,
53                         const char* name = 0, bool modal = FALSE, WFlags fl = 0);
54     ~BasicGUI_EllipseDlg();
55
56 protected:
57     // redefined from GEOMBase_Helper
58     virtual GEOM::GEOM_IOperations_ptr createOperation();
59     virtual bool isValid( QString& );
60     virtual bool execute( ObjectList& objects );
61
62     virtual void closeEvent( QCloseEvent* e );
63
64 private :
65     void Init();
66     void enterEvent(QEvent* e);
67
68     GEOM::GEOM_Object_var myPoint, myDir;
69
70     DlgRef_2Sel2Spin* GroupPoints;
71
72 private slots:
73     void ClickOnOk();
74     void ClickOnCancel();
75     bool ClickOnApply();
76
77     void ActivateThisDialog();
78     void DeactivateActiveDialog();
79     
80     void LineEditReturnPressed();
81     void SelectionIntoArgument();
82     void SetEditCurrentArgument();
83     void ValueChangedInSpinBox(double newValue);
84
85 };
86
87 #endif // BASICGUI_ELLIPSE_H