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