Salome HOME
0022765: [EDF] Improvement of local selection mechanism
[modules/geom.git] / src / BasicGUI / BasicGUI_PointDlg.h
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : BasicGUI_PointDlg.h
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26
27 #ifndef BASICGUI_POINTDLG_H
28 #define BASICGUI_POINTDLG_H
29
30 #include "GEOMBase_Skeleton.h"
31 #include "GEOM_GenericObjPtr.h"
32 #include <QMap>
33
34 class DlgRef_2Sel1Spin;
35 class DlgRef_3Spin;
36 class DlgRef_2Sel;
37 class DlgRef_1Sel3Spin;
38 class DlgRef_1Sel2Spin;
39
40 class QLineEdit;
41 class QGroupBox;
42 class QButtonGroup;
43 class QMenu;
44 class QAction;
45
46 class gp_Pnt;
47
48 //=================================================================================
49 // class    : BasicGUI_PointDlg
50 // purpose  :
51 //=================================================================================
52 class BasicGUI_PointDlg : public GEOMBase_Skeleton
53
54   Q_OBJECT
55
56 public:
57   BasicGUI_PointDlg( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
58
59   ~BasicGUI_PointDlg();
60
61   bool                               acceptMouseEvent() const { return ( getConstructorId() == 0 );  }
62   void                               OnPointSelected( const gp_Pnt& ); // called by BasicGUI::OnMousePress()
63
64 protected:
65   // redefined from GEOMBase_Helper
66   virtual GEOM::GEOM_IOperations_ptr createOperation();
67   virtual bool                       isValid( QString& );
68   virtual bool                       execute( ObjectList& );
69   virtual void                       addSubshapesToStudy();
70
71 private:
72   void                               Init();
73   void                               enterEvent( QEvent* );
74   double                             getParameter() const;
75   double                             getUParameter() const;
76   double                             getVParameter() const;
77   void                               updateParamCoord(bool theIsUpdate);
78
79 private:
80   GEOM::GeomObjPtr                   myEdge;
81   GEOM::GeomObjPtr                   myFace;
82   GEOM::GeomObjPtr                   myRefPoint; 
83   GEOM::GeomObjPtr                   myLine1; 
84   GEOM::GeomObjPtr                   myLine2;
85
86   bool                               myBusy;
87
88   DlgRef_3Spin*                      GroupXYZ;
89   DlgRef_1Sel3Spin*                  GroupRefPoint;
90   DlgRef_2Sel1Spin*                  GroupOnCurve;
91   DlgRef_2Sel*                       GroupLineIntersection;
92   DlgRef_1Sel2Spin*                  GroupOnSurface;
93   
94   QGroupBox*                         myCoordGrp;
95   QLineEdit*                         myX;
96   QLineEdit*                         myY;
97   QLineEdit*                         myZ;
98
99   QGroupBox*                         myParamGroup;
100   QButtonGroup*                      myParamCoord;
101
102   QMap<QAction*, int>                myActions;
103
104   TopAbs_ShapeEnum                   myNeedType;
105   
106 private slots:
107   void                               ClickOnOk();
108   bool                               ClickOnApply();
109   void                               ActivateThisDialog();
110   void                               DeactivateActiveDialog();
111   void                               SelectionIntoArgument();
112   void                               SetEditCurrentArgument();
113   void                               ConstructorsClicked( int );
114   void                               ValueChangedInSpinBox( double );
115   void                               SetDoubleSpinBoxStep( double );
116   void                               ClickParamCoord( int );
117   void                               CheckBoxClicked( int );
118   void                               updateSize();
119 };
120
121 #endif // BASICGUI_POINTDLG_H