Salome HOME
sources v1.2
[modules/geom.git] / src / GEOMGUI / GeometryGUI_LineDlg.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_LineDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_LINE_H
30 #define DIALOGBOX_LINE_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34
35 #include <gp_Pnt.hxx>
36 #include <BRepBuilderAPI_MakeEdge.hxx>
37 #include <BRep_Builder.hxx>
38 #include <TopoDS_Compound.hxx>
39
40 #include <qvariant.h>
41 #include <qdialog.h>
42
43 class QVBoxLayout; 
44 class QHBoxLayout; 
45 class QGridLayout; 
46 class QButtonGroup;
47 class QGroupBox;
48 class QLabel;
49 class QLineEdit;
50 class QPushButton;
51 class QRadioButton;
52 class GeometryGUI;
53
54 //=================================================================================
55 // class    : GeometryGUI_LineDlg
56 // purpose  :
57 //=================================================================================
58 class GeometryGUI_LineDlg : public QDialog
59
60     Q_OBJECT
61
62 public:
63     GeometryGUI_LineDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
64     ~GeometryGUI_LineDlg();
65
66 private :
67     
68     GEOM::GEOM_Gen_var           myGeom ;                 /* Current Geom object */   
69     GeometryGUI*                 myGeomGUI ;              /* Current GeomGUI object */
70     TopoDS_Shape                 mySimulationTopoDs;      /* Shape used for simulation display */    
71     SALOME_Selection*            mySelection ;            /* User shape selection */    
72     gp_Pnt                       myPoint1 ;               /* Points containing the vector */   
73     gp_Pnt                       myPoint2 ;
74
75     bool                         myOkPoint1 ;              /* Are true when myPoint is defined */    
76     bool                         myOkPoint2 ; 
77     QLineEdit*                   myEditCurrentArgument;    /* Current LineEdit */   
78     int                          myConstructorId ;         /* Current constructor id = radio button id */    
79     Handle(GEOM_ShapeTypeFilter) myVertexFilter;           /* Filter selection */
80     Handle(GEOM_ShapeTypeFilter) myEdgeFilter;             /* Filter selection */
81
82     void closeEvent( QCloseEvent* e ) ;
83     void enterEvent( QEvent* e);
84     void Init( SALOME_Selection* Sel ) ;
85     
86     bool AddArrowToSimulation( TopoDS_Shape& modifiedShape ) ;
87
88     QButtonGroup* GroupConstructors;
89     QRadioButton* Constructor1;
90     QRadioButton* Constructor2;
91     QRadioButton* Constructor3;
92     
93     QGroupBox* GroupC1;
94     QLabel* TextLabelC1A1;
95     QPushButton* SelectButtonC1A2;
96     QLineEdit* LineEditC1A1;
97     QLabel* TextLabelC1A2;
98     QLineEdit* LineEditC1A2;
99     QPushButton* SelectButtonC1A1;
100     
101     QGroupBox* GroupButtons;
102     QPushButton* buttonOk;
103     QPushButton* buttonCancel;
104     QPushButton* buttonApply;
105
106 private slots:
107
108     void ConstructorsClicked(int constructorId);
109     void ClickOnOk();
110     void ClickOnCancel();
111     void ClickOnApply();
112     void SetEditCurrentArgument() ;
113     void LineEditReturnPressed() ;
114     void SelectionIntoArgument() ;
115     void DeactivateActiveDialog() ;
116     void ActivateThisDialog() ;
117     
118 protected:
119     QGridLayout* GeometryGUI_LineDlgLayout;
120     QGridLayout* GroupConstructorsLayout;
121     QGridLayout* GroupC1Layout;
122     QGridLayout* GroupButtonsLayout;
123 };
124
125 #endif // DIALOGBOX_LINE_H