]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMGUI/GeometryGUI_WorkingPlaneDlg.h
Salome HOME
NRI : Merge from V1_2.
[modules/geom.git] / src / GEOMGUI / GeometryGUI_WorkingPlaneDlg.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_WorkingPlaneDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27
28 #ifndef DIALOGBOX_WORKINGPLANE_H
29 #define DIALOGBOX_WORKINGPLANE_H
30
31 #include "SALOME_Selection.h"
32 #include "GEOM_FaceFilter.hxx"
33
34 #include <TopoDS.hxx>
35 #include <BRep_Tool.hxx>
36 #include <gp_Pnt.hxx>
37 #include <TopoDS_Shape.hxx>
38
39 #include <qvariant.h>
40 #include <qdialog.h>
41
42 class QVBoxLayout; 
43 class QHBoxLayout; 
44 class QGridLayout; 
45 class QButtonGroup;
46 class QGroupBox;
47 class QLabel;
48 class QLineEdit;
49 class QPushButton;
50 class QRadioButton;
51 class GeometryGUI;
52
53
54 //=================================================================================
55 // class    : GeometryGUI_WorkingPlaneDlg
56 // purpose  :
57 //=================================================================================
58 class GeometryGUI_WorkingPlaneDlg : public QDialog
59
60     Q_OBJECT
61 public:
62     GeometryGUI_WorkingPlaneDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
63     ~GeometryGUI_WorkingPlaneDlg();
64
65 private:
66
67     void Init( SALOME_Selection* Sel ) ;
68     void closeEvent( QCloseEvent* e ) ;
69     void enterEvent ( QEvent * ) ;                         /* mouse enter the QWidget */
70
71     Handle(GEOM_FaceFilter)  myFaceFilter;            /* filter for selection */
72     GEOM::GEOM_Gen_var         myGeom ;                 /* Current GeomI object */
73     GeometryGUI*                  myGeomGUI ;              /* Current GeomGUI object */
74     SALOME_Selection*             mySelection ;            /* User shape selection */
75
76     gp_Pnt                        myLoc;
77     gp_Dir                        myDir;
78     bool                          myOkPlane ;              /* to check when arguments are defined */
79
80     int                           myConstructorId ;        /* Current constructor id = radio button id */
81     QLineEdit*                    myEditCurrentArgument;   /* Current LineEdit */
82
83     QButtonGroup* GroupConstructors;
84     QRadioButton* Constructor1;
85     QGroupBox* GroupButtons;
86     QPushButton* buttonOk;
87     QPushButton* buttonCancel;
88     QPushButton* buttonApply;
89     QGroupBox* GroupC1;
90     QLabel* TextLabelC1A1;
91     QPushButton* SelectButtonC1A1;
92     QLineEdit* LineEditC1A1;
93
94 private slots:
95
96     void ConstructorsClicked(int constructorId);
97     void ClickOnOk();
98     void ClickOnCancel();
99     void ClickOnApply();
100     void SetEditCurrentArgument() ;
101     void LineEditReturnPressed() ;
102     void SelectionIntoArgument() ;
103     void DeactivateActiveDialog() ;
104     void ActivateThisDialog() ;
105
106 protected:
107     QGridLayout* GeometryGUI_WorkingPlaneDlgLayout;
108     QGridLayout* GroupConstructorsLayout;
109     QGridLayout* GroupButtonsLayout;
110     QGridLayout* GroupC1Layout;
111 };
112
113 #endif // DIALOGBOX_WORKINGPLANE_H