]> SALOME platform Git repositories - modules/geom.git/blob - src/EntityGUI/EntityGUI_SketcherDlg.h
Salome HOME
Internal issue 0022865: Restructurization of Partition packages.
[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 = -1 );
72   ~EntityGUI_SketcherDlg();
73
74   bool eventFilter (QObject* object, QEvent* event);
75   
76   bool                               acceptMouseEvent() const;  // called by EntityGUI::OnMousePress()
77   void                               OnPointSelected( Qt::KeyboardModifiers, const gp_Pnt& );             
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   virtual void                       addSubshapesToStudy();
89   
90   void                               closeEvent( QCloseEvent* );
91   void                               keyPressEvent( QKeyEvent* );
92
93 private:
94   void                               Init();
95   void                               enterEvent( QEvent* );
96   void                               InitClick();
97   void                               setEnabledUndo( bool );
98   void                               setEnabledRedo( bool );
99     
100   QString                            GetNewCommand( QString& );
101
102   virtual void                       displayPreview( GEOM::GEOM_Object_ptr,
103                                                      const bool = false,
104                                                      const bool = false,
105                                                      const bool = true,
106                                                      const double = -1,
107                                                      const int  = -1,
108                                                      const int  = -1);
109   
110   void                               displayPntPreview( const double = 0.0,
111                                                         const double = 0.0,
112                                                         bool /*append*/ = true,
113                                                         bool /*update*/ = true
114                                                       );
115
116   bool                               createShapes( GEOM::GEOM_Object_ptr,
117                                                    TopoDS_Shape&,
118                                                    TopoDS_Shape& );
119   int                                getPnt1ConstructorId() const;
120   int                                getPnt2ConstructorId() const;
121
122 private:
123   int                                myConstructorId;
124   int                                myConstructorDirId;
125   int                                myConstructorPntId;
126   int                                mySketchType;
127   int                                mySketchState;
128
129   bool                               myIsAllAdded;
130   bool                               myIsApply;
131   bool                               autoApply;
132
133   QLineEdit*                         myEditCurrentArgument;   /* Current LineEdit */
134
135   QStringList                        myCommand;
136   QStringList                        myUndoCommand;
137
138   QStringList                        myParameters;
139   QStringList                        myUndoParameters;
140
141   Standard_Real                      myX, myY, myDX, myDY;
142   Standard_Real                      myXc, myYc, myDXc, myDYc;
143   Standard_Real                      myLength, myAngle, myRadius;
144   Standard_Real                      myLastX1, myLastY1;
145   Standard_Real                      myLastX2, myLastY2;
146
147   QString                            myXStr, myYStr, myDXStr, myDYStr;
148   QString                            myXcStr, myYcStr, myDXcStr, myDYcStr;
149   QString                            myLengthStr, myAngleStr, myRadiusStr;
150   QString                            myLastX1Str, myLastY1Str;
151   QString                            myLastX2Str, myLastY2Str;                            
152
153   EntityGUI_Skeleton*                MainWidget;
154
155   EntityGUI_Point*                   GroupPt;
156   EntityGUI_Point*                   GroupPt2;
157   EntityGUI_Dir1*                    GroupD1;
158   EntityGUI_Dir2*                    GroupD2;
159
160   EntityGUI_1Sel*                    Group1Sel;
161   EntityGUI_2Sel1Check*              Group2Sel;
162   EntityGUI_1Sel1Spin1Check*         Group1Sel1Spin; 
163   EntityGUI_1Spin*                   Group1Spin;
164   EntityGUI_2Spin*                   Group2Spin;
165   EntityGUI_3Spin1Check*             Group3Spin;
166   EntityGUI_4Spin1Check*             Group4Spin;
167
168   QLabel*                            myErrLabel;
169
170   QGroupBox*                         GroupBox1;
171   QComboBox*                         ComboBox1;
172   QPushButton*                       planeButton;
173   QPushButton*                       selButton;
174   
175   QLineEdit*                         WPlaneLineEdit;
176
177   GeometryGUI*                       myGeometryGUI;
178
179   QString                            myHelpFileName;
180   
181   double                             myLineWidth;
182
183   QList<gp_Ax3>                      myLCSList;
184   GEOM::GEOM_Object_var              myGlobalCS;
185   GEOM::GEOM_Object_var              myWPlane;
186   QList< GEOM::GEOM_Object_var >     myWPlaneList;
187
188   int                                myCheckFlag;
189   
190   TopAbs_ShapeEnum                   myNeedType;
191
192 private:
193   enum SketchState { FIRST_POINT, NEXT_POINT };
194   
195   enum SketchType { PT_ABS, PT_RELATIVE, PT_SEL,
196                     PT_ABS_RADIUS,PT_REL_RADIUS,PT_SEL_RADIUS,
197                     PT_ABS_CENTER,PT_REL_CENTER,PT_SEL_CENTER,
198                     DIR_ANGLE_LENGTH, DIR_ANGLE_X, DIR_ANGLE_Y,
199                     DIR_PER_LENGTH, DIR_PER_X, DIR_PER_Y,
200                     DIR_TAN_LENGTH, DIR_TAN_X, DIR_TAN_Y,
201                     DIR_DXDY_LENGTH, DIR_DXDY_X, DIR_DXDY_Y };
202   
203 private slots:
204   void                               ClickOnEnd();
205   void                               ClickOnCancel();
206   bool                               ClickOnApply();
207   void                               ClickOnUndo();
208   void                               ClickOnRedo();
209   void                               ClickOnHelp();
210   void                               LineEditReturnPressed();
211   void                               SelectionIntoArgument();
212   void                               SetEditCurrentArgument();
213   void                               DeactivateActiveDialog();
214   void                               ActivateThisDialog();
215   void                               TypeClicked( int );
216   void                               DestClicked( int );
217   void                               PointClicked( int );
218   void                               Point2Clicked( int );
219   void                               Dir1Clicked( int );
220   void                               Dir2Clicked( int );
221   void                               CheckBoxClicked( int );
222   void                               ValueChangedInSpinBox( double );
223   void                               SetDoubleSpinBoxStep( double );
224   void                               AddLocalCS( GEOM::GEOM_Object_var );
225   void                               FindLocalCS();
226   gp_Ax3                             GetActiveLocalCS();
227   gp_Ax3                             WPlaneToLCS( GEOM::GEOM_Object_var );
228   void                               ActivateLocalCS();
229 };
230
231 #endif // ENTITYGUI_SKETCHERDLG_H