Salome HOME
03582f25775f224e4bcb65b891586a2234160e86
[modules/geom.git] / src / GEOMGUI / GeometryGUI_VectorDlg.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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GeometryGUI_VectorDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_VECTOR_H
30 #define DIALOGBOX_VECTOR_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34 #include "GeometryGUI_SpinBox.h"
35
36 #include <gp_Pnt.hxx>
37 #include <TopoDS_Shape.hxx>
38 #include <TopoDS_Compound.hxx>
39 #include <BRepBuilderAPI_MakeEdge.hxx>
40 #include <BRep_Builder.hxx>
41 #include <Precision.hxx>
42
43 #include <qvariant.h>
44 #include <qdialog.h>
45
46 class QVBoxLayout;
47 class QHBoxLayout; 
48 class QGridLayout; 
49 class QButtonGroup;
50 class QFrame;
51 class QCheckBox;
52 class QGroupBox;
53 class QLineEdit;
54 class QPushButton;
55 class QRadioButton;
56 class QToolButton;
57 class QLabel;
58 class GeometryGUI;
59
60
61 //=================================================================================
62 // class    : GeometryGUI_VectorDlg
63 // purpose  :
64 //=================================================================================
65 class GeometryGUI_VectorDlg : public QDialog
66
67     Q_OBJECT
68
69 public:
70     GeometryGUI_VectorDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
71     ~GeometryGUI_VectorDlg();
72     
73     bool AddArrowToSimulation( TopoDS_Shape& modifiedShape ) ;
74
75 private :
76     
77     void closeEvent( QCloseEvent* e ) ;
78     void enterEvent( QEvent* e);
79     void Init( SALOME_Selection* Sel ) ;                     /* mouse enter the QWidget */
80
81     GEOM::GEOM_Gen_var               myGeom ;                /* Current Geom object */
82     GeometryGUI*                     myGeomGUI ;             /* Current GeomGUI object */
83     TopoDS_Shape                     mySimulationTopoDs;     /* Shape used for simulation display */    
84     SALOME_Selection*                mySelection ;           /* User shape selection */    
85     gp_Pnt                           myPoint1 ;              /* Points containing the vector */   
86     gp_Pnt                           myPoint2 ;
87     double                           myDx ;
88     double                           myDy ;
89     double                           myDz ;
90     bool                             myOkPoint1 ;            /* Are true when myPoint is defined */    
91     bool                             myOkPoint2 ; 
92     QWidget*                         myEditCurrentArgument;  /* Current LineEdit or Spin box */   
93     int                              myConstructorId ;       /* Current constructor id = radio button id */    
94     Handle(GEOM_ShapeTypeFilter)     myVertexFilter;         /* Filter selection */
95     Handle(GEOM_ShapeTypeFilter)     myEdgeFilter;           /* Filter selection */
96
97     QGroupBox* GroupPoints;
98     QPushButton* SelectButtonPt1;
99     QPushButton* SelectButtonPt2;
100     QLabel* TextLabelPt1;
101     QLabel* TextLabelPt2;
102
103     QButtonGroup* GroupConstructors;
104     QRadioButton* Constructor2;
105     QRadioButton* Constructor1;
106
107     QGroupBox* GroupButtons;
108     QPushButton* buttonApply;
109     QPushButton* buttonOk;
110     QPushButton* buttonCancel;
111
112     QLineEdit* LineEditPt1;
113     QLineEdit* LineEditPt2;
114
115     QGroupBox* GroupCoordinates;
116
117     GeometryGUI_SpinBox*  SpinBox_DX ;
118     GeometryGUI_SpinBox*  SpinBox_DY ;
119     GeometryGUI_SpinBox*  SpinBox_DZ ;
120     QLabel* TextLabel_DZ;
121     QLabel* TextLabel_DX;
122     QLabel* TextLabel_DY;
123
124     QCheckBox* CheckBoxReverseVector;
125
126 private slots:
127
128     void ConstructorsClicked(int constructorId);
129     void ClickOnOk();
130     void ClickOnCancel();
131     void ClickOnApply();
132     void SetEditCurrentArgument() ;
133     void SelectionIntoArgument() ;
134     void LineEditReturnPressed() ;
135     void DeactivateActiveDialog() ;
136     void ActivateThisDialog() ;
137     void ReverseVector(int state) ;
138     void ValueChangedInSpinBox( double newValue ) ;
139
140 protected:
141
142     QGridLayout* GeometryGUI_VectorDlgLayout;
143     QGridLayout* GroupPointsLayout;
144     QGridLayout* GroupButtonsLayout;
145     QGridLayout* GroupConstructorsLayout;
146     QGridLayout* GroupCoordinatesLayout;
147
148 };
149
150 #endif // DIALOGBOX_VECTOR_H