Salome HOME
Porting to Qt4.
[modules/geom.git] / src / BasicGUI / BasicGUI_PointDlg.h
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : BasicGUI_PointDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27
28 #ifndef DIALOGBOX_POINT_H
29 #define DIALOGBOX_POINT_H
30
31 #include "GEOM_BasicGUI.hxx"
32
33 #include "GEOMBase_Skeleton.h"
34
35 class DlgRef_1Sel1Spin;
36 class DlgRef_3Spin;
37 class DlgRef_1Sel3Spin;
38
39 class QLineEdit;
40 class QGroupBox;
41
42 class gp_Pnt;
43
44 //=================================================================================
45 // class    : BasicGUI_PointDlg
46 // purpose  :
47 //=================================================================================
48 class GEOM_BASICGUI_EXPORT BasicGUI_PointDlg : public GEOMBase_Skeleton
49
50     Q_OBJECT
51
52 public:
53     BasicGUI_PointDlg(GeometryGUI* theGeometryGUI, QWidget* parent = 0,
54                       const char* name = 0, bool modal = FALSE, Qt::WindowFlags fl = 0);
55
56     ~BasicGUI_PointDlg();
57
58     bool acceptMouseEvent() const { return ( getConstructorId() == 0 );  };
59     void OnPointSelected( const gp_Pnt& ); // called by BasicGUI::OnMousePress()
60
61 protected:
62     // redefined from GEOMBase_Helper
63     virtual GEOM::GEOM_IOperations_ptr createOperation();
64     virtual bool isValid( QString& );
65     virtual bool execute( ObjectList& objects );
66
67     virtual void closeEvent( QCloseEvent* e );
68
69 private :
70     void Init();
71     void enterEvent(QEvent* e);
72     double getParameter() const;
73
74     GEOM::GEOM_Object_var myEdge;
75     GEOM::GEOM_Object_var myRefPoint; 
76
77     DlgRef_3Spin*     GroupXYZ;
78     DlgRef_1Sel3Spin* GroupRefPoint;
79     DlgRef_1Sel1Spin* GroupOnCurve;
80
81     QGroupBox*        myCoordGrp;
82     QLineEdit*        myX;
83     QLineEdit*        myY;
84     QLineEdit*        myZ;
85
86 private slots:
87     void ClickOnOk();
88     void ClickOnCancel();
89     bool ClickOnApply();
90     void ActivateThisDialog();
91     void DeactivateActiveDialog();
92     void LineEditReturnPressed();
93     void SelectionIntoArgument();
94     void SetEditCurrentArgument();
95     void ConstructorsClicked(int constructorId);
96     void ValueChangedInSpinBox(double newValue);
97 };
98
99 #endif // DIALOGBOX_POINT_H