Salome HOME
5ac5b2a8f34e332df390010bb7aa955c41513e9c
[modules/geom.git] / src / GEOMGUI / GeometryGUI_SectionDlg.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_SectionDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header:
28
29 #ifndef DIALOGBOX_SECTION_H
30 #define DIALOGBOX_SECTION_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34
35 #include <BRepAlgoAPI_Section.hxx>
36
37 #include <qvariant.h>
38 #include <qdialog.h>
39
40 class QVBoxLayout; 
41 class QHBoxLayout; 
42 class QGridLayout; 
43 class QButtonGroup;
44 class QGroupBox;
45 class QLabel;
46 class QLineEdit;
47 class QPushButton;
48 class QRadioButton;
49 class GeometryGUI;
50
51
52 //=================================================================================
53 // class    : GeometryGUI_SectionDlg
54 // purpose  :
55 //=================================================================================
56 class GeometryGUI_SectionDlg : public QDialog{ 
57     Q_OBJECT
58
59 public:
60     GeometryGUI_SectionDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
61     ~GeometryGUI_SectionDlg();
62     
63 private:
64
65     void Init( SALOME_Selection* Sel ) ;
66     void closeEvent( QCloseEvent* e ) ;
67     void enterEvent ( QEvent * ) ;                /* mouse enter the QWidget */
68
69     GEOM::GEOM_Gen_var myGeom ;                /* Current GeomI object */
70     GeometryGUI*          myGeomGUI ;             /* Current GeomGUI object */
71     SALOME_Selection*     mySelection ;           /* User shape selection */
72     TopoDS_Shape          myShape1 ;              /* topology used to fuse */
73     TopoDS_Shape          myShape2 ;              /* topology used to fuse */
74     GEOM::GEOM_Shape_var        myGeomShape1 ;          /* is myShape1 */
75     GEOM::GEOM_Shape_var        myGeomShape2 ;          /* is myShape2 */
76     bool                  myOkShape1 ;
77     bool                  myOkShape2 ;            /* to check when arguments are defined */
78     int                   myConstructorId ;       /* Current constructor id = radio button id */
79     QLineEdit*            myEditCurrentArgument;  /* Current LineEdit */    
80
81
82     QButtonGroup* GroupConstructors;
83     QRadioButton* Constructor1;
84     QGroupBox* GroupConstructor1;
85     QLineEdit* LineEditC1A2Shape;
86     QLineEdit* LineEditC1A1Shape;
87     QPushButton* SelectButtonC1A1Shape;
88     QPushButton* SelectButtonC1A2Shape;
89     QLabel* TextLabelC1A2Shape;
90     QLabel* TextLabelC1A1Shape;
91     QGroupBox* GroupButtons;
92     QPushButton* buttonApply;
93     QPushButton* buttonOk;
94     QPushButton* buttonCancel;
95
96 private slots:
97
98     void ConstructorsClicked(int constructorId);
99     void ClickOnOk();
100     void ClickOnCancel();
101     void ClickOnApply();
102     void SetEditCurrentArgument() ;
103     void SelectionIntoArgument() ;
104     void LineEditReturnPressed() ;
105     void DeactivateActiveDialog() ;
106     void ActivateThisDialog() ;
107
108
109 protected:
110     QGridLayout* GeometryGUI_SectionDlgLayout;
111     QGridLayout* GroupConstructorsLayout;
112     QGridLayout* GroupConstructor1Layout;
113     QGridLayout* GroupButtonsLayout;
114 };
115
116 #endif // DIALOGBOX_SECTION_H