]> SALOME platform Git repositories - modules/geom.git/blob - src/EntityGUI/EntityGUI_SketcherDlg.h
Salome HOME
93a6835fff9f0685849e10411da451c9bc8ed411
[modules/geom.git] / src / EntityGUI / EntityGUI_SketcherDlg.h
1 // Copyright (C) 2007-2011  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
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : EntityGUI_SketcherDlg.h
25 // Author : Damien COQUERET, Open CASCADE S.A.S.
26 //
27 #ifndef ENTITYGUI_SKETCHERDLG_H
28 #define ENTITYGUI_SKETCHERDLG_H
29
30 #include <GEOMBase_Helper.h>
31
32 #include <QGroupBox>
33 #include <QComboBox>
34 #include <QDialog>
35 #include <QLabel>
36
37 #include <gp_Ax3.hxx>
38
39 class QLineEdit;
40 class SalomeApp_DoubleSpinBox;
41 class EntityGUI_1Sel;
42 class EntityGUI_2Sel1Check;
43 class EntityGUI_1Sel1Spin1Check;
44 class EntityGUI_1Spin;
45 class EntityGUI_2Spin;
46 class EntityGUI_3Spin1Check;
47 class EntityGUI_4Spin1Check;
48 class EntityGUI_Point;
49 class EntityGUI_Dir1;
50 class EntityGUI_Dir2;
51 class EntityGUI_Skeleton;
52 class GeometryGUI;
53
54 #ifndef COORD_MIN
55 #  define COORD_MIN -1e+15
56 #  define COORD_MAX +1e+15
57 #  define MAX_NUMBER 100000
58 #  define DBL_DIGITS_DISPLAY 16
59 #endif // COORD_MIN
60
61 //=================================================================================
62 // class    : EntityGUI_Dlg
63 // purpose  :
64 //=================================================================================
65 class EntityGUI_SketcherDlg : public QDialog, GEOMBase_Helper
66
67   Q_OBJECT
68
69 public:
70   EntityGUI_SketcherDlg( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0,
71                          const double = 2. );
72   ~EntityGUI_SketcherDlg();
73
74   bool eventFilter (QObject* object, QEvent* event);
75   
76   bool                               acceptMouseEvent() const { return ( getPnt1ConstructorId() == 1 );  } //accept mouse event only on absolute selection mode
77   void                               OnPointSelected( Qt::KeyboardModifiers, const gp_Pnt& ); // called by EntityGUI::OnMousePress()
78
79 protected:
80   void                               initSpinBox( SalomeApp_DoubleSpinBox*, 
81                                                   double, double, double = 0.1, 
82                                                   const char* quantity = "length_precision" );
83
84   // redefined from GEOMBase_Helper
85   virtual GEOM::GEOM_IOperations_ptr createOperation();
86   virtual bool                       isValid( QString& );
87   virtual bool                       execute( ObjectList& );
88
89   void                               closeEvent( QCloseEvent* );
90   void                               keyPressEvent( QKeyEvent* );
91
92 private:
93   void                               Init();
94   void                               enterEvent( QEvent* );
95   void                               InitClick();
96   void                               setEnabledUndo( bool );
97   void                               setEnabledRedo( bool );
98     
99   QString                            GetNewCommand( QString& );
100
101   virtual void                       displayPreview( GEOM::GEOM_Object_ptr,
102                                                      const bool = false,
103                                                      const bool = false,
104                                                      const bool = true,
105                                                      const double = -1,
106                                                      const int  = -1,
107                                                      const int  = -1);
108
109   bool                               createShapes( GEOM::GEOM_Object_ptr,
110                                                    TopoDS_Shape&,
111                                                    TopoDS_Shape& );
112   int                                getPnt1ConstructorId() const;
113   int                                getPnt2ConstructorId() const;
114
115 private:
116   int                                myConstructorId;
117   int                                myConstructorDirId;
118   int                                myConstructorPntId;
119   int                                mySketchType;
120   int                                mySketchState;
121
122   bool                               myIsAllAdded;
123   bool                               myIsApply;
124
125   QLineEdit*                         myEditCurrentArgument;   /* Current LineEdit */
126
127   QStringList                        myCommand;
128   QStringList                        myUndoCommand;
129
130   QStringList                        myParameters;
131   QStringList                        myUndoParameters;
132
133   Standard_Real                      myX, myY, myDX, myDY;
134   Standard_Real                      myXc, myYc, myDXc, myDYc;
135   Standard_Real                      myLength, myAngle, myRadius;
136   Standard_Real                      myLastX1, myLastY1;
137   Standard_Real                      myLastX2, myLastY2;
138
139   QString                            myXStr, myYStr, myDXStr, myDYStr;
140   QString                            myXcStr, myYcStr, myDXcStr, myDYcStr;
141   QString                            myLengthStr, myAngleStr, myRadiusStr;
142   QString                            myLastX1Str, myLastY1Str;
143   QString                            myLastX2Str, myLastY2Str;                            
144
145   EntityGUI_Skeleton*                MainWidget;
146
147   EntityGUI_Point*                   GroupPt;
148   EntityGUI_Point*                   GroupPt2;
149   EntityGUI_Dir1*                    GroupD1;
150   EntityGUI_Dir2*                    GroupD2;
151
152   EntityGUI_1Sel*                    Group1Sel;
153   EntityGUI_2Sel1Check*              Group2Sel;
154   EntityGUI_1Sel1Spin1Check*         Group1Sel1Spin; 
155   EntityGUI_1Spin*                   Group1Spin;
156   EntityGUI_2Spin*                   Group2Spin;
157   EntityGUI_3Spin1Check*             Group3Spin;
158   EntityGUI_4Spin1Check*             Group4Spin;
159
160   QLabel*                            myErrLabel;
161
162   QGroupBox*                         GroupBox1;
163   QComboBox*                         ComboBox1;
164   QPushButton*                       planeButton;
165
166   GeometryGUI*                       myGeometryGUI;
167
168   QString                            myHelpFileName;
169   
170   double                             myLineWidth;
171
172   QList<gp_Ax3>                      myLCSList;
173
174   int                                myCheckFlag;
175   
176   TopAbs_ShapeEnum                   myNeedType;
177
178 private:
179   enum SketchState { FIRST_POINT, NEXT_POINT };
180   
181   enum SketchType { PT_ABS, PT_RELATIVE, PT_SEL,
182                     PT_ABS_RADIUS,PT_REL_RADIUS,PT_SEL_RADIUS,
183                     PT_ABS_CENTER,PT_REL_CENTER,PT_SEL_CENTER,
184                     DIR_ANGLE_LENGTH, DIR_ANGLE_X, DIR_ANGLE_Y,
185                     DIR_PER_LENGTH, DIR_PER_X, DIR_PER_Y,
186                     DIR_TAN_LENGTH, DIR_TAN_X, DIR_TAN_Y,
187                     DIR_DXDY_LENGTH, DIR_DXDY_X, DIR_DXDY_Y };
188   
189 private slots:
190   void                               ClickOnEnd();
191   void                               ClickOnCancel();
192   bool                               ClickOnApply();
193   void                               ClickOnUndo();
194   void                               ClickOnRedo();
195   void                               ClickOnHelp();
196   void                               LineEditReturnPressed();
197   void                               SelectionIntoArgument();
198   void                               SetEditCurrentArgument();
199   void                               DeactivateActiveDialog();
200   void                               ActivateThisDialog();
201   void                               TypeClicked( int );
202   void                               DestClicked( int );
203   void                               PointClicked( int );
204   void                               Point2Clicked( int );
205   void                               Dir1Clicked( int );
206   void                               Dir2Clicked( int );
207   void                               CheckBoxClicked( int );
208   void                               ValueChangedInSpinBox( double );
209   void                               SetDoubleSpinBoxStep( double );
210   void                               FindLocalCS();
211   gp_Ax3                             GetActiveLocalCS();
212   void                               ActivateLocalCS();
213 };
214
215 #endif // ENTITYGUI_SKETCHERDLG_H